Problem
In the source JSON the keys are called product_id and product_name, but the receiving system needs id and name.
Short answer
Use a JSON editor: select the desired node, set transformations and upload the result to the target structure.
Sample task
The data below is educational. They show the conversion form, not the users' actual files.
It was
{
"product_id": "P-001",
"product_name": "Product 1",
"stock_count": 8
}
It became
{
"id": "P-001",
"name": "Product 1",
"stock": 8
}
How to set up
- Upload your file and go to the JSON editor.
- In the editor, find the desired value or node and click on it to open the settings window.
- In the block "Transformations" add rules for selecting, renaming, or assembling values.
- If some records need to be excluded, use a block "Unloading conditions".
- Save the settings and download the result in the target format.