IL Core Implementation Guide
0.18.0 - draft Israel flag

This page is part of the IL-Core IG (v0.18.0: draft-1 Draft) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: Observation - hight measurement - JSON Representation

Raw json | Download


{
  "resourceType" : "Observation",
  "id" : "observation-VS-cuff-size",
  "meta" : {
    "profile" : [
      🔗 "http://fhir.health.gov.il/StructureDefinition/il-core-vital-signs"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Observation of Hight - 1.72 Meters</div>"
  },
  "status" : "final",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/observation-category",
          "code" : "vital-signs",
          "display" : "Vital Signs"
        }
      ]
    }
  ],
  "code" : {
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "9843-4",
        "display" : "Head Occipital-frontal circumference"
      }
    ]
  },
  "subject" : {
    🔗 "reference" : "Patient/patient-with-israeli-id"
  },
  "effectiveDateTime" : "2021-02-20",
  "performer" : [
    {
      🔗 "reference" : "Practitioner/practitioner-nurse"
    }
  ],
  "valueQuantity" : {
    "value" : 34.2,
    "unit" : "cm",
    "system" : "http://unitsofmeasure.org",
    "code" : "cm"
  },
  "referenceRange" : [
    {
      "low" : {
        "value" : 30,
        "unit" : "cm",
        "system" : "http://unitsofmeasure.org",
        "code" : "cm"
      },
      "high" : {
        "value" : 40,
        "unit" : "cm",
        "system" : "http://unitsofmeasure.org",
        "code" : "cm"
      }
    }
  ]
}