Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unleash.json « unleash « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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"
}