From 8833bfcf4d131eb82b57ba2371d1863938c26777 Mon Sep 17 00:00:00 2001 From: actions-user Date: Sat, 8 Jan 2022 17:48:05 +0000 Subject: [PATCH] docs: update --- www/docs/static/schema.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/www/docs/static/schema.json b/www/docs/static/schema.json index 73a9751026e..0723f11f79d 100644 --- a/www/docs/static/schema.json +++ b/www/docs/static/schema.json @@ -43,6 +43,10 @@ "telegram": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/Telegram" + }, + "webhook": { + "$schema": "http://json-schema.org/draft-04/schema#", + "$ref": "#/definitions/Webhook" } }, "additionalProperties": false, @@ -2287,6 +2291,35 @@ }, "additionalProperties": false, "type": "object" + }, + "Webhook": { + "properties": { + "enabled": { + "type": "boolean" + }, + "skip_tls_verify": { + "type": "boolean" + }, + "message_template": { + "type": "string" + }, + "endpoint_url": { + "type": "string" + }, + "headers": { + "patternProperties": { + ".*": { + "type": "string" + } + }, + "type": "object" + }, + "content_type": { + "type": "string" + } + }, + "additionalProperties": false, + "type": "object" } } } \ No newline at end of file