From a98121ea267acbf8eb28a51e25d5d970fa9cd20d Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 8 Mar 2025 14:09:29 +0100 Subject: [PATCH] chore: update json schema --- build_helpers/schema.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/build_helpers/schema.json b/build_helpers/schema.json index 5fb1772c6..752d13029 100644 --- a/build_helpers/schema.json +++ b/build_helpers/schema.json @@ -542,6 +542,10 @@ "description": "Edge configuration.", "$ref": "#/definitions/edge" }, + "log_config": { + "description": "Logging configuration.", + "$ref": "#/definitions/logging" + }, "freqai": { "description": "FreqAI configuration.", "$ref": "#/definitions/freqai" @@ -1273,6 +1277,30 @@ "allowed_risk" ] }, + "logging": { + "type": "object", + "properties": { + "version": { + "type": "number", + "const": 1 + }, + "formatters": { + "type": "object" + }, + "handlers": { + "type": "object" + }, + "root": { + "type": "object" + } + }, + "required": [ + "version", + "formatters", + "handlers", + "root" + ] + }, "external_message_consumer": { "description": "Configuration for external message consumer.", "type": "object",