{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Webhook", "title": "Webhook", "type": "object", "properties": { "key": { "type": "string" }, "description": { "type": "string" }, "enabled": { "type": "boolean" }, "url": { "type": "string", "format": "uri" }, "secret": { "type": "string" }, "events": { "type": "array", "items": { "type": "string" } }, "criteria": { "type": "object", "additionalProperties": true } } }