[
{
"description": "Generate a CSV file from an array of arrays",
"name": "generateCsv",
"parameters": {
"properties": {
"_requestBody": {
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "An array of arrays to be converted to CSV. Each array represents a row in the CSV file.",
"items": {
"type": "array",
"items": {}
}
},
"title": {
"type": "string",
"description": "A single line of text to be used as the title of the CSV file (can have spaces)."
}
}
}
},
"type": "object"
}
}
]