TaskStatus

public enum TaskStatus: String

The current status of the task.

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

  • The task is not yet ready to be acted upon.

    Declaration

    Swift

    case draft = "draft"
  • The task is ready to be acted upon and action is sought.

    Declaration

    Swift

    case requested = "requested"
  • A potential performer has claimed ownership of the task and is evaluating whether to perform it.

    Declaration

    Swift

    case received = "received"
  • The potential performer has agreed to execute the task but has not yet started work.

    Declaration

    Swift

    case accepted = "accepted"
  • The potential performer who claimed ownership of the task has decided not to execute it prior to performing any action.

    Declaration

    Swift

    case rejected = "rejected"
  • Task is ready to be performed, but no action has yet been taken. Used in place of requested/received/accepted/rejected when request assignment and acceptance is a given.

    Declaration

    Swift

    case ready = "ready"
  • The task was not completed.

    Declaration

    Swift

    case cancelled = "cancelled"
  • Task has been started but is not yet complete.

    Declaration

    Swift

    case inProgress = "in-progress"
  • Task has been started but work has been paused.

    Declaration

    Swift

    case onHold = "on-hold"
  • The task was attempted but could not be completed due to some error.

    Declaration

    Swift

    case failed = "failed"
  • The task has been completed.

    Declaration

    Swift

    case completed = "completed"
  • The task should never have existed and is retained only because of the possibility it may have used.

    Declaration

    Swift

    case enteredInError = "entered-in-error"