{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/checkout-checkout-qr-code-action-structure.json", "description": "CheckoutQrCodeAction schema from Adyen API", "type": "object", "properties": { "expiresAt": { "description": "Expiry time of the QR code.", "type": "string" }, "paymentData": { "description": "Encoded payment data.", "type": "string" }, "paymentMethodType": { "description": "Specifies the payment method.", "type": "string" }, "qrCodeData": { "description": "The contents of the QR code as a UTF8 string.", "type": "string" }, "type": { "description": "**qrCode**", "enum": [ "qrCode" ], "type": "string" }, "url": { "description": "Specifies the URL to redirect to.", "type": "string" } }, "required": [ "type" ], "additionalProperties": false, "name": "CheckoutQrCodeAction" }