{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayProduceSchemaValidationPolicySchemaRegistryConfig", "title": "EventGatewayProduceSchemaValidationPolicySchemaRegistryConfig", "description": "The configuration of the produce schema validation policy when using a schema registry.", "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": "confluent_schema_registry" } }, "required": [ "type" ] }