summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/branch.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/branch.json')
-rw-r--r--spec/fixtures/api/schemas/branch.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/branch.json b/spec/fixtures/api/schemas/branch.json
new file mode 100644
index 00000000000..0bb74577010
--- /dev/null
+++ b/spec/fixtures/api/schemas/branch.json
@@ -0,0 +1,12 @@
+{
+ "type": "object",
+ "required" : [
+ "name",
+ "url"
+ ],
+ "properties" : {
+ "name": { "type": "string" },
+ "url": { "type": "uri" }
+ },
+ "additionalProperties": false
+}