UNPKG

1.71 kBJSONView Raw
1{
2 "title": "ThematicBreak",
3 "@id": "stencila:ThematicBreak",
4 "extends": "Entity",
5 "role": "secondary",
6 "status": "stable",
7 "category": "text",
8 "description": "A thematic break, such as a scene change in a story, a transition to another topic, or a new document.\n",
9 "$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",
10 "properties": {
11 "type": {
12 "@id": "schema:type",
13 "description": "The name of the type.",
14 "type": "string",
15 "enum": [
16 "ThematicBreak"
17 ],
18 "default": "ThematicBreak",
19 "from": "Entity"
20 },
21 "id": {
22 "@id": "schema:id",
23 "description": "The identifier for this item.",
24 "type": "string",
25 "from": "Entity"
26 },
27 "meta": {
28 "@id": "stencila:meta",
29 "description": "Metadata associated with this item.",
30 "type": "object",
31 "from": "Entity"
32 }
33 },
34 "examples": [
35 {
36 "type": "ThematicBreak"
37 }
38 ],
39 "file": "ThematicBreak.schema.yaml",
40 "children": [],
41 "descendants": [],
42 "$schema": "http://json-schema.org/draft-07/schema#",
43 "$id": "https://schema.stenci.la/v1/ThematicBreak.schema.json",
44 "source": "https://github.com/stencila/schema/blob/master/schema/ThematicBreak.schema.yaml",
45 "type": "object",
46 "additionalProperties": false,
47 "required": [
48 "type"
49 ],
50 "propertyAliases": {}
51}