I have a json file with contents like this:
{
"aaa":{
"status":"available",
"classkey":"dotnet"
},
"bbb":{
"ccc":{
"com":"available",
"net":"available",
"info":"available",
"org":"available"
}
}
}
Now I want to fetch the value of array by index (ex., xxx[0] like this not like xxx['aaa']). How do I do that?