Kong · Schema

CreateDcrConfigHttpInRequest

Payload to create an HTTP DCR provider.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
dcr_base_url object
api_key object
disable_event_hooks object
disable_refresh_secret object
allow_multiple_credentials object
View JSON Schema on GitHub

JSON Schema

kong-createdcrconfighttpinrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateDcrConfigHttpInRequest",
  "title": "CreateDcrConfigHttpInRequest",
  "description": "Payload to create an HTTP DCR provider.",
  "type": "object",
  "properties": {
    "dcr_base_url": {
      "$ref": "#/components/schemas/DcrBaseUrl"
    },
    "api_key": {
      "$ref": "#/components/schemas/DcrConfigPropertyApiKey"
    },
    "disable_event_hooks": {
      "$ref": "#/components/schemas/DcrConfigPropertyDisableEventHooks"
    },
    "disable_refresh_secret": {
      "$ref": "#/components/schemas/DcrConfigPropertyDisableRefreshSecret"
    },
    "allow_multiple_credentials": {
      "$ref": "#/components/schemas/DcrConfigPropertyAllowMultipleCredentials"
    }
  },
  "additionalProperties": false,
  "required": [
    "dcr_base_url",
    "api_key"
  ]
}