08-27-2021 03:28 AM
Is it possible to move ValueX so it sits in the corresponding original document?
I’m currently using a JSON splitter to flatten a file processed by a Group by snap upstream.
{
"original": {
"Individual": "Wolverine"
}
"ValueX":
"9999"
}
Here is the current JSON splitter setup:

Solved! Go to Solution.
08-27-2021 03:46 AM
Hi @NAl ,
You can use Structure snap to move one field to another.
Result
08-27-2021 03:46 AM
Hi @NAl ,
You can use Structure snap to move one field to another.
Result
08-27-2021 04:37 AM
@NAl you can use the below syntax $.extend($.get(“original”)).filter((value, key) => key != “original”) to keep all your attribute under root. It will help you to avoid using $original. in your downstream snaps.