NutritionOrderStatus

public enum NutritionOrderStatus: String

Codes specifying the state of the request. Describes the lifecycle of the nutrition order.

URL: http://hl7.org/fhir/nutrition-request-status ValueSet: http://hl7.org/fhir/ValueSet/nutrition-request-status

  • The request has been proposed.

    Declaration

    Swift

    case proposed = "proposed"
  • The request is in preliminary form prior to being sent.

    Declaration

    Swift

    case draft = "draft"
  • The request has been planned.

    Declaration

    Swift

    case planned = "planned"
  • The request has been placed.

    Declaration

    Swift

    case requested = "requested"
  • The request is ‘actionable’, but not all actions that are implied by it have occurred yet.

    Declaration

    Swift

    case active = "active"
  • Actions implied by the request 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 order have occurred and no continuation is planned (this will rarely be made explicit).

    Declaration

    Swift

    case completed = "completed"
  • The request has been withdrawn and is no longer actionable.

    Declaration

    Swift

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

    Declaration

    Swift

    case enteredInError = "entered-in-error"