Atlassian · Schema

Changelog

A log of changes made to issue fields. Changelogs related to workflow associations are currently being deprecated.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
author object The user who made the change.
created string The date on which the change took place.
historyMetadata object The history metadata associated with the changed.
id string The ID of the changelog.
items array The list of items changed.
View JSON Schema on GitHub

JSON Schema

atlassian-changelog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Changelog",
  "title": "Changelog",
  "additionalProperties": false,
  "description": "A log of changes made to issue fields. Changelogs related to workflow associations are currently being deprecated.",
  "properties": {
    "author": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserDetails"
        }
      ],
      "description": "The user who made the change.",
      "readOnly": true
    },
    "created": {
      "description": "The date on which the change took place.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "historyMetadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HistoryMetadata"
        }
      ],
      "description": "The history metadata associated with the changed.",
      "readOnly": true
    },
    "id": {
      "description": "The ID of the changelog.",
      "readOnly": true,
      "type": "string"
    },
    "items": {
      "description": "The list of items changed.",
      "items": {
        "$ref": "#/components/schemas/ChangeDetails"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}