No description available.
Properties
No description available.
View raw schema
{
"type": "object",
"required": [
"children"
],
"properties": {
"children": {
"type": "array",
"items": {
"ref": "#listItem",
"type": "ref"
}
}
}
}
No description available.
Properties
If present, this item is a checklist item. true = checked, false = unchecked. If absent, this is a normal list item.
Nested unordered list items. Mutually exclusive with orderedListChildren; if both are present, children takes precedence.
No description available.
Nested ordered list items. Mutually exclusive with children; if both are present, children takes precedence.
View raw schema
{
"type": "object",
"required": [
"content"
],
"properties": {
"checked": {
"type": "boolean",
"description": "If present, this item is a checklist item. true = checked, false = unchecked. If absent, this is a normal list item."
},
"content": {
"refs": [
"pub.leaflet.blocks.text",
"pub.leaflet.blocks.header",
"pub.leaflet.blocks.image"
],
"type": "union"
},
"children": {
"type": "array",
"items": {
"ref": "#listItem",
"type": "ref"
},
"description": "Nested unordered list items. Mutually exclusive with orderedListChildren; if both are present, children takes precedence."
},
"orderedListChildren": {
"ref": "pub.leaflet.blocks.orderedList",
"type": "ref",
"description": "Nested ordered list items. Mutually exclusive with children; if both are present, children takes precedence."
}
}
}