@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - 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 ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Narrative with Details

id: finding-example-01

status: final

code: Respiratory rate (Details : SNOMED CT code '780834008' = 'Respiratory rate normal', given as 'Respiratory rate normal')

subject: ABC

performer: Dr. DEF, MD

value: 18 breaths/minute (Details: UCUM code /min = '/min')

ReferenceRanges

-Low
*12 breaths/minute (Details: UCUM code /min = '/min')
-High
*20 breaths/minute (Details: UCUM code /min = '/min')
" ]; 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:link ; fhir:Reference.reference [ fhir:value "Patient/example-01" ] ]; fhir:Observation.performer [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example-01" ] ]; fhir:Observation.valueQuantity [ fhir:Quantity.value [ fhir:value "18"^^xsd:decimal ]; fhir:Quantity.unit [ fhir:value "breaths/minute" ]; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "/min" ] ]; 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://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "/min" ] ]; 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://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "/min" ] ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------