GoalStatus

public enum GoalStatus: String

Indicates whether the goal has been met and is still being targeted

URL: http://hl7.org/fhir/goal-status ValueSet: http://hl7.org/fhir/ValueSet/goal-status

  • A goal is proposed for this patient

    Declaration

    Swift

    case proposed = "proposed"
  • A proposed goal was accepted or acknowledged

    Declaration

    Swift

    case accepted = "accepted"
  • A goal is planned for this patient

    Declaration

    Swift

    case planned = "planned"
  • The goal is being sought but has not yet been reached. (Also applies if goal was reached in the past but there has been regression and goal is being sought again)

    Declaration

    Swift

    case inProgress = "in-progress"
  • The goal is on schedule for the planned timelines

    Declaration

    Swift

    case onTarget = "on-target"
  • The goal is ahead of the planned timelines

    Declaration

    Swift

    case aheadOfTarget = "ahead-of-target"
  • The goal is behind the planned timelines

    Declaration

    Swift

    case behindTarget = "behind-target"
  • The goal has been met, but ongoing activity is needed to sustain the goal objective

    Declaration

    Swift

    case sustaining = "sustaining"
  • The goal has been met and no further action is needed

    Declaration

    Swift

    case achieved = "achieved"
  • The goal remains a long term objective but is no longer being actively pursued for a temporary period of time.

    Declaration

    Swift

    case onHold = "on-hold"
  • The previously accepted goal is no longer being sought

    Declaration

    Swift

    case cancelled = "cancelled"
  • The goal was entered in error and voided.

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • A proposed goal was rejected

    Declaration

    Swift

    case rejected = "rejected"