Atlassian · Schema
PageOfWorklogs
Paginated list of worklog details
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| maxResults | integer | The maximum number of results that could be on the page. |
| startAt | integer | The index of the first item returned on the page. |
| total | integer | The number of results on the page. |
| worklogs | array | List of worklogs. |
JSON Schema
{
"$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"
}