summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/unleash/unleash_strategy.json
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"
        }
      }
    }
  }
}