From 4ca845e47906bae299eaf4bcf3ecd78cf1f0f2c5 Mon Sep 17 00:00:00 2001 From: Timur Olzhabayev Date: Fri, 19 Aug 2022 14:58:32 +0200 Subject: [PATCH] Chore/extend plugin schema json (#53950) * Allowing additional parameters in tokenAuth and jwtTokenAuth --- docs/sources/developers/plugins/plugin.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sources/developers/plugins/plugin.schema.json b/docs/sources/developers/plugins/plugin.schema.json index 60ce5cff900..cfc36694748 100644 --- a/docs/sources/developers/plugins/plugin.schema.json +++ b/docs/sources/developers/plugins/plugin.schema.json @@ -379,7 +379,7 @@ "params": { "type": "object", "description": "Parameters for the token authentication request.", - "additionalProperties": false, + "additionalProperties": true, "properties": { "grant_type": { "type": "string", @@ -404,7 +404,7 @@ "jwtTokenAuth": { "type": "object", "description": "For data source plugins. Token authentication section used with an JWT OAuth API.", - "additionalProperties": false, + "additionalProperties": true, "properties": { "url": { "type": "string",