@stencila/schema
Version:
Stencila schema and other specifications
52 lines (51 loc) • 942 B
JSON
{
"title": "InlineContent",
"description": "Inline content.",
"anyOf": [
{
"type": "null"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "Emphasis.schema.json"
},
{
"$ref": "Strong.schema.json"
},
{
"$ref": "Delete.schema.json"
},
{
"$ref": "Quote.schema.json"
},
{
"$ref": "Code.schema.json"
},
{
"$ref": "CodeExpr.schema.json"
},
{
"$ref": "Link.schema.json"
},
{
"$ref": "ImageObject.schema.json"
}
],
"source": "https://github.com/stencila/schema/blob/master/schema/text/InlineContent.schema.yaml",
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stencila.github.com/schema/InlineContent.schema.json",
"category": "text",
"children": [],
"descendants": []
}