44 lines
917 B
JSON
44 lines
917 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://khadhroony.local/schemas/kb-app-demo-desktop.application.config.schema.json",
|
|
"title": "Khadhroony Bot desktop application composition fragment",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"name",
|
|
"environment",
|
|
"demo"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"environment": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"demo": {
|
|
"$ref": "#/$defs/demo"
|
|
}
|
|
},
|
|
"$defs": {
|
|
"demo": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"live_demo_enabled",
|
|
"trading_demo_enabled"
|
|
],
|
|
"properties": {
|
|
"live_demo_enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"trading_demo_enabled": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|