@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
34 lines (33 loc) • 653 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/MarkTypes.schema.json",
"title": "MarkTypes",
"category": "text",
"description": "All type schemas that are derived from Mark",
"anyOf": [
{
"$ref": "Mark.schema.json"
},
{
"$ref": "Delete.schema.json"
},
{
"$ref": "Emphasis.schema.json"
},
{
"$ref": "NontextualAnnotation.schema.json"
},
{
"$ref": "Quote.schema.json"
},
{
"$ref": "Strong.schema.json"
},
{
"$ref": "Subscript.schema.json"
},
{
"$ref": "Superscript.schema.json"
}
]
}