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

unleash_strategy.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: 7b48038ad15194353fc118d6fb726e5ed955fe1b (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
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "parameters": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "groupId": {
          "type": "string"
        },
        "percentage": {
          "type": "integer"
        }
      }
    }
  }
}