summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/unleash/unleash.json
blob: 6eaf316bb11a5764e32d8c04afeaa3657705fd45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "additionalProperties": false,
  "properties": {
    "features": {
      "items": {
        "$ref": "unleash_feature.json"
      },
      "minItems": 0,
      "type": "array"
    },
    "version": {
      "type": "integer"
    }
  },
  "required": [
    "version",
    "features"
  ],
  "type": "object"
}