QI-Core Implementation Guide
4.1.0 - release
This page is part of the Quality Improvement Core Framework (v4.1.0: STU 4) based on FHIR R4. 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 "example"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-communication";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-communication> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"example\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-qicore-communication.html\">QICoreCommunication</a></p></div><p><b>partOf</b>: <span>: Serum Potassium Observation</span></p><p><b>status</b>: not-done</p><p><b>statusReason</b>: Recipient Unavailable <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-communication-not-done-reason.html\">CommunicationNotDoneReason</a>#recipient-unavailable)</span></p><p><b>category</b>: Alert <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (messagetypes#Alert)</span></p><p><b>medium</b>: written <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-v3-ParticipationMode.html\">ParticipationMode</a>#WRITTEN)</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Patient/example</a> \" CHALMERS\"</p><p><b>topic</b>: Hyperkalemia <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ()</span></p><p><b>encounter</b>: <a href=\"Encounter-example.html\">Encounter/example</a></p><p><b>sent</b>: 2014-12-12T18:01:10-08:00</p><p><b>received</b>: 2014-12-12T18:01:11-08:00</p><p><b>recipient</b>: <a href=\"Practitioner-example.html\">Practitioner/example</a> \" CAREFUL\"</p><p><b>sender</b>: <a href=\"Device-example.html\">Device/example</a></p><blockquote><p><b>payload</b></p><p><b>content</b>: Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)</p></blockquote><blockquote><p><b>payload</b></p><p><b>content</b>: <span>: Serum Potassium Observation</span></p></blockquote></div>"
];
fhir:Communication.partOf [
fhir:index 0;
fhir:Reference.display [ fhir:value "Serum Potassium Observation" ]
];
fhir:Communication.status [ fhir:value "not-done"];
fhir:Communication.statusReason [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/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://terminology.hl7.org/CodeSystem/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/example" ]
];
fhir:Communication.topic [
fhir:CodeableConcept.text [ fhir:value "Hyperkalemia" ]
];
fhir:Communication.encounter [
fhir:Reference.reference [ fhir:value "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.recipient [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Practitioner/example" ]
];
fhir:Communication.sender [
fhir:Reference.reference [ fhir:value "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.