Features

With the _features.conf you can control which verifier API features are enabled. They are managed via the feature manager.

Available Features

Base Features
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.
  • 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

_features.conf
enabledFeatures = [
    entra
]
disabledFeatures = [
    debug-endpoints,
    healthchecks
]