Current section
Files
Jump to
Current section
Files
schema/Narrative.schema.json
{
"schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://hl7.erp.uno/schema/Narrative.schema.json",
"$ref": "#/definitions/Narrative",
"description": "see https://hl7.org/fhir/R5/json.html for information about the FHIR Json Schemas",
"definitions": {
"Narrative": {
"allOf": [
{
"description": "A human-readable formatted text, including images.",
"properties": {
"status": {
"description": "The status of the narrative - whether it\u0027s entirely generated (from just the defined data or the extensions too), or whether a human authored it and it may contain additional data.",
"enum": [
"generated",
"extensions",
"additional",
"empty"
],
"type": "string"
},
"div": {
"description": "The actual narrative content, a stripped down version of XHTML.",
"type": "string"
}
},
"required": [
"div"
]
}
]
}
}
}