dispense-notification
This message definition describes the rules for a Dispense Notification interactions used in a FHIR Messaging exchange.
Event Coding
System | Code |
---|---|
Message Events | dispense-notification |
Category |
---|
notification |
MessageHeader
The FHIR Message Bundle MUST contain one MessageHeader resource conforming to NHSDigital-MessageHeader
Focus
Profile | Min | Max | Notes |
---|---|---|---|
NHSDigital-MedicationDispense | 1 | * | |
NHSDigital-Patient | 0 | 1 | A traced NHS Number identifier MUST be present, untraced NHS Numbers are not permitted. This can be conveyed in two ways, as identifier reference in the subject element of the MedicationDispense resource or as an identifier in a Patient resource. If a NHS Number identifier is referenced in the MedicationDispense resources then a Patient resource SHOULD NOT be present in the Bundle. |
prescription-dispense-notification Partial dispensed prescription
1st dispense event - partial Example from a sequence of notifications.
2nd dispense event - partial Example from a sequence of notifications.
3rd dispense event - completed Example from a sequence of notifications.
1st dispense event - partial with Patient Resource Example from a sequence of notifications with an included FHIR Patient resource.
<MessageDefinition xmlns="http://hl7.org/fhir"> <id value="pharmacy-dispense" /> <url value="https://fhir.nhs.uk/MessageDefinition/pharmacy-dispense" /> <identifier> <system value="https://tools.ietf.org/html/rfc4122" /> <value value="bf729ea8-280b-4109-b2f5-02ce8e51d870" /> </identifier> <version value="1.0.0" /> <title value="Pharmacy/Treatment Dispense" /> <status value="active" /> <date value="2020-10-02" /> <eventCoding> <system value="https://fhir.nhs.uk/CodeSystem/message-event" /> <code value="dispense-notification" /> <display value="Dispense Notification" /> </eventCoding> <category value="notification" /> <focus> <code value="MedicationDispense" /> <profile value="https://fhir.nhs.uk/StructureDefinition/NHSDigital-MedicationDispense" /> <min value="1" /> <max value="*" /> </focus> </MessageDefinition>
{ "resourceType": "MessageDefinition", "id": "pharmacy-dispense", "url": "https://fhir.nhs.uk/MessageDefinition/pharmacy-dispense", "identifier": [ { "system": "https://tools.ietf.org/html/rfc4122", "value": "bf729ea8-280b-4109-b2f5-02ce8e51d870" } ], "version": "1.0.0", "title": "Pharmacy/Treatment Dispense", "status": "active", "date": "2020-10-02", "eventCoding": { "system": "https://fhir.nhs.uk/CodeSystem/message-event", "code": "dispense-notification", "display": "Dispense Notification" }, "category": "notification", "focus": [ { "code": "MedicationDispense", "profile": "https://fhir.nhs.uk/StructureDefinition/NHSDigital-MedicationDispense", "min": 1, "max": "*" } ] }