{
"sheet1": [
{
"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 1",
"B": "data of cell B row 1",
"C": "data of cell C row 1"
}
],
"sheet2": [
{
"A": "data of cell A row 1",
"B": "data of cell B row 1",
"C": "data of cell C row 1"
}
]
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {},
"patternProperties": {
"^.*$": {
"title": "sheet",
"description": "Excel sheet rows",
"type": "array",
"items": {
"type": "object",
"patternProperties": {
"^.*$": {
"title": "Cell data",
"type": "string"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false,
"examples": [
{
"sheet1": [
{
"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 1",
"B": "data of cell B row 1",
"C": "data of cell C row 1"
}
],
"sheet2": [
{
"A": "data of cell A row 1",
"B": "data of cell B row 1",
"C": "data of cell C row 1"
}
]
}
]
}