{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Webhook", "title": "Webhook", "type": "object", "properties": { "id": { "type": "string", "description": "Webhook unique identifier" }, "url": { "type": "string", "format": "uri", "description": "Webhook endpoint URL" }, "events": { "type": "array", "items": { "type": "string" }, "description": "Event types subscribed to" }, "active": { "type": "boolean", "description": "Whether the webhook is active" }, "created_at": { "type": "string", "format": "date-time", "description": "Creation timestamp" } } }