{
  "$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": "Quantity.schema.json#/definitions/Quantity"
            },
            "high": {
              "description": "The high limit. The boundary is inclusive.",
              "$ref": "Quantity.schema.json#/definitions/Quantity"
            }
          }
        }
      ]
    }
  }
}