@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
72 lines (71 loc) • 2.04 kB
JSON
{
"title": "Emphasis",
"@id": "stencila:Emphasis",
"extends": "Mark",
"role": "secondary",
"status": "stable",
"category": "text",
"description": "Emphasised content.",
"$comment": "Analogues of `Delete` in other schema include:\n - HTML [`<em>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em)\n - JATS XML [`<italic>`](https://jats.nlm.nih.gov/archiving/tag-library/1.1/element/italic.html)\n - MDAST [`Emphasis`](https://github.com/syntax-tree/mdast#emphasis)\n - Pandoc [`Emph`](https://github.com/jgm/pandoc-types/blob/1.17.5.4/Text/Pandoc/Definition.hs#L256)\n",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"Emphasis"
],
"default": "Emphasis",
"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
}
},
"examples": [
{
"type": "Paragraph",
"content": [
"The following content has extra ",
{
"type": "Emphasis",
"content": [
"emphasis"
]
}
]
}
],
"file": "Emphasis.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/Emphasis.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/Emphasis.schema.yaml",
"type": "object",
"additionalProperties": false,
"required": [
"type",
"content"
],
"propertyAliases": {}
}