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

: Communication example - JSON Representation

Raw json | Download


{
  "resourceType" : "Communication",
  "id" : "example",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-communication"
    ]
  },
  "text" : {
    "status" : "generated",
    "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>"
  },
  "partOf" : [
    {
      "display" : "Serum Potassium Observation"
    }
  ],
  "status" : "not-done",
  "statusReason" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason",
        "code" : "recipient-unavailable"
      }
    ]
  },
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://acme.org/messagetypes",
          "code" : "Alert"
        }
      ],
      "text" : "Alert"
    }
  ],
  "medium" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode",
          "code" : "WRITTEN",
          "display" : "written"
        }
      ],
      "text" : "written"
    }
  ],
  "subject" : {
    "reference" : "Patient/example"
  },
  "topic" : {
    "text" : "Hyperkalemia"
  },
  "encounter" : {
    "reference" : "Encounter/example"
  },
  "sent" : "2014-12-12T18:01:10-08:00",
  "received" : "2014-12-12T18:01:11-08:00",
  "recipient" : [
    {
      "reference" : "Practitioner/example"
    }
  ],
  "sender" : {
    "reference" : "Device/example"
  },
  "payload" : [
    {
      "contentString" : "Patient 1 has a very high serum potassium value (7.2 mmol/L on 2014-Dec-12 at 5:55 pm)"
    },
    {
      "contentReference" : {
        "display" : "Serum Potassium Observation"
      }
    }
  ]
}