using System.Collections.Generic;
public static void Main()
'somethingtwo': 'abcde-1234',
RootObj mainObj = JsonConvert.DeserializeObject<RootObj>(json);
Console.WriteLine("somethingone: " + mainObj.somethingone);
Console.WriteLine("somethingtwo: " + mainObj.somethingtwo);
foreach (Dictionary<string, string> report in mainObj.information.report)
foreach (KeyValuePair<string, string> item in report)
string value = item.Value;
Console.WriteLine(key + ": " + value);
public string somethingone { get; set; }
public string somethingtwo { get; set; }
public Information information { get; set; }
public Dictionary<string, string>[] report { get; set; }