@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
80 lines (79 loc) • 1.83 kB
JSON
{
"title": "Mark",
"@id": "stencila:Mark",
"extends": "Entity",
"role": "base",
"status": "stable",
"category": "text",
"description": "A base class for nodes that mark some other inline content\nin some way (e.g. as being emphasised, or quoted).\n",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"Mark",
"Delete",
"Emphasis",
"NontextualAnnotation",
"Quote",
"Strong",
"Subscript",
"Superscript"
],
"default": "Mark",
"from": "Entity"
},
"id": {
"@id": "schema:id",
"description": "The identifier for this item.",
"type": "string",
"from": "Entity"
},
"meta": {
"@id": "stencila:meta",
"description": "Metadata associated with this item.",
"type": "object",
"from": "Entity"
},
"content": {
"@id": "stencila:content",
"description": "The content that is marked.",
"type": "array",
"items": {
"$ref": "InlineContent.schema.json"
},
"from": "Mark",
"isArray": true
}
},
"required": [
"type",
"content"
],
"file": "Mark.schema.yaml",
"children": [
"Delete",
"Emphasis",
"NontextualAnnotation",
"Quote",
"Strong",
"Subscript",
"Superscript"
],
"descendants": [
"Delete",
"Emphasis",
"NontextualAnnotation",
"Quote",
"Strong",
"Subscript",
"Superscript"
],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/Mark.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/Mark.schema.yaml",
"type": "object",
"additionalProperties": false,
"propertyAliases": {}
}