I'm converting excel to Json, after the conversion is done I'm getting the below JSON output
[
{
"GERMANY": "Berlin University of the Arts",
"FRANCE": "Berlin University of the Arts",
"UK": "Berlin University of the Arts",
"NETHERLANDS": "Berlin University of the Arts"
},
{
"GERMANY": "Dresden University of Technology",
"FRANCE": "Dresden University of Technology",
"UK": "Dresden University of Technology",
"NETHERLANDS": "Dresden University of Technology"
},
....
]
Now I need to modify the above to the below JSON structure.
{
"GERMANY": [
"Berlin University of the Arts",
"Dresden University of Technology",
...
],
"FRANCE": [...],
... so on
}
How can this be done, Please help