summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/unleash/unleash_feature.json
blob: 71d375a5371806733d265a893b9536afc0ed04db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "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"
    }
  }
}