24 lines
759 B
JSON
24 lines
759 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required" : [
|
||
|
"id",
|
||
|
"name"
|
||
|
],
|
||
|
"properties" : {
|
||
|
"id": { "type": "integer" },
|
||
|
"iid": { "type": ["integer", "null"] },
|
||
|
"version": { "type": "string" },
|
||
|
"created_at": { "type": "date" },
|
||
|
"updated_at": { "type": "date" },
|
||
|
"name": { "type": "string" },
|
||
|
"active": { "type": "boolean" },
|
||
|
"description": { "type": ["string", "null"] },
|
||
|
"edit_path": { "type": ["string", "null"] },
|
||
|
"update_path": { "type": ["string", "null"] },
|
||
|
"destroy_path": { "type": ["string", "null"] },
|
||
|
"scopes": { "type": "array", "items": { "$ref": "feature_flag_scope.json" } },
|
||
|
"strategies": { "type": "array", "items": { "$ref": "feature_flag_strategy.json" } }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|