UNPKG

@stencila/schema

Version:

Extensions to schema.org to support semantic, composable, parameterize-able and executable documents

58 lines (57 loc) 1.92 kB
{ "title": "NontextualAnnotation", "@id": "stencila:NontextualAnnotation", "extends": "Mark", "role": "secondary", "status": "stable", "category": "text", "description": "Inline text that has a non-textual annotation.", "$comment": "Use cases include annotating spelling errors, denoting proper names in Chinese text,\nrepresenting underline text, and other forms of annotation. See\n- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u\n- http://html5doctor.com/u-element/\n- https://jats.nlm.nih.gov/archiving/tag-library/1.1/element/underline.html\n- https://github.com/jgm/pandoc-types/blob/master/src/Text/Pandoc/Definition.hs#L320\n", "properties": { "type": { "@id": "schema:type", "description": "The name of the type.", "type": "string", "enum": [ "NontextualAnnotation" ], "default": "NontextualAnnotation", "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 } }, "file": "NontextualAnnotation.schema.yaml", "children": [], "descendants": [], "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://schema.stenci.la/v1/NontextualAnnotation.schema.json", "source": "https://github.com/stencila/schema/blob/master/schema/NontextualAnnotation.schema.yaml", "type": "object", "additionalProperties": false, "required": [ "type", "content" ], "propertyAliases": {} }