{
"type": "object",
"properties": {
"queryOptions": {
"title": "queryOptions",
"type": "object",
"properties": {
"skip": {
"$ref": "common-schema#/definitions/skip"
},
"limit": {
"$ref": "common-schema#/definitions/limit"
},
"order": {
"type": "string",
"enum": [
"newest",
"oldest"
],
"default": "newest"
},
"serverId": {
"type": "string",
"description": "The server ID where the device counts came from"
},
"before": {
"type": "integer",
"description": "The timestamp in milliseconds used as an upper range. Should be higher than the after value."
},
"after": {
"type": "integer",
"description": "The timestamp in milliseconds used as a lower range. Should be lower than the after value."
}
}
}
},
"required": [
"queryOptions"
],
"additionalProperties": false
}