{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-webhooks-account-holder-notification-request-schema.json", "title": "AccountHolderNotificationRequest", "description": "AccountHolderNotificationRequest schema from Adyen API", "type": "object", "properties": { "data": { "description": "Contains event details.", "$ref": "#/components/schemas/AccountHolderNotificationData" }, "environment": { "description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.", "type": "string" }, "type": { "description": "Type of webhook.", "enum": [ "balancePlatform.accountHolder.updated", "balancePlatform.accountHolder.created" ], "type": "string" } }, "required": [ "environment", "type", "data" ] }