@stencila/schema
Version:
Stencila schema and other specifications
46 lines (45 loc) • 1.23 kB
JSON
{
"title": "ThematicBreak",
"@id": "stencila:ThematicBreak",
"extends": "Entity",
"role": "secondary",
"status": "stable",
"category": "prose",
"description": "A thematic break, such as a scene change in a story, a transition to another topic, or a new document.\n",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"ThematicBreak"
],
"default": "ThematicBreak",
"from": "Entity"
},
"id": {
"@id": "schema:id",
"description": "The identifier for this item.",
"type": "string",
"from": "Entity"
},
"meta": {
"@id": "stencila:meta",
"description": "Metadata associated with this item.",
"type": "object",
"from": "Entity"
}
},
"file": "ThematicBreak.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v0/ThematicBreak.schema.json",
"source": "https://github.com/stencila/schema/blob/master/ThematicBreak.schema.yaml",
"type": "object",
"additionalProperties": false,
"required": [
"type"
],
"propertyAliases": {}
}