JSON output, CSV input or delimited- properties available

his property is available if the output format is JSON and the input format is CSV or Delimited:

Property available:
  • Output Array Path - When converting from CSV or delimited to JSON the output that is produced will convert the input rows to an array of JSON objects. This property determines the location of that array in the produced JSON. If the property is not set, the JSON array will be at the root of the document. If a path is specified, intermediate JSON 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"
            }
        ]
    }