---
title: "Features"
description: "With the features.conf you can control which verifier API features are enabled. They are managed via the feature manager."
stack: "Community Stack (open source) — version 0.21.0"
stack_version: "0.21.0"
stack_comparison: https://docs.walt.id/community-vs-enterprise.md
canonical_url: https://docs.walt.id/community-stack/verifier/configurations/config-files/features
generated: 2026-07-08
---
# Features

With the `_features.conf` you can control which verifier API features are enabled. They are managed via
the [feature manager](https://docs.walt.id/community-stack/verifier/configurations/feature-manager.md).

## Available Features

**Base Features**
<br/>
Please note that the base features should always be enabled to make full use of the verifier API.

- `web` - Web service
- `verifier-service` - verifier service implementation

**Optional Features**

- `entra` - Start issuing credential via the Microsoft Entra Verified ID platform. Learn
  more [here](https://docs.walt.id/community-stack/verifier/integrations/entra/overview).
- `healthchecks` - Enables healthcheck endpoints.
- `debug-endpoints` - Enables various debug endpoints.
- `feature-flag-information-endpoint` - Enables endpoints related to showing information about available features on
  this service instance.

### Example Setup
```editorconfig[_features.conf]
enabledFeatures = [
    entra
]
disabledFeatures = [
    debug-endpoints,
    healthchecks
]
```
