Export json with associated objects

1
What does this mean ? Can i export data in below structure: {“Name” : “Test”, “Age”: 30, “Addresses”: [ { “City”: “”, },  { “City”: “”, }, { “City”: “”, } ]}   If yes How can i do that ?
asked
1 answers
1

Just create a Json Structure and paste your json into it. You can now create a mapping based on this structure and use it to create json out of your data.

answered