23 lines
809 B
JSON
23 lines
809 B
JSON
{
|
|
"type": "object",
|
|
"required" : [
|
|
"id",
|
|
"name"
|
|
],
|
|
"properties" : {
|
|
"id": { "type": "integer" },
|
|
"iid": { "type": ["integer", "null"] },
|
|
"version": { "type": "string" },
|
|
"created_at": { "type": "string", "format": "date-time" },
|
|
"updated_at": { "type": "string", "format": "date-time" },
|
|
"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
|
|
}
|