--- type: "codesystem" title: "Product Status" codesystem: "product-status" --- # Product Status - **Official URL**: http://hl7.org/fhir/product-status - **Version**: 6.0.0 - **Status**: active - **Name**: ProductStatus - **Title**: Product Status - **Description**: ProductStatus ## Concepts | Code | Display | Definition | | --- | --- | --- | | active | Active | The product can be used. | | 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 "cancelled" rather than "entered-in-error".). | ## CodeSystem XML ```xml <status value="active"/> <experimental value="true"/> <description value="ProductStatus"/> <concept> <code value="active"/> <display value="Active"/> <definition value="The product can be used."/> </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 "cancelled" rather than "entered-in-error".)."/> </concept> </CodeSystem> ```