{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChangedWorklogs", "title": "ChangedWorklogs", "additionalProperties": false, "description": "List of changed worklogs.", "properties": { "lastPage": { "type": "boolean" }, "nextPage": { "description": "The URL of the next list of changed worklogs.", "format": "uri", "readOnly": true, "type": "string" }, "self": { "description": "The URL of this changed worklogs list.", "format": "uri", "readOnly": true, "type": "string" }, "since": { "description": "The datetime of the first worklog item in the list.", "format": "int64", "readOnly": true, "type": "integer" }, "until": { "description": "The datetime of the last worklog item in the list.", "format": "int64", "readOnly": true, "type": "integer" }, "values": { "description": "Changed worklog list.", "items": { "$ref": "#/components/schemas/ChangedWorklog" }, "readOnly": true, "type": "array" } }, "type": "object" }