I'm using Data Maper and I already set the structure to get the info from the dilimited file, but when I try to creat the estructure for JSON file I'm having issues with loops getting a wrong JSON like:
{ childs:[
{
"ParentName": Parent1Name,
"ChildName": Child1AName,
"ChildAge": Child1AAge,
}]}
{ childs:[
{
"ParentName": Parent2Name,
"ChildName": Child1Name,
"ChildAge": Child1Age
},
{
"ParentName": Parent2Name,
"ChildName" : Child2Name,
"ChildAge" : Child2Age
}
]
}
How should I define the output structure or the map in this case ?