{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebhookNotifications", "title": "WebhookNotifications", "type": "object", "properties": { "on_start": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "ID of the system notification destination" } } }, "example": [] }, "on_success": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" } } }, "example": [] }, "on_failure": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" } } }, "example": [] }, "on_duration_warning_threshold_exceeded": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" } } }, "example": [] } } }