QI-Core Implementation Guide: STU 4 (v4.0.0 for FHIR 4.0.1)

QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions

Communication/example

Formats: Narrative, XML, JSON, Turtle

Raw ttl

@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 with Details</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>partOf</b>: Serum Potassium Observation</p><p><b>status</b>: not-done</p><p><b>statusReason</b>: Recipient Unavailable <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/communication-not-done-reason code 'recipient-unavailable' = 'Recipient Unavailable)</span></p><p><b>category</b>: Alert <span style=\"background: LightGoldenRodYellow\">(Details : {http://acme.org/messagetypes code 'Alert' = 'Alert)</span></p><p><b>medium</b>: written <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/v3-ParticipationMode code 'WRITTEN' = 'written', given as 'written'})</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>topic</b>: Hyperkalemia <span style=\"background: LightGoldenRodYellow\">(Details )</span></p><p><b>encounter</b>: <a href=\"Encounter-example.html\">Generated Summary: id: example; status: in-progress; <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode IMP}\">inpatient encounter</span>; <span title=\"Codes: {http://www.ama-assn.org/go/cpt 99223}\">Inpatient Hospital Care</span></a></p><p><b>sent</b>: Dec 13, 2014 2:01:10 AM</p><p><b>received</b>: Dec 13, 2014 2:01:11 AM</p><p><b>recipient</b>: <a href=\"Practitioner-example.html\">Generated Summary: id: example; 23; active; Adam Careful </a></p><p><b>sender</b>: <a href=\"Device-example.html\">Generated Summary: id: example; 345675, Serial Number = AMID-342135-8464; status: active; manufacturer: Acme Devices, Inc; lotNumber: 43453424; modelNumber: AB 45-J; <span title=\"Codes: {http://snomed.info/sct 86184003}\">ECG</span>; ph: ext 4352; Author: Practitioner/example; Made: Jun 28, 2015 4:03:32 AM; Annotation: QA Checked</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>: Serum Potassium Observation</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.