Atlassian · Schema
PageOfChangelogs
A page of changelogs.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| histories | array | The list of changelogs. |
| 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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PageOfChangelogs",
"title": "PageOfChangelogs",
"additionalProperties": false,
"description": "A page of changelogs.",
"properties": {
"histories": {
"description": "The list of changelogs.",
"items": {
"$ref": "#/components/schemas/Changelog"
},
"readOnly": true,
"type": "array"
},
"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"
}
},
"type": "object"
}