{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "table.schema.json",
  "title": "Table",
  "$ref": "contentitem.schema.json",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "table",
      "description": "Shold be always set to table"
    },
    "rows": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "array",
        "items": { "$ref": "tablecell.schema.json" }
      }
    },
    "rowspan": { "type": "integer" }
  },
  "required": [ "type", "rows", "rowspan" ],
  "additionalProperties": false
}
