Hello, came across this unusual JSON format, thinking how to solve it ))
Maybe someone has any tips?
For example, we would want to parse the .type for all fields
Thank you
something like this should work for you. for example
C#:
foreach(string name in project.Json.data.GetMembersList()){
project.Tables["table1"].AddRow(new string[]{name, project.Json.data.GetMember(name)[0].type});
}
just use it after parsing json and replace 'table1' with your's table name is added in project.