Kong · Schema

EventGatewayProduceSchemaValidationPolicyJsonConfig

The configuration of the produce schema validation policy when using JSON parsing without schema.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
schema_registry object
key_validation_action object
value_validation_action object
type string
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayproduceschemavalidationpolicyjsonconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayProduceSchemaValidationPolicyJsonConfig",
  "title": "EventGatewayProduceSchemaValidationPolicyJsonConfig",
  "description": "The configuration of the produce schema validation policy when using JSON parsing without schema.",
  "type": "object",
  "properties": {
    "schema_registry": {
      "$ref": "#/components/schemas/SchemaRegistryReference"
    },
    "key_validation_action": {
      "$ref": "#/components/schemas/ProduceKeyValidationAction"
    },
    "value_validation_action": {
      "$ref": "#/components/schemas/ProduceValueValidationAction"
    },
    "type": {
      "type": "string",
      "const": "json"
    }
  },
  "required": [
    "type"
  ]
}