SweepConfigurationNotificationRequest 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/configuration-webhooks-sweep-configuration-notification-request-schema.json", "title": "SweepConfigurationNotificationRequest", "description": "SweepConfigurationNotificationRequest schema from Adyen API", "type": "object", "properties": { "data": { "description": "Contains event details.", "$ref": "#/components/schemas/SweepConfigurationNotificationData" }, "environment": { "description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.", "type": "string" }, "type": { "description": "Type of webhook.", "enum": [ "balancePlatform.balanceAccountSweep.created", "balancePlatform.balanceAccountSweep.updated", "balancePlatform.balanceAccountSweep.deleted" ], "type": "string" } }, "required": [ "environment", "type", "data" ] }