MedicationAdministrationStatus

public enum MedicationAdministrationStatus: String

A set of codes indicating the current status of a MedicationAdministration.

URL: http://hl7.org/fhir/medication-admin-status ValueSet: http://hl7.org/fhir/ValueSet/medication-admin-status

  • The administration 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 administration have occurred.

    Declaration

    Swift

    case completed = "completed"
  • The administration was entered in error and therefore nullified.

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • Actions implied by the administration have been permanently halted, before all of them occurred.

    Declaration

    Swift

    case stopped = "stopped"
  • The authoring system does not know which of the status values currently applies for this request. Note: This concept is not to be used for other - one of the listed statuses is presumed to apply, it’s just not known which one.

    Declaration

    Swift

    case unknown = "unknown"