RequestStatus
public enum RequestStatus: String
Codes identifying the stage lifecycle stage of a request
URL: http://hl7.org/fhir/request-status ValueSet: http://hl7.org/fhir/ValueSet/request-status
-
The request has been created but is not yet complete or ready for action
Declaration
Swift
case draft = "draft"
-
The request is ready to be acted upon
Declaration
Swift
case active = "active"
-
The authorization/request to act has been temporarily withdrawn but is expected to resume in the future
Declaration
Swift
case suspended = "suspended"
-
The authorization/request to act has been terminated prior to the full completion of the intended actions. No further activity should occur.
Declaration
Swift
case cancelled = "cancelled"
-
Activity against the request has been sufficiently completed to the satisfaction of the requester
Declaration
Swift
case completed = "completed"
-
This electronic record should never have existed, though it is possible that real-world decisions were based on it. (If real-world activity has occurred, the status should be
cancelled
rather thanentered-in-error
.)Declaration
Swift
case enteredInError = "entered-in-error"
-
The authoring system does not know which of the status values currently applies for this request. Note: This concept is not to be used for
other
. One of the listed statuses is presumed to apply, but the system creating the request doesn’t know.Declaration
Swift
case unknown = "unknown"