AuthenticationResultRequest schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/payments-authentication-result-request-schema.json", "title": "AuthenticationResultRequest", "description": "AuthenticationResultRequest schema from Adyen API", "type": "object", "properties": { "merchantAccount": { "description": "The merchant account identifier, with which the authentication was processed.", "type": "string" }, "pspReference": { "description": "The pspReference identifier for the transaction.", "type": "string" } }, "required": [ "merchantAccount", "pspReference" ] }