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

unleash_feature.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: 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"
    }
  }
}