I am trying to parse a json in following format, is there any straightforward way to do it instead of recursively parse each sub-entries?
{
"Schema": "schema",
"Entities": [{
"Type": "sometype",
"Properties": [{
"Type": "name",
"Value": ["someone"]
}, {
"Type": "date",
"Value": ["sometime"]
}, {
"Type": "description",
"Value": ["this is the description"]
}
}]
}
Is it possible to extract the information as
string name = parsedJsonObject["name"]
Thanks