{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayParsedRecordEncryptFieldsConfig", "title": "EventGatewayParsedRecordEncryptFieldsConfig", "description": "The configuration of the encrypt parsed record policy.", "type": "object", "properties": { "failure_mode": { "$ref": "#/components/schemas/ProduceFailureMode" }, "encrypt_fields": { "description": "Selects which fields to encrypt and with what keys.", "type": "array", "items": { "$ref": "#/components/schemas/EventGatewayParsedRecordEncryptionSelector" }, "minItems": 1 } }, "required": [ "failure_mode", "encrypt_fields" ] }