--- type: "codesystem" title: "Event Status" codesystem: "event-status" --- # Event Status - **Official URL**: http://hl7.org/fhir/event-status - **Version**: 6.0.0 - **Status**: active - **Name**: EventStatus - **Title**: Event Status - **Description**: EventStatus ## Concepts | Code | Display | Definition | | --- | --- | --- | | preparation | Preparation | 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. | | in-progress | In Progress | The event is currently occurring. | | not-done | Not Done | The event was terminated prior to any activity beyond preparation. I.e. The 'main' activity has not yet begun. The boundary between preparatory and the 'main' activity is context-specific. | | on-hold | On Hold | The event has been temporarily stopped but is expected to resume in the future. | | stopped | Stopped | The event was terminated prior to the full completion of the intended activity but after at least some of the 'main' activity (beyond preparation) has occurred. | | completed | Completed | The event has now concluded. | | entered-in-error | Entered in Error | 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 "stopped" rather than "entered-in-error".). | | unknown | Unknown | The authoring/source system does not know which of the status values currently applies for this event. Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, but the authoring/source system does not know which. | ## CodeSystem XML ```xml <status value="active"/> <experimental value="true"/> <description value="EventStatus"/> <concept> <code value="preparation"/> <display value="Preparation"/> <definition value="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."/> </concept> <concept> <code value="in-progress"/> <display value="In Progress"/> <definition value="The event is currently occurring."/> </concept> <concept> <code value="not-done"/> <display value="Not Done"/> <definition value="The event was terminated prior to any activity beyond preparation. I.e. The 'main' activity has not yet begun. The boundary between preparatory and the 'main' activity is context-specific."/> </concept> <concept> <code value="on-hold"/> <display value="On Hold"/> <definition value="The event has been temporarily stopped but is expected to resume in the future."/> </concept> <concept> <code value="stopped"/> <display value="Stopped"/> <definition value="The event was terminated prior to the full completion of the intended activity but after at least some of the 'main' activity (beyond preparation) has occurred."/> </concept> <concept> <code value="completed"/> <display value="Completed"/> <definition value="The event has now concluded."/> </concept> <concept> <code value="entered-in-error"/> <display value="Entered in Error"/> <definition value="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 "stopped" rather than "entered-in-error".)."/> </concept> <concept> <code value="unknown"/> <display value="Unknown"/> <definition value="The authoring/source system does not know which of the status values currently applies for this event. Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, but the authoring/source system does not know which."/> </concept> </CodeSystem> ```