data_json_to_csv
Convert a JSON array of objects into a CSV string, either from a file or raw data, with customizable delimiter.
Instructions
Convert a JSON array of objects to a CSV string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | No | Local filesystem path to a JSON file containing the array. | |
| jsonData | No | Raw JSON string (must represent an array of objects) to convert. | |
| delimiter | No | The field delimiter character to use. Defaults to ','. | , |