launchdarkly · Schema

RelayProxyConfigBody

The request body for creating a Relay Proxy configuration.

Properties

Name Type Description
name string A human-readable name for the configuration.
policy array Policy statements controlling access.
View JSON Schema on GitHub

JSON Schema

launchdarkly-relayproxyconfigbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelayProxyConfigBody",
  "title": "RelayProxyConfigBody",
  "type": "object",
  "description": "The request body for creating a Relay Proxy configuration.",
  "required": [
    "name",
    "policy"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "A human-readable name for the configuration."
    },
    "policy": {
      "type": "array",
      "description": "Policy statements controlling access.",
      "items": {
        "$ref": "#/components/schemas/Statement"
      }
    }
  }
}