Example Medications List - Rheumatology Clinic

This examples medication list is provided as part of a patient journey scenario, which is described here. The list references the following example resources:

Below is an example of the above medication statements combined into a medication list:

List
List.id[0]Example-DataStandardsWales-MedicationList-Outpatient
List.status[0]current
List.mode[0]snapshot
List.code[0].coding[0].system[0]http://snomed.info/sct
List.code[0].coding[0].code[0]933361000000108
List.code[0].coding[0].display[0]Medications and medical devices
List.subject[0].reference[0]Patient/Example-DataStandardsWales-Patient-PeterPiper
List.subject[0].display[0]PIPER, Peter (NHS: 1192335566)
List.encounter[0].reference[0]Encounter/Example-Outpatient
List.encounter[0].display[0]...
List.date[0]2022-02-20T15:00:00Z
List.source[0].reference[0]Practitioner/Rheumatology-Doctor
List.source[0].display[0]...
List.entry[0].item[0].reference[0]MedicationStatement/Example-DataStandardsWales-MedicationStatement-Enbrel-Outpatient
List.entry[0].item[0].display[0]Enbrel 50mg/1ml solution for injection pre-filled syringes (Pfizer Ltd) - Inject 50mg subcutaneously once a week
<List xmlns="http://hl7.org/fhir">
    <id value="Example-DataStandardsWales-MedicationList-Outpatient" />
    <status value="current" />
    <mode value="snapshot" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="933361000000108" />
            <display value="Medications and medical devices" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/Example-DataStandardsWales-Patient-PeterPiper" />
        <display value="PIPER, Peter (NHS: 1192335566)" />
    </subject>
    <encounter>
        <reference value="Encounter/Example-Outpatient" />
        <display value="..." />
    </encounter>
    <date value="2022-02-20T15:00:00Z" />
    <source>
        <reference value="Practitioner/Rheumatology-Doctor" />
        <display value="..." />
    </source>
    <entry>
        <item>
            <reference value="MedicationStatement/Example-DataStandardsWales-MedicationStatement-Enbrel-Outpatient" />
            <display value="Enbrel 50mg/1ml solution for injection pre-filled syringes (Pfizer Ltd) - Inject 50mg subcutaneously once a week" />
        </item>
    </entry>
</List>
{
    "resourceType": "List",
    "id": "Example-DataStandardsWales-MedicationList-Outpatient",
    "status": "current",
    "mode": "snapshot",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "933361000000108",
                "display": "Medications and medical devices"
            }
        ]
    },
    "subject": {
        "reference": "Patient/Example-DataStandardsWales-Patient-PeterPiper",
        "display": "PIPER, Peter (NHS: 1192335566)"
    },
    "encounter": {
        "reference": "Encounter/Example-Outpatient",
        "display": "..."
    },
    "date": "2022-02-20T15:00:00Z",
    "source": {
        "reference": "Practitioner/Rheumatology-Doctor",
        "display": "..."
    },
    "entry":  [
        {
            "item": {
                "reference": "MedicationStatement/Example-DataStandardsWales-MedicationStatement-Enbrel-Outpatient",
                "display": "Enbrel 50mg/1ml solution for injection pre-filled syringes (Pfizer Ltd) - Inject 50mg subcutaneously once a week"
            }
        }
    ]
}