JSON or YAML output, CSV input or delimited- available properties
This property is available if the output format is JSON or YAML and the input format is CSV or Delimited:
Property available:
- Output Array Path - When converting from CSV or delimited to JSON or
YAML the output that is produced will convert the input rows to an array of JSON
or YAML objects. This property determines the location of that array in the
produced JSON or YAML. If the property is not set, the JSON or YAML array will
be at the root of the document. If a path is specified, intermediate JSON or
YAML objects will be created. For example, if the output array path is specified
as "people", the produced JSON will look like this:
{ "people": [ { "name": "Fred", "sex": "male" }, { "name": "Susan", "sex": "female" } ] }