Atlassian · Schema

IssueChangelogIds

A list of changelog IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
changelogIds array The list of changelog IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-issuechangelogids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueChangelogIds",
  "title": "IssueChangelogIds",
  "additionalProperties": false,
  "description": "A list of changelog IDs.",
  "properties": {
    "changelogIds": {
      "description": "The list of changelog IDs.",
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "changelogIds"
  ],
  "type": "object"
}