Kong · Schema

VerifyDcrProviderResponse

A response containing the result of attempting to verify a DCR provider configuration.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
status string
errors array
View JSON Schema on GitHub

JSON Schema

kong-verifydcrproviderresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifyDcrProviderResponse",
  "title": "VerifyDcrProviderResponse",
  "description": "A response containing the result of attempting to verify a DCR provider configuration.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "failed"
      ],
      "x-speakeasy-unknown-values": "allow"
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "status",
    "errors"
  ]
}