@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
85 lines (84 loc) • 2.46 kB
JSON
{
"title": "Paragraph",
"@id": "stencila:Paragraph",
"extends": "Entity",
"role": "secondary",
"status": "stable",
"category": "text",
"description": "Paragraph",
"$comment": "Analogues of `Paragraph` in other schema include:\n - HTML [`<p>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p)\n - JATS XML [`<p>`](https://jats.nlm.nih.gov/articleauthoring/tag-library/1.2/element/p.html)\n - MDAST [`Paragraph`](https://github.com/syntax-tree/mdast#Paragraph)\n - OpenDocument [`<text:p>`](http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#__RefHeading__1415138_253892949)\n - Pandoc [`Para`](https://github.com/jgm/pandoc-types/blob/1.17.5.4/Text/Pandoc/Definition.hs#L220)\n",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"Paragraph"
],
"default": "Paragraph",
"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 contents of the paragraph.",
"type": "array",
"items": {
"$ref": "InlineContent.schema.json"
},
"from": "Paragraph",
"isArray": true
}
},
"required": [
"type",
"content"
],
"examples": [
{
"type": "Paragraph",
"content": [
"Some text content representing ideas expressed as words."
]
},
{
"type": "Paragraph",
"content": [
"Some text with some",
{
"type": "Emphasis",
"content": [
"emphasized words"
]
},
" and ",
{
"type": "Strong",
"content": [
"some strongly emphasized words"
]
}
]
}
],
"file": "Paragraph.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/Paragraph.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/Paragraph.schema.yaml",
"type": "object",
"additionalProperties": false,
"propertyAliases": {}
}