CarePlanActivityStatus
public enum CarePlanActivityStatus: String
Indicates where the activity is at in its overall life cycle.
URL: http://hl7.org/fhir/care-plan-activity-status ValueSet: http://hl7.org/fhir/ValueSet/care-plan-activity-status
-
Activity is planned but no action has yet been taken.
Declaration
Swift
case notStarted = "not-started"
-
Appointment or other booking has occurred but activity has not yet begun.
Declaration
Swift
case scheduled = "scheduled"
-
Activity has been started but is not yet complete.
Declaration
Swift
case inProgress = "in-progress"
-
Activity was started but has temporarily ceased with an expectation of resumption at a future time.
Declaration
Swift
case onHold = "on-hold"
-
The activities have been completed (more or less) as planned.
Declaration
Swift
case completed = "completed"
-
The activities have been ended prior to completion (perhaps even before they were started).
Declaration
Swift
case cancelled = "cancelled"
-
The authoring system doesn’t know the current state of the activity.
Declaration
Swift
case unknown = "unknown"