{ "type": "object", "properties": { "id": { "type": "string", "example": "500123" }, "title": { "type": "string", "example": "Vice President of Sales" }, "enabled": { "type": "boolean", "example": true }, "targetUrl": { "type": "string", "example": "https://www.example.com/resource" }, "createdDate": { "type": "string", "example": "2025-03-15T14:30:00Z" }, "subscriptions": { "type": "array", "description": "", "example": [], "items": { "type": "object", "properties": { "createdDate": { "type": "string", "example": "2025-03-15T14:30:00Z" }, "modifiedDate": { "type": "string", "example": "2025-03-15T14:30:00Z" }, "eventType": { "type": "string", "example": "standard" }, "objectType": { "type": "string", "example": "standard" }, "fullPayload": { "type": "boolean", "example": true }, "subscriptionId": { "type": "string", "example": "500123" } }, "required": [ "createdDate", "modifiedDate", "eventType", "objectType", "subscriptionId" ] } } }, "required": [ "id", "enabled", "targetUrl", "createdDate", "subscriptions" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Webhook" }