UNPKG

653 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "https://schema.stenci.la/v1/MarkTypes.schema.json",
4 "title": "MarkTypes",
5 "category": "text",
6 "description": "All type schemas that are derived from Mark",
7 "anyOf": [
8 {
9 "$ref": "Mark.schema.json"
10 },
11 {
12 "$ref": "Delete.schema.json"
13 },
14 {
15 "$ref": "Emphasis.schema.json"
16 },
17 {
18 "$ref": "NontextualAnnotation.schema.json"
19 },
20 {
21 "$ref": "Quote.schema.json"
22 },
23 {
24 "$ref": "Strong.schema.json"
25 },
26 {
27 "$ref": "Subscript.schema.json"
28 },
29 {
30 "$ref": "Superscript.schema.json"
31 }
32 ]
33}