{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-checkout-sdk-action-schema.json", "title": "CheckoutSDKAction", "description": "CheckoutSDKAction schema from Adyen API", "type": "object", "properties": { "paymentData": { "description": "Encoded payment data.", "type": "string" }, "paymentMethodType": { "description": "Specifies the payment method.", "type": "string" }, "sdkData": { "additionalProperties": { "type": "string" }, "description": "The data to pass to the SDK.", "type": "object" }, "type": { "description": "The type of the action.", "enum": [ "sdk", "wechatpaySDK" ], "type": "string" }, "url": { "description": "Specifies the URL to redirect to.", "type": "string" } }, "required": [ "type" ], "additionalProperties": false }