@stencila/schema
Version:
Stencila schema and other specifications
30 lines (29 loc) • 566 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/MarkTypes.schema.json",
"title": "MarkTypes",
"description": "All type schemas that are derived from Mark",
"anyOf": [
{
"$ref": "Mark.schema.json"
},
{
"$ref": "Delete.schema.json"
},
{
"$ref": "Emphasis.schema.json"
},
{
"$ref": "Quote.schema.json"
},
{
"$ref": "Strong.schema.json"
},
{
"$ref": "Subscript.schema.json"
},
{
"$ref": "Superscript.schema.json"
}
]
}