{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OperationsResponse", "type": "object", "description": "Response envelope for the response containing multiple operations objects.", "additionalProperties": false, "properties": { "items": { "type": "array", "description": "List of operations objects", "items": { "$ref": "#/components/schemas/OperationsResponseItem" } }, "msg": { "type": "string", "description": "Message indicating the status of the request overall." }, "totalItems": { "type": "integer", "description": "The total number of operations in the database for the given query.", "format": "int32" }, "totalPages": { "type": "integer", "description": "Total number of pages that client can iterate through.", "format": "int32" }, "pageNumber": { "type": "integer", "description": "Current page number.", "format": "int32" }, "ctime": { "type": "integer", "description": "Unix timestamp of when the underlying data was last updated.", "format": "int64" }, "now": { "type": "integer", "description": "Unix timestamp of the current UTC time on the server.", "format": "int64" }, "ptime": { "type": "integer", "description": "Time taken on API server to process the request, in milliseconds.", "format": "int64" } } }