This page is part of the International Patient Summary Implementation Guide (v1.0.0: STU 1) based on FHIR R4. The current version which supercedes this version is 1.1.0. For a full list of available versions, see the Directory of published versions
Source view
@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 ------------------------------------------------------------------- a fhir:Observation; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "trilliumII-example-imaging-1"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <b>CT Abdomen W contrast IV</b>\n </p>\n <p>\n <b>date</b>: 1995-06-08\n </p>\n <p>\n <b>subject</b>:\n <a>Patient/eumfh-39-07</a>\n </p>\n <p>\n <b>value</b>: 3 cm nodule present in the inferior medial aspect of right liver lobe. Contrast enhancement pattern consistent with the diagnosis of hemangioma.\n </p>\n </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://terminology.hl7.org/CodeSystem/observation-category" ]; fhir:Coding.code [ fhir:value "imaging" ]; fhir:Coding.display [ fhir:value "Imaging" ] ] ]; fhir:Observation.code [ fhir:CodeableConcept.coding [ fhir:index 0; a loinc:79103-8; fhir:Coding.system [ fhir:value "http://loinc.org" ]; fhir:Coding.code [ fhir:value "79103-8" ]; fhir:Coding.display [ fhir:value "CT Abdomen W contrast IV" ] ]; fhir:CodeableConcept.text [ fhir:value "Upper abdomen with the administration of oral and intravenous contrast (example-4)" ] ]; fhir:Observation.subject [ fhir:Reference.reference [ fhir:value "Patient/eumfh-39-07" ] ]; fhir:Observation.effectiveDateTime [ fhir:value "1995-06-08"^^xsd:date]; fhir:Observation.performer [ fhir:index 0; fhir:Reference.reference [ fhir:value "Practitioner/eumfh-39-07" ] ], [ fhir:index 1; fhir:Reference.reference [ fhir:value "Organization/TII-Organization1" ] ]; fhir:Observation.valueString [ fhir:value "3 cm nodule present in the inferior medial aspect of right liver lobe. Contrast enhancement pattern consistent with the diagnosis of hemangioma."]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.