gojsonq
gojsonq copied to clipboard
Is it possible to parse multiple json together?
Team,
I have tried parsing this json
{
"module": {
"ABCD": {
"source": "",
"version": "",
"location": "",
"resource_group_name": ""
}
},
"module": {
"PQRS": {
"source": "",
"version": "",
"sa_name": "",
"resource_group": ""
}
}
}
But I'm always getting the details of the last node i.e. PQRS. Is there anyway to get the details of both the nodes considering parent node as modules. The output required is
{
"ABCD": {
"source": "",
"version": "",
"location": "",
"resource_group_name": ""
},
"PQRS": {
"source": "",
"version": "",
"sa_name": "",
"resource_group": ""
}
}