Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> . @prefix loinc: <http://loinc.org/rdf#> . @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/example-observation> a fhir:Observation ; fhir:nodeRole fhir:treeRoot ; fhir:Resource.id [ fhir:value "example-observation"] ; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation example-observation</b></p><a name=\"example-observation\"> </a><a name=\"hcexample-observation\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 4548-4}\">4548-4</span></p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Thomas Weber (official) Male, DoB: 1975-06-15</a></p><p><b>effective</b>: 2026-01-15</p><p><b>performer</b>: <a href=\"Practitioner-example-practitioner.html\">Practitioner Markus Schoell (official)</a></p><p><b>value</b>: 7.2 %<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code% = '%')</span></p></div>" ] ; fhir:Observation.status [ fhir:value "final"] ; fhir:Observation.code [ fhir:CodeableConcept.coding [ fhir:index 0 ; a loinc:4548-4 ; fhir:Coding.system [ fhir:value "http://loinc.org" ] ; fhir:Coding.code [ fhir:value "4548-4" ] ] ] ; fhir:Observation.subject [ fhir:link <http://hl7.org/fhir/Patient/example-patient> ; fhir:Reference.reference [ fhir:value "Patient/example-patient" ] ] ; fhir:Observation.effectiveDateTime [ fhir:value "2026-01-15"^^xsd:date] ; fhir:Observation.performer [ fhir:index 0 ; fhir:link <http://hl7.org/fhir/Practitioner/example-practitioner> ; fhir:Reference.reference [ fhir:value "Practitioner/example-practitioner" ] ] ; fhir:Observation.valueQuantity [ fhir:Quantity.value [ fhir:value "7.2"^^xsd:decimal ] ; fhir:Quantity.unit [ fhir:value "%" ] ; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ; fhir:Quantity.code [ fhir:value "%" ] ] . <http://hl7.org/fhir/Patient/example-patient> a fhir:Patient . <http://hl7.org/fhir/Practitioner/example-practitioner> a fhir:Practitioner . # - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/Observation/example-observation.ttl> a owl:Ontology ; owl:imports fhir:fhir.ttl ; owl:versionIRI <http://build.fhir.org/Observation/example-observation.ttl> .