summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/feature_flag_detailed_scopes.json
blob: a11ae5705cc223b346a1a989766dc39d113f5f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "array",
  "items": {
    "type": "object",
    "required" : [
      "name",
      "id",
      "environment_scope",
      "active"
    ],
    "properties" : {
      "name": { "type": "string" },
      "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
  }
}