FHIR Implementation Guide for NDHM CI Build v1.2
banner

NDHM (R4), Published and maintained by NRCeS for NHA.
This version is based on the NDHM Health Data Interchange Specifications 1.0 and updated periodically.

Turtle Format: Observation-finding-example-01

Download Raw ttl

@prefix fhir: <http://hl7.org/fhir/> .
@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:Resource.id [ fhir:value "finding-example-01"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://nrces.in/ndhm/fhir/r4/StructureDefinition/Observation";
       fhir:index 0;
       fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/Observation>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Narrative with Details</b></p><p><b>id</b>: finding-example-01</p><p><b>status</b>: final</p><p><b>code</b>: Respiratory rate <span>(Details : SNOMED CT code '780834008' = 'Respiratory rate normal', given as 'Respiratory rate normal')</span></p><p><b>subject</b>: ABC</p><p><b>performer</b>: Dr. DEF, MD</p><p><b>value</b>: 18 breaths/minute<span> (Details: SNOMED CT code 258984001 = 'breaths/minute')</span></p><h3>ReferenceRanges</h3><table><tr><td>-</td><td><b>Low</b></td></tr><tr><td>*</td><td>12 breaths/minute<span> (Details: SNOMED CT Code 258984001 = 'breaths/minute')</span></td></tr><tr><td>-</td><td><b>High</b></td></tr><tr><td>*</td><td>20 breaths/minute<span> (Details: SNOMED CT Code 258984001 = 'breaths/minute')</span></td></tr></table></div>"
  ];
  fhir:Observation.status [ fhir:value "final"];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:20716004;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "20716004" ];
       fhir:Coding.display [ fhir:value "Respiratory rate normal" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Respiratory rate normal" ]
  ];
  fhir:Observation.subject [
     fhir:Reference.reference [ fhir:value "Patient/1" ]
  ];
  fhir:Observation.performer [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Practitioner/1" ]
  ];
  fhir:Observation.valueQuantity [
     fhir:Quantity.value [ fhir:value "18"^^xsd:decimal ];
     fhir:Quantity.unit [ fhir:value "breaths/minute" ];
     fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ];
     fhir:Quantity.code [ fhir:value "258984001" ]
  ];
  fhir:Observation.referenceRange [
     fhir:index 0;
     fhir:Observation.referenceRange.low [
       fhir:Quantity.value [ fhir:value "12"^^xsd:decimal ];
       fhir:Quantity.unit [ fhir:value "breaths/minute" ];
       fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Quantity.code [ fhir:value "258984001" ]     ];
     fhir:Observation.referenceRange.high [
       fhir:Quantity.value [ fhir:value "20"^^xsd:decimal ];
       fhir:Quantity.unit [ fhir:value "breaths/minute" ];
       fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Quantity.code [ fhir:value "258984001" ]     ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.