A generic parsing into a dictionary would work if that json was structured like this, ie just a list of key-value pairs with JsonConvert.DeserializeObject( of Dictionary(of String,Object)) ( yourJSONasAString)
{
“Name”: “ABC”,
“Age”: 30,
“City”: “Bangalore”,
“Country”: “India”,
“Sport”: “Cricket”,
“Technology”: “UiPath”,
“Language”: “English”
}
But since it’s nested you have to go the long way around
You could either do as I’ve mentioned or you have to use a coded workflow to define a new object and then use that object together with jsonconvert to parse your json to into that new object, and then retrieve the values from that new object. How to deserialize JSON in C# - .NET | Microsoft Learn