19 lines
483 B
JSON
19 lines
483 B
JSON
|
{
|
||
|
"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
|
||
|
}
|