debian-mirror-gitlab/spec/fixtures/api/schemas/unleash/unleash_feature.json
2021-01-03 14:25:43 +05:30

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"
}
}
}