1 | {
|
2 | "title": "Strong",
|
3 | "@id": "stencila:Strong",
|
4 | "extends": "Mark",
|
5 | "role": "secondary",
|
6 | "status": "stable",
|
7 | "category": "text",
|
8 | "description": "Strongly emphasised content.",
|
9 | "properties": {
|
10 | "type": {
|
11 | "@id": "schema:type",
|
12 | "description": "The name of the type.",
|
13 | "type": "string",
|
14 | "enum": [
|
15 | "Strong"
|
16 | ],
|
17 | "default": "Strong",
|
18 | "from": "Entity"
|
19 | },
|
20 | "id": {
|
21 | "@id": "schema:id",
|
22 | "description": "The identifier for this item.",
|
23 | "type": "string",
|
24 | "from": "Entity"
|
25 | },
|
26 | "meta": {
|
27 | "@id": "stencila:meta",
|
28 | "description": "Metadata associated with this item.",
|
29 | "type": "object",
|
30 | "from": "Entity"
|
31 | },
|
32 | "content": {
|
33 | "@id": "stencila:content",
|
34 | "description": "The content that is marked.",
|
35 | "type": "array",
|
36 | "items": {
|
37 | "$ref": "InlineContent.schema.json"
|
38 | },
|
39 | "from": "Mark",
|
40 | "isArray": true
|
41 | }
|
42 | },
|
43 | "file": "Strong.schema.yaml",
|
44 | "children": [],
|
45 | "descendants": [],
|
46 | "$schema": "http://json-schema.org/draft-07/schema#",
|
47 | "$id": "https://schema.stenci.la/v1/Strong.schema.json",
|
48 | "source": "https://github.com/stencila/schema/blob/master/schema/Strong.schema.yaml",
|
49 | "type": "object",
|
50 | "additionalProperties": false,
|
51 | "required": [
|
52 | "type",
|
53 | "content"
|
54 | ],
|
55 | "propertyAliases": {}
|
56 | }
|