fhir-schemas
Version:
Schemas for Fast Healthcare Interoperability Resources.
28 lines • 927 B
JSON
{
"schema": "http://json-schema.org/draft-04/schema#",
"$id": "http://hl7.org/fhir/json-schema/Range",
"$ref": "#/definitions/Range",
"description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas",
"definitions": {
"Range": {
"allOf": [
{
"$ref": "Element#/definitions/Element"
},
{
"description": "A set of ordered Quantities defined by a low and high limit.",
"properties": {
"low": {
"description": "The low limit. The boundary is inclusive.",
"$ref": "http://hl7.org/fhir/json-schema/Quantity#/definitions/Quantity"
},
"high": {
"description": "The high limit. The boundary is inclusive.",
"$ref": "http://hl7.org/fhir/json-schema/Quantity#/definitions/Quantity"
}
}
}
]
}
}
}