{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebhookUpdateRequest", "title": "WebhookUpdateRequest", "type": "object", "properties": { "filters": { "type": "array", "description": "An array of WebhookFilter objects to specify a whitelist of filters to apply to events from this webhook. If a webhook event passes any of the filters the event will be delivered; otherwise no event will be sent to the receiving server.", "items": { "allOf": [ { "$ref": "#/components/schemas/WebhookFilter" }, { "description": "A set of filters to specify a whitelist for what types of events will be delivered." }, { "type": "object" } ] } } } }