JSON input, CSV output - properties available

One property is available if the input format is JSON and the output format is CSV.

Property available:
  • Input Array Path - When you convert from JSON to CSV, the incoming JSON must contain an array of JSON objects. This array can either be at the root of the document, or elsewhere in the document. If the entire document is an array of objects, the Input Array Path should not be set. Otherwise, specify the path of the array using dot-notation. For example, if the JSON data is:
    {
        "data": {
            "id": 1,
            "people": [
                {
                    "name": "Fred",
                    "sex": "male"
                },
                {
                    "name": "Susan",
                    "sex": "female"
                }
            ]
        }
    }

the path is specified as data.people.