{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-payment-verification-request-schema.json", "title": "PaymentVerificationRequest", "description": "PaymentVerificationRequest schema from Adyen API", "type": "object", "properties": { "payload": { "description": "Encrypted and signed payment result data. You should receive this value from the Checkout SDK after the shopper completes the payment.", "maxLength": 40000, "type": "string" } }, "required": [ "payload" ] }