Showing:

Diagram
Properties
Constraints
Enumerations
Used By
Source
Schema table_header_node
Diagram
definitions_table_header_node.html#/definitions/table_header_node/properties/type definitions_table_header_node.html#/definitions/table_header_node/properties/attrs definitions_table_header_node.html#/definitions/table_header_node/properties/content diagram
Type object
Properties
Name Occurrence
type
attrs
content
required
optional
required
Additional Properties false
Used by
Source

 "table_header_node": {
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "content"
  ],
  "properties": {
    "type": {
      "enum": ["tableHeader"]
    },
    "attrs": {
      "type": "object",
      "additionalProperties": false,
      "properties": {}
    },
    "content": {"$ref": "#/definitions/table_cell_content"}
  }
}


Schema type
Diagram
diagram
Type string
Enumeration
Values
tableHeader
Used by
Source

 "type": {
  "enum": ["tableHeader"]
}


Schema attrs
Diagram
definitions_table_header_node.html#/definitions/table_header_node/properties/attrs/properties/colspan definitions_table_header_node.html#/definitions/table_header_node/properties/attrs/properties/rowspan definitions_table_header_node.html#/definitions/table_header_node/properties/attrs/properties/colwidth definitions_table_header_node.html#/definitions/table_header_node/properties/attrs/properties/background diagram
Type object
Properties
Name Occurrence
colspan
rowspan
colwidth
background
optional
optional
optional
optional
Additional Properties false
Used by
Source

 "attrs": {
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "colspan": {"type": "number"},
    "rowspan": {"type": "number"},
    "colwidth": {
      "type": "array",
      "items": {}
    },
    "background": {"type": "string"}
  }
}


Schema colspan
Diagram
diagram
Type number
Used by
Source

 "colspan": {"type": "number"}


Schema rowspan
Diagram
diagram
Type number
Used by
Source

 "rowspan": {"type": "number"}


Schema colwidth
Diagram
definitions_table_header_node.html#/definitions/table_header_node/properties/attrs/properties/colwidth/items diagram
Type array
Constraints
Unique Items : false

Array Items
Used by
Source

 "colwidth": {
  "type": "array",
  "items": {"type": "number"}
}


Schema colwidth/items
Diagram
#/definitions/table_header_node/properties/attrs/properties/colwidth/items diagram
Type number
Used by
Source

 "items": {"type": "number"}


Schema background
Diagram
diagram
Type string
Used by
Source

 "background": {"type": "string"}


Definition schema content
Diagram
definitions_table_cell_content.html#/definitions/table_cell_content diagram
Type reference
Refers table_cell_content
Used by
Source

 "content": {"$ref": "#/definitions/table_cell_content"}