summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/unleash/unleash.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/unleash/unleash.json')
-rw-r--r--spec/fixtures/api/schemas/unleash/unleash.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/unleash/unleash.json b/spec/fixtures/api/schemas/unleash/unleash.json
new file mode 100644
index 00000000000..6eaf316bb11
--- /dev/null
+++ b/spec/fixtures/api/schemas/unleash/unleash.json
@@ -0,0 +1,20 @@
+{
+ "additionalProperties": false,
+ "properties": {
+ "features": {
+ "items": {
+ "$ref": "unleash_feature.json"
+ },
+ "minItems": 0,
+ "type": "array"
+ },
+ "version": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "version",
+ "features"
+ ],
+ "type": "object"
+}