{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PageOfStatuses", "title": "PageOfStatuses", "additionalProperties": false, "properties": { "isLast": { "description": "Whether this is the last page.", "type": "boolean" }, "maxResults": { "description": "The maximum number of items that could be returned.", "format": "int32", "type": "integer" }, "nextPage": { "description": "The URL of the next page of results, if any.", "type": "string" }, "self": { "description": "The URL of this page.", "type": "string" }, "startAt": { "description": "The index of the first item returned on the page.", "format": "int64", "type": "integer" }, "total": { "description": "Number of items that satisfy the search.", "format": "int64", "type": "integer" }, "values": { "description": "The list of items.", "items": { "$ref": "#/components/schemas/JiraStatus" }, "type": "array" } }, "type": "object" }