JSON loader
It loads given rows to a JSON file.
Configuration
XPath |
Type |
Description |
json/@outputFileName
|
Attribute |
Name of the output file |
Example
Pipeline configuration
<json outputFileName="data/output/output.json"/>
Output data
[
{
"stringField": "value1",
"integerField": 1
},
{
"stringField": "value2",
"integerField": 2
}
]