summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/variable.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/variable.json')
-rw-r--r--spec/fixtures/api/schemas/variable.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/variable.json b/spec/fixtures/api/schemas/variable.json
new file mode 100644
index 00000000000..78977118b0a
--- /dev/null
+++ b/spec/fixtures/api/schemas/variable.json
@@ -0,0 +1,16 @@
+{
+ "type": "object",
+ "required": [
+ "id",
+ "key",
+ "value",
+ "protected"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "key": { "type": "string" },
+ "value": { "type": "string" },
+ "protected": { "type": "boolean" }
+ },
+ "additionalProperties": false
+}