This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions 
Example of QICore Communication
@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 xs: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir//Communication/communication-example-qicore> a fhir:Communication;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "communication-example-qicore"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ]
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/communication-reasonNotPerformed" ];
fhir:Extension.valueCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ActReason" ];
fhir:Coding.code [ fhir:value "EIE" ];
fhir:Coding.display [ fhir:value "entered in error" ] ] ]
];
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.category [
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.senderReference [
fhir:reference <http://hl7.org/fhir/Device/f001>;
fhir:Reference.reference [ fhir:value "Device/f001" ]
];
fhir:Communication.recipientReference [
fhir:index 0;
fhir:reference <http://hl7.org/fhir/Practitioner/21>;
fhir:Reference.reference [ fhir:value "Practitioner/21" ]
];
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:Communication.payload [
fhir:index 1;
fhir:Communication.payload.contentReference [
fhir:reference <http://hl7.org/fhir/Observation/643666aa12f>;
fhir:Reference.reference [ fhir:value "Observation/643666aa12f" ] ]
];
fhir:Communication.status [ fhir:value "suspended"];
fhir:Communication.sent [ fhir:value "2014-12-12T18:01:10-08:00"^^xs:dateTime];
fhir:Communication.subject [
fhir:reference <http://hl7.org/fhir/Patient/1>;
fhir:Reference.reference [ fhir:value "Patient/1" ]
].
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.