Parsing JSON that contains Children of Children

@Waterfowl_Waterfowl_hunte

Different groups in Json object can be retrieved as below:

For each item in jsonObj.SelectToken(“results”)
and then for nested groups, use inner for each loop like For each item in jsonObj.SelectToken(“group”) or
For each item in jsonObj.SelectToken(“data”)
wherever you want to retrive values from.

Inside for each loop, fetch values.

or you can see this