Update schema to validate {notifications} contains a {links} object with expected properties

This commit is contained in:
Imdad Ahad
2016-09-16 14:56:14 +01:00
parent cebbb2077c
commit 5b0162cc60

View File

@@ -14,7 +14,14 @@
},
"links": {
"type": "object",
"additionalProperties": false
"properties" : {
"last": {
"type" : "string"
},
"next" : {
"type" : "string"
}
}
},
"page_size": {"type": "number"},
"total": {"type": "number"}