Skip to content

Commit

Permalink
table to accept google sheets, #1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkokoo committed Dec 9, 2022
1 parent c30aefd commit 4f7bebd
Showing 1 changed file with 59 additions and 7 deletions.
66 changes: 59 additions & 7 deletions table/table.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,64 @@
{
"$id": "https:\/\/raw.githubusercontent.com\/Valota\/data-syntax-table\/v2.0.0\/table.json",
"$schema": "http:\/\/json-schema.org\/draft-07\/schema#",
"description": "Table data syntax for Valotalive",
"type": "array",
"items": {
"$id": "https:\/\/raw.githubusercontent.com\/Valota\/data-syntax-table\/v2.0.0\/table.json",
"$schema": "http:\/\/json-schema.org\/draft-07\/schema#",
"description": "Table data syntax for Valotalive",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"sheetTitle": {
"type": "text"
},
"frozenRowCount": {
"type": "integer"
},
"frozenColumnCount": {
"type": "integer"
},
"merges": {
"type": "array",
"items": {
"type": "object"
}
},
"rowMetadata": {
"type": "array",
"items": {
"type": "object"
}
},
"columnMetadata": {
"type": "array",
"items": {
"type": "object"
}
},
"classes": {
"type": "array",
"items": {
"type": "object"
}
},
"data": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
"type": "object"
}
}
}
}
},
"required":[
"title",
"sheetTitle",
"frozenRowCount",
"frozenColumnCount",
"merges",
"rowMetadata",
"columnMetadata",
"classes",
"data"
]
}

0 comments on commit 4f7bebd

Please sign in to comment.