Kong · Schema

EventGatewayProduceSchemaValidationPolicyConfig

The configuration of the produce schema validation policy.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayproduceschemavalidationpolicyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayProduceSchemaValidationPolicyConfig",
  "title": "EventGatewayProduceSchemaValidationPolicyConfig",
  "description": "The configuration of the produce schema validation policy.",
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "confluent_schema_registry": "#/components/schemas/EventGatewayProduceSchemaValidationPolicySchemaRegistryConfig",
      "json": "#/components/schemas/EventGatewayProduceSchemaValidationPolicyJsonConfig"
    }
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/EventGatewayProduceSchemaValidationPolicySchemaRegistryConfig"
    },
    {
      "$ref": "#/components/schemas/EventGatewayProduceSchemaValidationPolicyJsonConfig"
    }
  ]
}