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