{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/recurring-schedule-account-updater-result-schema.json", "title": "ScheduleAccountUpdaterResult", "description": "ScheduleAccountUpdaterResult schema from Adyen API", "type": "object", "properties": { "pspReference": { "description": "Adyen's 16-character unique reference associated with the transaction. This value is globally unique; quote it when communicating with us about this request.", "type": "string" }, "result": { "description": "The result of scheduling an Account Updater. If scheduling was successful, this field returns **Success**; otherwise it contains the error message.", "type": "string" } }, "required": [ "pspReference", "result" ] }