Atlassian · Schema

ChangedWorklog

Details of a changed worklog.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
properties array Details of properties associated with the change.
updatedTime integer The datetime of the change.
worklogId integer The ID of the worklog.
View JSON Schema on GitHub

JSON Schema

atlassian-changedworklog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangedWorklog",
  "title": "ChangedWorklog",
  "additionalProperties": false,
  "description": "Details of a changed worklog.",
  "properties": {
    "properties": {
      "description": "Details of properties associated with the change.",
      "items": {
        "$ref": "#/components/schemas/EntityProperty"
      },
      "readOnly": true,
      "type": "array"
    },
    "updatedTime": {
      "description": "The datetime of the change.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "worklogId": {
      "description": "The ID of the worklog.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}