gojsonq icon indicating copy to clipboard operation
gojsonq copied to clipboard

Is it possible to parse multiple json together?

Open smartaquarius10 opened this issue 3 years ago • 0 comments

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": ""
    }
}

smartaquarius10 avatar Oct 11 '21 20:10 smartaquarius10