|
|
|
|
@ -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",
|
|
|
|
|
|