Markdown source body for a site.standard.document. Used as the value of the document's open `content` union (a single union value, not an array).
Properties
images
array
of refcom.scanash.content.image
Optional
Inline image blobs referenced by the markdown body, kept here so the PDS retains the blobs.
markdown
string
Required
CommonMark / GitHub-flavored Markdown source for the document body.
maxLength: 1000000 bytesmaxGraphemes: 100000 graphemesView raw schema
{
"type": "object",
"required": [
"markdown"
],
"properties": {
"images": {
"type": "array",
"items": {
"ref": "com.scanash.content.image",
"type": "ref"
},
"description": "Inline image blobs referenced by the markdown body, kept here so the PDS retains the blobs."
},
"markdown": {
"type": "string",
"maxLength": 1000000,
"description": "CommonMark / GitHub-flavored Markdown source for the document body.",
"maxGraphemes": 100000
}
},
"description": "Markdown source body for a site.standard.document. Used as the value of the document's open `content` union (a single union value, not an array)."
}