--- type: "codesystem" title: "List Status" codesystem: "list-status" --- # List Status - **Official URL**: http://hl7.org/fhir/list-status - **Version**: 6.0.0 - **Status**: active - **Name**: ListStatus - **Title**: List Status - **Publisher**: HL7 (FHIR Project) - **Description**: The current state of the list. - **Case Sensitive**: true - **Content**: complete ## Concepts | Code | Display | Definition | | --- | --- | --- | | current | Current | The list is considered to be an active part of the patient's record. | | retired | Retired | The list is "old" and should no longer be considered accurate or relevant. | | entered-in-error | Entered In Error | The list was never accurate. It is retained for medico-legal purposes only. | ## CodeSystem XML ```xml <status value="active"/> <experimental value="false"/> <date value="2021-01-05T10:01:24+11:00"/> <publisher value="HL7 (FHIR Project)"/> <contact> <telecom> <system value="url"/> <value value="http://hl7.org/fhir"/> </telecom> <telecom> <system value="email"/> <value value="fhir@lists.hl7.org"/> </telecom> </contact> <description value="The current state of the list."/> <caseSensitive value="true"/> <valueSet value="http://hl7.org/fhir/ValueSet/list-status"/> <content value="complete"/> <concept> <code value="current"/> <display value="Current"/> <definition value="The list is considered to be an active part of the patient's record."/> </concept> <concept> <code value="retired"/> <display value="Retired"/> <definition value="The list is "old" and should no longer be considered accurate or relevant."/> </concept> <concept> <code value="entered-in-error"/> <display value="Entered In Error"/> <definition value="The list was never accurate. It is retained for medico-legal purposes only."/> </concept> </CodeSystem> ```