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

feature_flag_scope.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e8fb0b3d4053166a4090be488bafbc1e37b29cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "object",
  "required" : [
    "id",
    "environment_scope",
    "active"
  ],
  "properties" : {
    "id": { "type": "integer" },
    "environment_scope": { "type": "string" },
    "active": { "type": "boolean" },
    "percentage": { "type": ["integer", "null"] },
    "created_at": { "type": "string" },
    "updated_at": { "type": "string" },
    "strategies": { "type": "array", "items": { "$ref": "feature_flag_strategy.json" } }
  },
  "additionalProperties": false
}