I have following JSON string:
{"Local People":{"label":"Local People","data":1},"Student":{"label":"Student","data":1}}
I want to convert it to the following:
[{
"label" : "Student",
"data" : 1
},
{
"label" : "Student",
"data" : 1
}]
I have tried it many times but I've been unsuccessful. Please help!