Showing:

Diagram
Properties
Constraints
Enumerations
Compositions
Used By
Source
Schema table_row_node
Diagram
definitions_table_row_node.html#/definitions/table_row_node/properties/type definitions_table_row_node.html#/definitions/table_row_node/properties/content diagram
Type object
Properties
Name Occurrence
type
content
required
required
Additional Properties false
Used by
Source

 "table_row_node": {
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "content"
  ],
  "properties": {
    "type": {
      "enum": ["tableRow"]
    },
    "content": {
      "type": "array",
      "items": {}
    }
  }
}


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

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


Schema content
Diagram
definitions_table_row_node.html#/definitions/table_row_node/properties/content/items diagram
Type array
Constraints
Unique Items : false

Array Items
Used by
Source

 "content": {
  "type": "array",
  "items": {
    "anyOf": [
      {"$ref": "#/definitions/table_cell_node"},
      {"$ref": "#/definitions/table_header_node"}
    ]
  }
}


Schema content/items
Diagram
#/definitions/table_row_node/properties/content/items/anyOf/0 #/definitions/table_row_node/properties/content/items/anyOf/1 diagram
Type object
Any of
Used by
Source

 "items": {
  "anyOf": [
    {"$ref": "#/definitions/table_cell_node"},
    {"$ref": "#/definitions/table_header_node"}
  ]
}


Definition schema anyOf/0
Diagram
definitions_table_cell_node.html#/definitions/table_cell_node diagram
Type reference
Refers table_cell_node
Used by
Source

{"$ref": "#/definitions/table_cell_node"}


Definition schema anyOf/1
Diagram
definitions_table_header_node.html#/definitions/table_header_node diagram
Type reference
Refers table_header_node
Used by
Source

{"$ref": "#/definitions/table_header_node"}