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

feature_flag.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: 0f304e9ee7382ce34b199dc2bcf6303465f62293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": { "type": "string" },
    "description": { "type": ["string", "null"] },
    "active": {"type": "boolean" },
    "version": { "type": "string" },
    "created_at": { "type": "date" },
    "updated_at": { "type": "date" },
    "scopes": { "type": "array", "items": { "$ref": "feature_flag_scope.json" } },
    "strategies": { "type": "array", "items": { "$ref": "operations/strategy.json" } }
  },
  "additionalProperties": false
}