{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/accounts-perform-verification-request-structure.json", "description": "PerformVerificationRequest schema from Adyen API", "type": "object", "properties": { "accountHolderCode": { "description": "The code of the account holder to verify.", "type": "string" }, "accountStateType": { "description": "The state required for the account holder.\n> Permitted values: `Processing`, `Payout`.", "enum": [ "LimitedPayout", "LimitedProcessing", "LimitlessPayout", "LimitlessProcessing", "Payout", "Processing" ], "type": "string" }, "tier": { "description": "The tier required for the account holder.", "type": "int32" } }, "required": [ "accountHolderCode", "accountStateType", "tier" ], "name": "PerformVerificationRequest" }