{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentVerificationRequest", "title": "PaymentVerificationRequest", "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" ], "type": "object" }