Current section
Files
Jump to
Current section
Files
priv/schema/Range.schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://hl7.erp.uno/priv/schema/Range.schema.json",
"$ref": "#/definitions/Range",
"description": "see https://hl7.org/fhir/R5/json.html for information about the FHIR Json Schemas",
"definitions": {
"Range": {
"allOf": [
{
"description": "A set of ordered Quantities defined by a low and high limit.",
"properties": {
"low": {
"description": "The low limit. The boundary is inclusive.",
"$ref": "Quantity.schema.json#/definitions/Quantity"
},
"high": {
"description": "The high limit. The boundary is inclusive.",
"$ref": "Quantity.schema.json#/definitions/Quantity"
}
}
}
]
}
}
}