CarePlanStatus

public enum CarePlanStatus: String

Indicates whether the plan is currently being acted upon, represents future intentions or is now a historical record.

URL: http://hl7.org/fhir/care-plan-status ValueSet: http://hl7.org/fhir/ValueSet/care-plan-status

  • The plan is in development or awaiting use but is not yet intended to be acted upon.

    Declaration

    Swift

    case draft = "draft"
  • The plan is intended to be followed and used as part of patient care.

    Declaration

    Swift

    case active = "active"
  • The plan has been temporarily stopped but is expected to resume in the future.

    Declaration

    Swift

    case suspended = "suspended"
  • The plan is no longer in use and is not expected to be followed or used in patient care.

    Declaration

    Swift

    case completed = "completed"
  • The plan was entered in error and voided.

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • The plan has been terminated prior to reaching completion (though it may have been replaced by a new plan).

    Declaration

    Swift

    case cancelled = "cancelled"
  • The authoring system doesn’t know the current state of the care plan.

    Declaration

    Swift

    case unknown = "unknown"