Schema layoutSection_full_node
|
|
|
|
Diagram
|
|
Type |
object |
All of
|
|
Used by
|
|
Source
|
"layoutSection_full_node": {
"allOf": [
{"$ref": "#/definitions/layoutSection_node"},
{
"type": "object",
"additionalProperties": false,
"required": [
"type",
"content"
],
"properties": {
"type": {
"enum": ["layoutSection"]
},
"marks": {
"type": "array",
"items": {"$ref": "#/definitions/breakout_mark"}
},
"content": {
"type": "array",
"minItems": 2,
"maxItems": 3,
"items": {"$ref": "#/definitions/layoutColumn_node"}
}
}
}
]
}
|
|
|
|
|
|
|
Definition schema allOf/0
Schema allOf/1
|
|
|
|
Diagram
|
|
Type |
object |
Properties
|
|
Additional Properties |
false |
Used by
|
|
Source
|
{
"type": "object",
"additionalProperties": false,
"required": [
"type",
"content"
],
"properties": {
"type": {
"enum": ["layoutSection"]
},
"marks": {
"type": "array",
"items": {}
},
"content": {
"type": "array",
"minItems": 2,
"maxItems": 3,
"items": {}
}
}
}
|
|
|
|
|
|
|
Schema type
Schema marks
Definition schema marks/items
Schema content
Definition schema content/items
|