@stencila/schema
Version:
Stencila schema and other specifications
69 lines (68 loc) • 1.44 kB
JSON
{
"title": "InlineContent",
"category": "prose",
"description": "Union type for valid inline content.",
"$comment": "Note that this definition currently does not include\n`array` and `object` nodes (which are included in `Node`).\nThis seems incongruent, and may be changed in the future.\n",
"anyOf": [
{
"type": "null"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "CodeFragment.schema.json"
},
{
"$ref": "CodeExpression.schema.json"
},
{
"$ref": "Delete.schema.json"
},
{
"$ref": "Emphasis.schema.json"
},
{
"$ref": "ImageObject.schema.json"
},
{
"$ref": "Link.schema.json"
},
{
"$ref": "MathFragment.schema.json"
},
{
"$ref": "Quote.schema.json"
},
{
"$ref": "Strong.schema.json"
},
{
"$ref": "Subscript.schema.json"
},
{
"$ref": "Superscript.schema.json"
},
{
"$ref": "Cite.schema.json"
},
{
"$ref": "CiteGroup.schema.json"
}
],
"file": "InlineContent.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v0/InlineContent.schema.json",
"source": "https://github.com/stencila/schema/blob/master/InlineContent.schema.yaml"
}