I have the data in this format
[{
"Consumer": [{
"Associated ID": "JSUDB2LXXX / BIC 7503 / US",
"Parent Consumer": "7503"
}],
"Owner": [{
"Entity": "EN",
"Region": "LA"
}]
}]
I want to convert in into the below format, I have to add title and value as the new key to the old key and value and have to separate each old key value in a separate object.
[{
"Consumer": [{
"title": "Associated ID",
"name": "JSUDB2LXXX / BIC 7503 / US"
},
{
"title": "Parent Consumer",
"name": "7503"
}
],
"Owner": [{
"title": "Entity",
"name": "EN"
},
{
"title": "Region",
"name": "LA"
}
]
}]