{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Webhook", "title": "Webhook", "type": "object", "properties": { "object_id": { "type": "string" }, "url": { "type": "string", "description": "URL that receives webhook events" }, "event": { "type": "string", "enum": [ "transaction_created", "transaction_updated", "batch_created", "batch_purchased", "track_updated" ] }, "active": { "type": "boolean" }, "is_test": { "type": "boolean" }, "object_created": { "type": "string", "format": "date-time" }, "object_updated": { "type": "string", "format": "date-time" } } }