@prefix fhir: . @prefix loinc: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Observation; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "body-temperature"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/vitalsigns"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative

Resource "body-temperature"

Profile: Vital Signs Profile

status: final

category: Vital Signs (Observation Category Codes#vital-signs)

code: Body temperature (LOINC#8310-5)

subject: Patient/example "Peter CHALMERS"

effective: 1999-07-02

value: 36.5 C (Details: UCUM code Cel = 'Cel')

" ]; fhir:Observation.status [ fhir:value "final"]; fhir:Observation.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/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:8310-5; fhir:Coding.system [ fhir:value "http://loinc.org" ]; fhir:Coding.code [ fhir:value "8310-5" ]; fhir:Coding.display [ fhir:value "Body temperature" ] ]; fhir:CodeableConcept.text [ fhir:value "Body temperature" ] ]; fhir:Observation.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Observation.effectiveDateTime [ fhir:value "1999-07-02"^^xsd:date]; fhir:Observation.valueQuantity [ fhir:Quantity.value [ fhir:value "36.5"^^xsd:decimal ]; fhir:Quantity.unit [ fhir:value "C" ]; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "Cel" ] ] . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------