WRITE.JSON
Write data to JSON-format.
Properties
From | Name of the Input Data Source. |
To | Name of the Output Data Source. |
Guide
The purpose of this Command is only to write the contents of the input-source to a File-path or send it to a Stream. No mapping or data manipulations are done.
If the input-source is a JSON document, this command will write out the JSON exactly as it is.
If the input-source is an Xml document, this command automatically convert it to JSON in the equivalent structure. Xml attribute names will be prefixed with @ to avoid conflicting names.
If the input-source is in the Table-format, the table will automatically be converted to JSON in a tabular structure, such as shown below.
{
"Row": [{
"SKU": "AUA4L18TFS",
"Name": "Audi A4 1.8 TFSI",
"EngineVolume": "1.8",
},
{
"SKU": "BM320ISED",
"Name": "BMW 320i SE Saloon",
"EngineVolume": "2",
}]
}
- 1 Properties
- 2 Guide