MedicationStatementStatus

public enum MedicationStatementStatus: String

A coded concept indicating the current status of a MedicationStatement.

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

  • The medication is still being taken.

    Declaration

    Swift

    case active = "active"
  • The medication is no longer being taken.

    Declaration

    Swift

    case completed = "completed"
  • The statement was recorded incorrectly.

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • The medication may be taken at some time in the future.

    Declaration

    Swift

    case intended = "intended"
  • Actions implied by the statement have been permanently halted, before all of them occurred.

    Declaration

    Swift

    case stopped = "stopped"
  • Actions implied by the statement have been temporarily halted, but are expected to continue later. May also be called suspended.

    Declaration

    Swift

    case onHold = "on-hold"