This page is part of the Quality Improvement Core Framework (v2.1.0: STU 3 Ballot 1) based on FHIR R3. The current version which supercedes this version is 4.1.1. For a full list of available versions, see the Directory of published versions
@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 xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:Communication; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "qicore-communication-example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <strong>identifier</strong>: 2345678901 \n </p>\n <p>\n <strong>definition</strong>: Hyperkalemia \n </p>\n <p>\n <strong>partOf</strong>: Serum Potassium Observation \n </p>\n <p>\n <strong>value</strong>: completed \n </p>\n <p>\n <strong>category</strong>: Alert \n </p>\n <p>\n <strong>medium</strong>: written \n </p>\n <p>\n <strong>definition</strong>: Hyperkalemia \n </p>\n <p>\n <strong>subject</strong>: \n <a href=\"Patient-qicore-patient-example.html\">Patient/example</a>\n </p>\n <p>\n <strong>recipient</strong>: \n <a href=\"Practitioner-qicore-practitioner-example.html\">Practitioner/example</a>\n </p>\n <p>\n <strong>context</strong>: \n <a href=\"Encounter-qicore-encounter-example.html\">Encounter/example</a>\n </p>\n <p>\n <strong>sent</strong>: 12/12/2014 \n </p>\n <p>\n <strong>sender</strong>: Device/example\n </p>\n <p>\n <strong>payload 1</strong>: Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm) \n </p>\n <p>\n <strong>payload 2</strong>: \n <a href=\"Observation-qicore-observation-example.html\">Observation/example</a>\n </p>\n </div>" ]; fhir:Communication.identifier [ fhir:index 0; fhir:Identifier.type [ fhir:CodeableConcept.text [ fhir:value "Paging System" ] ]; fhir:Identifier.system [ fhir:value "urn:oid:1.3.4.5.6.7" ]; fhir:Identifier.value [ fhir:value "2345678901" ] ]; fhir:Communication.definition [ fhir:index 0; fhir:Reference.display [ fhir:value "Hyperkalemia" ] ]; fhir:Communication.partOf [ fhir:index 0; fhir:Reference.display [ fhir:value "Serum Potassium Observation" ] ]; fhir:Communication.status [ fhir:value "completed"]; fhir:Communication.notDone [ fhir:value "true"^^xsd:boolean]; fhir:Communication.notDoneReason [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/communication-not-done-reason" ]; fhir:Coding.code [ fhir:value "recipient-unavailable" ] ] ]; fhir:Communication.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://acme.org/messagetypes" ]; fhir:Coding.code [ fhir:value "Alert" ] ]; fhir:CodeableConcept.text [ fhir:value "Alert" ] ]; fhir:Communication.medium [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ParticipationMode" ]; fhir:Coding.code [ fhir:value "WRITTEN" ]; fhir:Coding.display [ fhir:value "written" ] ]; fhir:CodeableConcept.text [ fhir:value "written" ] ]; fhir:Communication.subject [ fhir:Reference.reference [ fhir:value "Patient/qicore-patient-example" ] ]; fhir:Communication.recipient [ fhir:index 0; fhir:Reference.reference [ fhir:value "Practitioner/qicore-practitioner-example" ] ]; fhir:Communication.context [ fhir:Reference.reference [ fhir:value "Encounter/qicore-encounter-example" ] ]; fhir:Communication.sent [ fhir:value "2014-12-12T18:01:10-08:00"^^xsd:dateTime]; fhir:Communication.received [ fhir:value "2014-12-12T18:01:11-08:00"^^xsd:dateTime]; fhir:Communication.sender [ fhir:Reference.reference [ fhir:value "Device/qicore-device-example" ] ]; fhir:Communication.payload [ fhir:index 0; fhir:Communication.payload.contentString [ fhir:value "Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)" ] ], [ fhir:index 1; fhir:Communication.payload.contentReference [ fhir:Reference.display [ fhir:value "Serum Potassium Observation" ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.