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