chore: update json schema

This commit is contained in:
Matthias
2025-03-08 14:09:29 +01:00
parent cc9c373a76
commit a98121ea26

View File

@@ -542,6 +542,10 @@
"description": "Edge configuration.", "description": "Edge configuration.",
"$ref": "#/definitions/edge" "$ref": "#/definitions/edge"
}, },
"log_config": {
"description": "Logging configuration.",
"$ref": "#/definitions/logging"
},
"freqai": { "freqai": {
"description": "FreqAI configuration.", "description": "FreqAI configuration.",
"$ref": "#/definitions/freqai" "$ref": "#/definitions/freqai"
@@ -1273,6 +1277,30 @@
"allowed_risk" "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": { "external_message_consumer": {
"description": "Configuration for external message consumer.", "description": "Configuration for external message consumer.",
"type": "object", "type": "object",