--- type: "codesystem" title: "Endpoint Environment" codesystem: "endpoint-environment" --- # Endpoint Environment - **Official URL**: http://hl7.org/fhir/endpoint-environment - **Version**: 6.0.0 - **Status**: active - **Name**: EndpointEnvironment - **Title**: Endpoint Environment - **Publisher**: HL7 (FHIR Project) - **Description**: The environment type of the endpoint. - **Case Sensitive**: true - **Content**: complete ## Concepts | Code | Display | Definition | | --- | --- | --- | | prod | Production | Production environment and is expected to contain real data and should be protected appropriately | | staging | Staging | Staging environment typically used while preparing for a release to production | | dev | Development | Development environment used while building systems | | test | Test | Test environment, it is not intended for production usage. | | train | Training | Training environment, it is not intended for production usage and typically contains data specifically prepared for training usage. | ## CodeSystem XML ```xml <status value="active"/> <experimental value="false"/> <date value="2021-01-05T10:01:24+11:00"/> <publisher value="HL7 (FHIR Project)"/> <description value="The environment type of the endpoint."/> <caseSensitive value="true"/> <valueSet value="http://hl7.org/fhir/ValueSet/endpoint-environment"/> <content value="complete"/> <concept> <code value="prod"/> <display value="Production"/> <definition value="Production environment and is expected to contain real data and should be protected appropriately"/> </concept> <concept> <code value="staging"/> <display value="Staging"/> <definition value="Staging environment typically used while preparing for a release to production"/> </concept> <concept> <code value="dev"/> <display value="Development"/> <definition value="Development environment used while building systems"/> </concept> <concept> <code value="test"/> <display value="Test"/> <definition value="Test environment, it is not intended for production usage."/> </concept> <concept> <code value="train"/> <display value="Training"/> <definition value="Training environment, it is not intended for production usage and typically contains data specifically prepared for training usage."/> </concept> </CodeSystem> ```