--- type: "codesystem" title: "Account Status" codesystem: "account-status" --- # Account Status - **Official URL**: http://hl7.org/fhir/account-status - **Version**: 6.0.0 - **Status**: active - **Name**: AccountStatus - **Title**: Account Status - **Publisher**: HL7 (FHIR Project) - **Description**: Indicates whether the account is available to be used. - **Case Sensitive**: true - **Content**: complete ## Concepts | Code | Display | Definition | | --- | --- | --- | | active | Active | This account is active and may be used. | | inactive | Inactive | This account is inactive and should not be used to track financial information. | | entered-in-error | Entered in error | This instance should not have been part of this patient's medical record. | | on-hold | On Hold | This account is on hold. | | unknown | Unknown | The account status is unknown. | ## 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="Indicates whether the account is available to be used."/> <caseSensitive value="true"/> <valueSet value="http://hl7.org/fhir/ValueSet/account-status"/> <content value="complete"/> <concept> <code value="active"/> <display value="Active"/> <definition value="This account is active and may be used."/> </concept> <concept> <code value="inactive"/> <display value="Inactive"/> <definition value="This account is inactive and should not be used to track financial information."/> </concept> <concept> <code value="entered-in-error"/> <display value="Entered in error"/> <definition value="This instance should not have been part of this patient's medical record."/> </concept> <concept> <code value="on-hold"/> <display value="On Hold"/> <definition value="This account is on hold."/> </concept> <concept> <code value="unknown"/> <display value="Unknown"/> <definition value="The account status is unknown."/> </concept> </CodeSystem> ```