EventStatus
public enum EventStatus: String
Codes identifying the stage lifecycle stage of a event
URL: http://hl7.org/fhir/event-status ValueSet: http://hl7.org/fhir/ValueSet/event-status
-
The core event has not started yet, but some staging activities have begun (e.g. surgical suite preparation). Preparation stages may be tracked for billing purposes.
Declaration
Swift
case preparation = "preparation"
-
The event is currently occurring
Declaration
Swift
case inProgress = "in-progress"
-
The event has been temporarily stopped but is expected to resume in the future
Declaration
Swift
case suspended = "suspended"
-
The event was prior to the full completion of the intended actions
Declaration
Swift
case aborted = "aborted"
-
The event has now concluded
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, it’s just not known which one.Declaration
Swift
case unknown = "unknown"