JSON or YAML input, CSV output - available properties

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

Property available:
  • Input Array Path - When you convert from JSON or YAML to CSV, the incoming JSON or YAML must contain an array of JSON or YAML 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.