--- type: "codesystem" title: "Request Status" codesystem: "request-status" --- # Request Status - **Official URL**: http://hl7.org/fhir/request-status - **Version**: 6.0.0 - **Status**: active - **Name**: RequestStatus - **Title**: Request Status - **Description**: RequestStatus ## Concepts | Code | Display | Definition | | --- | --- | --- | | draft | Draft | The request has been created but is not yet complete or ready for action. | | active | Active | The request is in force and ready to be acted upon. | | on-hold | On Hold | The request (and any implicit authorization to act) has been temporarily withdrawn but is expected to resume in the future. | | entered-in-error | Entered in Error | This request should never have existed and should be considered 'void'. (It is possible that real-world decisions were based on it. If real-world activity has occurred, the status should be "revoked" rather than "entered-in-error".). | | unknown | Unknown | The authoring/source 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 authoring/source system does not know which. | | ended | Ended | This request is no longer to be acted upon. This status does not differentiate what degree of action (if any) has already been undertaken against the request. | ## CodeSystem XML ```xml <status value="active"/> <experimental value="true"/> <description value="RequestStatus"/> <concept> <code value="draft"/> <display value="Draft"/> <definition value="The request has been created but is not yet complete or ready for action."/> </concept> <concept> <code value="active"/> <display value="Active"/> <definition value="The request is in force and ready to be acted upon."/> </concept> <concept> <code value="on-hold"/> <display value="On Hold"/> <definition value="The request (and any implicit authorization to act) has been temporarily withdrawn but is expected to resume in the future."/> </concept> <concept> <code value="entered-in-error"/> <display value="Entered in Error"/> <definition value="This request should never have existed and should be considered 'void'. (It is possible that real-world decisions were based on it. If real-world activity has occurred, the status should be "revoked" 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 request. 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> <concept> <code value="ended"/> <display value="Ended"/> <definition value="This request is no longer to be acted upon. This status does not differentiate what degree of action (if any) has already been undertaken against the request."/> <concept> <code value="completed"/> <display value="Completed"/> <definition value="The activity described by the request has been fully performed. No further activity will occur."/> </concept> <concept> <code value="revoked"/> <display value="Revoked"/> <definition value="The request (and any implicit authorization to act) has been terminated prior to the known full completion of the intended actions. No further activity should occur."/> </concept> </concept> </CodeSystem> ```