[
{
"A": "data of cell A row 1",
"B": "data of cell B row 1",
"C": "data of cell C row 1"
},
{
"A": "data of cell A row 2",
"B": "data of cell B row 2",
"C": "data of cell C row 2"
}
]
Copied to Clipboard
{
"title": "response",
"type": "array",
"items": {
"title": "CSV row",
"type": "object",
"patternProperties": {
"^.*$": {
"title": "Cell data",
"type": "string"
}
},
"additionalProperties": false
},
"examples": [
[
{
"A": "data of cell A row 1",
"B": "data of cell B row 1",
"C": "data of cell C row 1"
},
{
"A": "data of cell A row 2",
"B": "data of cell B row 2",
"C": "data of cell C row 2"
}
]
]
}