UNPKG

1.37 kBJSONView Raw
1{
2 "title": "Delete",
3 "@id": "stencila:Delete",
4 "extends": "Mark",
5 "role": "secondary",
6 "status": "stable",
7 "category": "prose",
8 "description": "Content that is marked for deletion",
9 "properties": {
10 "type": {
11 "@id": "schema:type",
12 "description": "The name of the type.",
13 "type": "string",
14 "enum": [
15 "Delete"
16 ],
17 "default": "Delete",
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": "Delete.schema.yaml",
44 "children": [],
45 "descendants": [],
46 "$schema": "http://json-schema.org/draft-07/schema#",
47 "$id": "https://schema.stenci.la/v0/Delete.schema.json",
48 "source": "https://github.com/stencila/schema/blob/master/Delete.schema.yaml",
49 "type": "object",
50 "additionalProperties": false,
51 "required": [
52 "type",
53 "content"
54 ],
55 "propertyAliases": {}
56}