@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
52 lines (51 loc) • 1.71 kB
JSON
{
"title": "ThematicBreak",
"@id": "stencila:ThematicBreak",
"extends": "Entity",
"role": "secondary",
"status": "stable",
"category": "text",
"description": "A thematic break, such as a scene change in a story, a transition to another topic, or a new document.\n",
"$comment": "Analogues of `ThematicBreak` in other schema include:\n - JATS XML [`<hr>`](https://jats.nlm.nih.gov/articleauthoring/tag-library/1.2/element/hr.html)\n - MDAST [`ThematicBreak`](https://github.com/syntax-tree/mdast#ThematicBreak)\n - OpenDocument OpenDocument [`<text:soft-page-break>`](http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#element-text_soft-page-break)\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"
}
},
"examples": [
{
"type": "ThematicBreak"
}
],
"file": "ThematicBreak.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/ThematicBreak.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/ThematicBreak.schema.yaml",
"type": "object",
"additionalProperties": false,
"required": [
"type"
],
"propertyAliases": {}
}