i have a json file like below..
{
"assetPropertyValues" : {
"A001234": {
"PV": 1.2345
},
"A001235": {
"PV": 1.234678
},
"A001236": {
"PV": 1.234678
}
}
}
I want to display this data as below..
PV
A001234 1.2345
A001235 1.2345678
A001236 1.2345678
i don't have any idea how to do this..please help me out.. Thank you..