I have an object which looks like this.
{
"A": [ "1", "2", "3" ]
}
I want to manipulate the object to get the following result:
{
"A": [{
"A": "1"
}, {
"A": "2"
}, {
"A": "3"
}]
}
What is the way to achieve this?