FHIR Release 3 (STU)

This page is part of the FHIR Specification (v3.0.2: STU 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3

Observation-example-vitals-panel.ttl

Orders and Observations Work GroupMaturity Level: N/ABallot Status: InformativeCompartments: Device, Encounter, Patient, Practitioner, RelatedPerson

Raw Turtle, JSON-LD

Simple Panel of Heart Rate, Repiratory Rate. Blood Pressure and Body Temperature

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Observation/vitals-panel> a fhir:Observation;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "vitals-panel"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/vitalsigns";
       fhir:index 0
     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: vitals-panel</p><p><b>meta</b>: </p><p><b>status</b>: final</p><p><b>category</b>: Vital Signs <span>(Details : {http://hl7.org/fhir/observation-category code 'vital-signs' = 'Vital Signs', given as 'Vital Signs'})</span></p><p><b>code</b>: Vital signs Panel <span>(Details : {LOINC code '85353-1' = 'Vital signs, weight, height, head circumference, oxygen saturation &amp; BMI panel', given as 'Vital signs, weight, height, head circumference, oxygen saturation and BMI panel'})</span></p><p><b>subject</b>: <a>Patient/example</a></p><p><b>effective</b>: 02/07/1999</p><blockquote><p><b>related</b></p><p><b>type</b>: has-member</p><p><b>target</b>: <a>Respiratory Rate</a></p></blockquote><blockquote><p><b>related</b></p><p><b>type</b>: has-member</p><p><b>target</b>: <a>Heart Rate</a></p></blockquote><blockquote><p><b>related</b></p><p><b>type</b>: has-member</p><p><b>target</b>: <a>Blood Pressure</a></p></blockquote><blockquote><p><b>related</b></p><p><b>type</b>: has-member</p><p><b>target</b>: <a>Body Temperature</a></p></blockquote></div>"
  ];
  fhir:Observation.status [ fhir:value "final"];
  fhir:Observation.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/observation-category" ];
       fhir:Coding.code [ fhir:value "vital-signs" ];
       fhir:Coding.display [ fhir:value "Vital Signs" ]
     ];
     fhir:CodeableConcept.text [ fhir:value "Vital Signs" ]
  ];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:85353-1;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "85353-1" ];
       fhir:Coding.display [ fhir:value "Vital signs, weight, height, head circumference, oxygen saturation and BMI panel" ]
     ];
     fhir:CodeableConcept.text [ fhir:value "Vital signs Panel" ]
  ];
  fhir:Observation.subject [
     fhir:link <http://hl7.org/fhir/Patient/example>;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ];
  fhir:Observation.effectiveDateTime [ fhir:value "1999-07-02"^^xsd:date];
  fhir:Observation.related [
     fhir:index 0;
     fhir:Observation.related.type [ fhir:value "has-member" ];
     fhir:Observation.related.target [
       fhir:link <http://hl7.org/fhir/Observation/respiratory-rate>;
       fhir:Reference.reference [ fhir:value "Observation/respiratory-rate" ];
       fhir:Reference.display [ fhir:value "Respiratory Rate" ]
     ]
  ], [
     fhir:index 1;
     fhir:Observation.related.type [ fhir:value "has-member" ];
     fhir:Observation.related.target [
       fhir:link <http://hl7.org/fhir/Observation/heart-rate>;
       fhir:Reference.reference [ fhir:value "Observation/heart-rate" ];
       fhir:Reference.display [ fhir:value "Heart Rate" ]
     ]
  ], [
     fhir:index 2;
     fhir:Observation.related.type [ fhir:value "has-member" ];
     fhir:Observation.related.target [
       fhir:link <http://hl7.org/fhir/Observation/blood-pressure>;
       fhir:Reference.reference [ fhir:value "Observation/blood-pressure" ];
       fhir:Reference.display [ fhir:value "Blood Pressure" ]
     ]
  ], [
     fhir:index 3;
     fhir:Observation.related.type [ fhir:value "has-member" ];
     fhir:Observation.related.target [
       fhir:link <http://hl7.org/fhir/Observation/body-temperature>;
       fhir:Reference.reference [ fhir:value "Observation/body-temperature" ];
       fhir:Reference.display [ fhir:value "Body Temperature" ]
     ]
  ] .

<http://hl7.org/fhir/Patient/example> a fhir:Patient .

<http://hl7.org/fhir/Observation/respiratory-rate> a fhir:Observation .

<http://hl7.org/fhir/Observation/heart-rate> a fhir:Observation .

<http://hl7.org/fhir/Observation/blood-pressure> a fhir:Observation .

<http://hl7.org/fhir/Observation/body-temperature> a fhir:Observation .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Observation/vitals-panel.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://hl7.org/fhir/STU3/Observation/vitals-panel.ttl> .

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.