Add additionalProperties to links object

This commit is contained in:
Imdad Ahad
2016-09-21 09:47:50 +01:00
parent afd381badf
commit 23998a4d55

View File

@@ -15,16 +15,17 @@
"links": { "links": {
"type": "object", "type": "object",
"properties" : { "properties" : {
"last": { "prev" : {
"type" : "string" "type" : "string"
}, },
"next" : { "next" : {
"type" : "string" "type" : "string"
}, },
"prev" : { "last": {
"type" : "string" "type" : "string"
} }
} },
"additionalProperties": false
}, },
"page_size": {"type": "number"}, "page_size": {"type": "number"},
"total": {"type": "number"} "total": {"type": "number"}