MedicationDispenseStatus
public enum MedicationDispenseStatus: String
A coded concept specifying the state of the dispense event.
URL: http://hl7.org/fhir/medication-dispense-status ValueSet: http://hl7.org/fhir/ValueSet/medication-dispense-status
-
The core event has not started yet, but some staging activities have begun (e.g. initial compounding or packaging of medication). Preparation stages may be tracked for billing purposes.
Declaration
Swift
case preparation = "preparation"
-
The dispense has started but has not yet completed.
Declaration
Swift
case inProgress = "in-progress"
-
Actions implied by the administration have been temporarily halted, but are expected to continue later. May also be called
suspended
Declaration
Swift
case onHold = "on-hold"
-
All actions that are implied by the dispense have occurred.
Declaration
Swift
case completed = "completed"
-
The dispense was entered in error and therefore nullified.
Declaration
Swift
case enteredInError = "entered-in-error"
-
Actions implied by the dispense have been permanently halted, before all of them occurred.
Declaration
Swift
case stopped = "stopped"