OFREP extensions

OFREP provider configuration

OFREP configuration is used to supply information about the remote flag management system and to set up the OpenFeature SDK providers. The providers will contact this endpoint only if the client has opted in.

get/ofrep/v1/configuration

Headers

If-None-Matchstring

The request will be processed only if ETag doesn't match any of the values listed.

Response

OFREP metadata response

namestring

name of the flag management system

Example response

{
  "name": "flagd",
  "capabilities": {
    "cacheInvalidation": {
      "polling": {
        "minPollingIntervalMs": 60000
      }
    },
    "flagEvaluation": {
      "supportedTypes": [
        "object",
        "int",
        "float"
      ]
    }
  }
}

Changes