Adverse Event Clinical Care
0.2.0 - ci-build International flag

Adverse Event Clinical Care, published by HL7 International - Patient Care Work Group, Vulcan AdverseEvent groups. This is not an authorized publication; it is the continuous build for version 0.2.0). This version is based on the current content of https://github.com/HL7/fhir-ae-care-ig/ and changes regularly. See the Directory of published versions

: Heart Rate for adverse event example 1 - JSON Representation

Page standards status: Informative

Raw json | Download


{
  "resourceType" : "Observation",
  "id" : "heartrateobservation",
  "meta" : {
    "extension" : [
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-name",
        "valueString" : "Heart Rate for adverse event example"
      },
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-description",
        "valueMarkdown" : "This is a heart rate example for AdverseEvent examples."
      }
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</b><a name=\"heartrateobservation\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Observation &quot;heartrateobservation&quot; </p></div><p><b>status</b>: final</p><p><b>category</b>: Vital Signs <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-observation-category.html\">Observation Category Codes</a>#vital-signs)</span></p><p><b>code</b>: heart_rate <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#8867-4 &quot;Heart Rate&quot;)</span></p><p><b>subject</b>: <span>: 39 year-old male</span></p><p><b>encounter</b>: <span>: encounter where nurse noticed the problem</span></p><p><b>effective</b>: 2021-12-10 13:28:17-0500</p><p><b>value</b>: 62.0 beats/min<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code /min = '/min')</span></p><h3>ReferenceRanges</h3><table class=\"grid\"><tr><td>-</td><td><b>Low</b></td><td><b>High</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>76.0 beats/min<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code /min = '/min')</span></td><td>82.0 beats/min<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code /min = '/min')</span></td><td>Patient's base-line range <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#128974000 &quot;Baseline state&quot;)</span></td></tr></table></div>"
  },
  "status" : "final",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/observation-category",
          "code" : "vital-signs",
          "display" : "Vital Signs"
        }
      ],
      "text" : "Vital Signs"
    }
  ],
  "code" : {
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "8867-4",
        "display" : "Heart Rate"
      }
    ],
    "text" : "heart_rate"
  },
  "subject" : {
    "display" : "39 year-old male"
  },
  "encounter" : // reference value="Patient/example"/
  {
    "display" : "encounter where nurse noticed the problem"
  },
  "effectiveDateTime" : "2021-12-10T13:28:17-05:00",
  "valueQuantity" : {
    "value" : 62.0,
    "unit" : "beats/min",
    "system" : "http://unitsofmeasure.org",
    "code" : "/min"
  },
  "referenceRange" : [
    {
      "low" : {
        "value" : 76.0,
        "unit" : "beats/min",
        "system" : "http://unitsofmeasure.org",
        "code" : "/min"
      },
      "high" : {
        "value" : 82.0,
        "unit" : "beats/min",
        "system" : "http://unitsofmeasure.org",
        "code" : "/min"
      },
      "type" : {
        "coding" : [
          // here we use a type that is not in the preferred value set but it very clinically relevant
          // this is a clinical observation
          {
            "system" : "http://snomed.info/sct",
            "code" : "128974000",
            "display" : "Baseline state"
          }
        ],
        "text" : "Patient's base-line range"
      }
    }
  ]
}