{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionNotificationRequestV4", "title": "TransactionNotificationRequestV4", "properties": { "data": { "description": "Contains details about the event.", "$ref": "#/components/schemas/Transaction" }, "environment": { "description": "The environment from which the webhook originated.\n\nPossible values: **test**, **live**.", "type": "string" }, "type": { "description": "Type of the webhook.", "enum": [ "balancePlatform.transaction.created" ], "type": "string" } }, "required": [ "environment", "data" ], "type": "object" }