Atlassian · Schema

ChangedWorklogs

List of changed worklogs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
lastPage boolean
nextPage string The URL of the next list of changed worklogs.
self string The URL of this changed worklogs list.
since integer The datetime of the first worklog item in the list.
until integer The datetime of the last worklog item in the list.
values array Changed worklog list.
View JSON Schema on GitHub

JSON Schema

atlassian-changedworklogs-schema.json Raw ↑
{
  "$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"
}