--- type: "codesystem" title: "Task Stage Codes" codesystem: "task-stage" --- # Task Stage Codes - **Official URL**: http://hl7.org/fhir/task-stage - **Status**: draft - **Name**: TaskStageCodes - **Title**: Task Stage Codes - **Description**: Task Stage Codes - **Case Sensitive**: true - **Content**: complete ## Concepts | Code | Display | Definition | | --- | --- | --- | | proposal | proposal | The request is a recommendation or suggestion where there has not yet been any commitment to action | | planned | planned | The request has a specific intention to be performed and may be scheduled but is not yet authorized to be performed | | actionable | actionable | Indicates that the task is authorized and ready to be actioned | ## CodeSystem XML ```xml <status value="draft"/> <experimental value="true"/> <description value="Task Stage Codes"/> <caseSensitive value="true"/> <content value="complete"/> <concept> <code value="proposal"/> <display value="proposal"/> <definition value="The request is a recommendation or suggestion where there has not yet been any commitment to action"/> </concept> <concept> <code value="planned"/> <display value="planned"/> <definition value="The request has a specific intention to be performed and may be scheduled but is not yet authorized to be performed"/> </concept> <concept> <code value="actionable"/> <display value="actionable"/> <definition value="Indicates that the task is authorized and ready to be actioned"/> </concept> </CodeSystem> ```