couch-simple-0.0.1.0: test/schema/schema/get--db-_changes.json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The value returned by GET /{db}/_changes",
"properties": {
"last_seq": {
"type": "number"
},
"results": {
"items": {
"properties": {
"changes": {
"items": {
"rev": {
"type": "string"
},
"required": ["rev"],
"type": "object"
},
"type": "array"
},
"id": {
"type": "string"
},
"seq": {
"type": "string"
}
},
"required": ["changes", "id", "seq"],
"type": "object"
},
"type": "array"
}
},
"required": ["last_seq", "results"],
"title": "CouchDB _changes",
"type": "object"
}