Common Data Models Harmonization
1.0.0 - STU 1 Publication

Common Data Models Harmonization, published by HL7 International - Biomedical Research and Regulation Work Group. This is not an authorized publication; it is the continuous build for version 1.0.0). This version is based on the current content of https://github.com/HL7/cdmh/ and changes regularly. See the Directory of published versions

: CDMH Vital Signs - Example - JSON Representation

Raw json | Download


{
  "resourceType" : "Observation",
  "id" : "vitals-example",
  "meta" : {
    "extension" : [
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-name",
        "valueString" : "Height Example"
      },
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-description",
        "valueMarkdown" : "This is a height example for the *Vitalsigns Profile*."
      }
    ],
    "profile" : [
      "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-vital-signs"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>CDMH Vital Signs Example</b></p>"
  },
  "extension" : [
    {
      "url" : "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-pcornet-body-position",
      "valueCode" : "02"
    }
  ],
  "status" : "final",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/observation-category",
          "code" : "vital-signs",
          "display" : "Vital Signs"
        }
      ],
      "text" : "Vital Signs"
    }
  ],
  "code" : {
    "extension" : [
      {
        "id" : "1",
        "url" : "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-pcornet-vital-source",
        "valueCode" : "PR"
      }
    ],
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "8302-2",
        "display" : "Body height"
      }
    ],
    "text" : "height"
  },
  "subject" : {
    "reference" : "Patient/example",
    "display" : "Amy Shaw"
  },
  "encounter" : {
    "display" : "GP Visit"
  },
  "effectiveDateTime" : "1999-07-02",
  "valueQuantity" : {
    "value" : 111.506,
    "unit" : "cm",
    "system" : "http://unitsofmeasure.org",
    "code" : "cm"
  }
}