From 6766c865944c5e57c341fc5cf6c24487abc4f930 Mon Sep 17 00:00:00 2001 From: Kofo Okesola Date: Thu, 12 Sep 2024 15:49:04 +0100 Subject: [PATCH] fix schema --- cli/linter/schema.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/cli/linter/schema.json b/cli/linter/schema.json index 5058d96cf93..5846fa5a744 100644 --- a/cli/linter/schema.json +++ b/cli/linter/schema.json @@ -163,9 +163,23 @@ } } } + }, + "Streaming": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "allow_unsafe": { + "type": "array" + } + } } }, "properties": { + "streaming": { + "$ref": "#/definitions/Streaming" + }, "allow_insecure_configs": { "type": "boolean" },