{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CheckoutDelegatedAuthenticationAction", "title": "CheckoutDelegatedAuthenticationAction", "additionalProperties": false, "properties": { "authorisationToken": { "description": "A token needed to authorise a payment.", "type": "string" }, "paymentData": { "description": "Encoded payment data.", "type": "string" }, "paymentMethodType": { "description": "Specifies the payment method.", "type": "string" }, "token": { "description": "A token to pass to the delegatedAuthentication component.", "type": "string" }, "type": { "description": "**delegatedAuthentication**", "enum": [ "delegatedAuthentication" ], "type": "string" }, "url": { "description": "Specifies the URL to redirect to.", "type": "string" } }, "required": [ "type" ], "type": "object" }