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 - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "heartrateobservation"] ; #
fhir:meta [
( fhir:extension [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/instance-name"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Heart Rate for adverse event example" ] ] [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/instance-description"^^xsd:anyURI ] ;
fhir:value [ fhir:v "This is a heart rate example for AdverseEvent examples." ] ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir: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 "heartrateobservation" </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 "Heart Rate")</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 "Baseline state")</span></td></tr></table></div>"
] ; #
fhir:status [ fhir:v "final"] ; #
fhir:category ( [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "vital-signs" ] ;
fhir:display [ fhir:v "Vital Signs" ] ] ) ;
fhir:text [ fhir:v "Vital Signs" ]
] ) ; #
fhir:code [
( fhir:coding [
a loinc:8867-4 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "8867-4" ] ;
fhir:display [ fhir:v "Heart Rate" ] ] ) ;
fhir:text [ fhir:v "heart_rate" ]
] ; #
fhir:subject [
fhir:display [ fhir:v "39 year-old male" ] # reference value=\"Patient\/example\"\/
] ; #
fhir:encounter [
fhir:display [ fhir:v "encounter where nurse noticed the problem" ]
] ; #
fhir:effective [ fhir:v "2021-12-10T13:28:17-05:00"^^xsd:dateTime] ; #
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "62.0"^^xsd:decimal ] ;
fhir:unit [ fhir:v "beats/min" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "/min" ]
] ; #
fhir:referenceRange ( [
fhir:low [
fhir:value [ fhir:v "76.0"^^xsd:decimal ] ;
fhir:unit [ fhir:v "beats/min" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "/min" ] ] ;
fhir:high [
fhir:value [ fhir:v "82.0"^^xsd:decimal ] ;
fhir:unit [ fhir:v "beats/min" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "/min" ] ] ;
fhir:type [
( fhir:coding [
a sct:128974000 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "128974000" ] ;
fhir:display [ fhir:v "Baseline state" ] ] ) ; # here we use a type that is not in the preferred value set but it very clinically relevant, this is a clinical observation
fhir:text [ fhir:v "Patient's base-line range" ] ]
] ) . #