Packages

ISO/HL7 FHIR Application Server

Current section

Files

Jump to
hl7 schema Range.schema.json
Raw

schema/Range.schema.json

{
"schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://hl7.erp.uno/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"
}
}
}
]
}
}
}