summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/feature_flag_scope.json
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
}