27 lines
422 B
JSON
27 lines
422 B
JSON
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"name",
|
|
"enabled",
|
|
"strategies"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"strategies": {
|
|
"items": {
|
|
"$ref": "unleash_strategy.json"
|
|
},
|
|
"minItems": 1,
|
|
"type": "array"
|
|
}
|
|
}
|
|
}
|