I would like to transform an object to an array format. The input object is
{
"index": {
"0": 40,
"1": 242
},
"TID": {
"0": "11",
"1": "22"
},
"DepartureCity": {
"0": "MCI",
"1": "CVG"
},
"ArrivalCity": {
"0": "SFB",
"1": "LAS"
},
"Price": {
"0": 90,
"1": 98
}
}
And the expected output is
[
{
"index": 40,
"TID": "11",
"DepartureCity": "MCI",
"ArrivalCity": "SFB",
"Price": 90
},
{
"index": 242,
"TID": "22",
"DepartureCity": "CVG",
"ArrivalCity": "LAS",
"Price": 98
}
]
I tried using for loops, but it is getting more complicated. If any one can help me, it would be really thankful.