{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecurityTrailer", "title": "SecurityTrailer", "type": "object", "description": "It contains information related to the security of the message. SecurityTrailer as used by Adyen.", "properties": { "AdyenCryptoVersion": { "type": "integer" }, "KeyIdentifier": { "type": "string", "pattern": "^.+$" }, "KeyVersion": { "type": "integer" }, "Nonce": { "type": "string", "format": "byte", "pattern": "^.+$" }, "Hmac": { "type": "string", "format": "byte", "pattern": "^.+$" } }, "required": [ "AdyenCryptoVersion", "KeyIdentifier", "KeyVersion", "Nonce", "Hmac" ] }