{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PageOfWorklogs", "title": "PageOfWorklogs", "additionalProperties": true, "description": "Paginated list of worklog details", "properties": { "maxResults": { "description": "The maximum number of results that could be on the page.", "format": "int32", "readOnly": true, "type": "integer" }, "startAt": { "description": "The index of the first item returned on the page.", "format": "int32", "readOnly": true, "type": "integer" }, "total": { "description": "The number of results on the page.", "format": "int32", "readOnly": true, "type": "integer" }, "worklogs": { "description": "List of worklogs.", "items": { "$ref": "#/components/schemas/Worklog" }, "readOnly": true, "type": "array" } }, "type": "object" }