{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "tablecell.schema.json",
  "title": "Table Cell",
  "$ref": "contentitem.schema.json",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "tablecell",
      "description": "Should be always set to tablecell"
    },
    "colspan": {
      "type": "integer",
      "minimum": 0
    },
    "text": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [ "type", "colspan", "text" ],
  "additionalProperties": false
}
