Example to illustrate a communication to notify that a patient has had their first MMR Vaccination.

Table View

Communication.id[0]UKCore-Communication-FirstMMRVaccination-Example
Communication.text[0].status[0]generated
Communication.text[0].div[0]
First MMR vaccination administered to Melanie.
Communication.status[0]completed
Communication.category[0].coding[0].system[0]https://fhir.hl7.org.uk/CodeSystem/UKCore-RecordStandardHeadings
Communication.category[0].coding[0].code[0]immunisations
Communication.category[0].coding[0].display[0]Immunisations
Communication.category[1].coding[0].system[0]http://terminology.hl7.org/CodeSystem/communication-category
Communication.category[1].coding[0].code[0]notification
Communication.category[1].coding[0].display[0]Notification
Communication.medium[0].coding[0].system[0]http://terminology.hl7.org/CodeSystem/v3-ParticipationMode
Communication.medium[0].coding[0].code[0]ELECTRONIC
Communication.medium[0].coding[0].display[0]electronic data
Communication.subject[0].reference[0]Patient/UKCore-Patient-BabyPatient-Example
Communication.subject[0].display[0]JONES, Melanie
Communication.sent[0]2022-12-11T13:00:00+00:00
Communication.received[0]2022-12-11T13:01:33+00:00
Communication.sender[0].reference[0]Practitioner/UKCore-Practitioner-PaulRastall-Example
Communication.sender[0].display[0]Dr Paul Rastall
Communication.payload[0].content[0]First MMR vaccination administered to Melanie

XML View

<Communication xmlns="http://hl7.org/fhir">
    <id value="UKCore-Communication-FirstMMRVaccination-Example" />
    <text>
        <status value="generated" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <status value="completed" />
    <category>
        <coding>
            <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-RecordStandardHeadings" />
            <code value="immunisations" />
            <display value="Immunisations" />
        </coding>
    </category>
    <category>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/communication-category" />
            <code value="notification" />
            <display value="Notification" />
        </coding>
    </category>
    <medium>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3-ParticipationMode" />
            <code value="ELECTRONIC" />
            <display value="electronic data" />
        </coding>
    </medium>
    <subject>
        <reference value="Patient/UKCore-Patient-BabyPatient-Example" />
        <display value="JONES, Melanie" />
    </subject>
    <!--   <encounter>
    <reference value="Encounter/UKCore-Encounter-InpatientEncounter-Example" />
  </encounter> -->
    <sent value="2022-12-11T13:00:00+00:00" />
    <received value="2022-12-11T13:01:33+00:00" />
    <sender>
        <reference value="Practitioner/UKCore-Practitioner-PaulRastall-Example" />
        <display value="Dr Paul Rastall" />
    </sender>
    <payload>
        <contentString value="First MMR vaccination administered to Melanie" />
    </payload>
</Communication>

JSON View

{
    "resourceType": "Communication",
    "id": "UKCore-Communication-FirstMMRVaccination-Example",
    "text": {
        "status": "generated",
        --- We have skipped the narrative for better readability of the resource ---
    },
    "status": "completed",
    "category":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-RecordStandardHeadings",
                    "code": "immunisations",
                    "display": "Immunisations"
                }
            ]
        },
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/communication-category",
                    "code": "notification",
                    "display": "Notification"
                }
            ]
        }
    ],
    "medium":  [
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode",
                    "code": "ELECTRONIC",
                    "display": "electronic data"
                }
            ]
        }
    ],
    "subject": {
        "reference": "Patient/UKCore-Patient-BabyPatient-Example",
        "display": "JONES, Melanie"
    },
    "sent": "2022-12-11T13:00:00+00:00",
    "received": "2022-12-11T13:01:33+00:00",
    "sender": {
        "reference": "Practitioner/UKCore-Practitioner-PaulRastall-Example",
        "display": "Dr Paul Rastall"
    },
    "payload":  [
        {
            "contentString": "First MMR vaccination administered to Melanie"
        }
    ]
}