{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-webhooks-account-holder-notification-request-structure.json", "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" ], "name": "AccountHolderNotificationRequest" }