public string type { get; set; }
public string type { get; set; }
public string type { get; set; }
public Items items { get; set; }
public Name name { get; set; }
public Hobbies hobbies { get; set; }
public string description { get; set; }
public string type { get; set; }
public Properties properties { get; set; }
public static void Main()
Example model = new Example();
model.properties = new Properties();
model.properties.name = new Name();
model.properties.hobbies = new Hobbies();
model.properties.hobbies.items = new Items();
model.properties.name.type = "cc";
var data = JsonConvert.SerializeObject(model);
System.Console.WriteLine(data);