質問です

・やりたい事
APIからJSONデータを受け取り表示。C#で書きたい.特に[weather]の中身を取得


・使用API
ttp://openweathermap.org/wiki/API/Weather_Condition_Codes

・参考にしたページ
ttp://befool.co.jp/blog/ayumegu/unity-study-www/
ttp://shivat.hatenablog.com/entry/2015/05/30/020855

・つまづいた点
Dictionary<string,object> main = jsonData["main"] as Dictionary<string, object>;
Dictionary<string,object> jsonData = MiniJSON.Json.Deserialize(www.text) as Dictionary<string,object>;

とデコードすることで次の情報はとれました

Debug.Log ((double)main["temp"]);//温度
long dt = (long)jsonData["dt"];


ですが weather のみAPIから提供されているJSONの型が違うので
同様の記述ではとれません。
どのようにコードを書けばweatherの中身を取得できますか