summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/feature_flag_scope.json
blob: 07c5eed532aa060670c5544f2cfacc9f39a3bdd5 (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": "date" },
    "updated_at": { "type": "date" },
    "strategies": { "type": "array", "items": { "$ref": "feature_flag_strategy.json" } }
  },
  "additionalProperties": false
}