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

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