Atlassian · Schema

IssueArchivalSyncResponse

Number of archived/unarchived issues and list of errors that occurred during the action, if any.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
errors object
numberOfIssuesUpdated integer
View JSON Schema on GitHub

JSON Schema

atlassian-issuearchivalsyncresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueArchivalSyncResponse",
  "title": "IssueArchivalSyncResponse",
  "additionalProperties": false,
  "description": "Number of archived/unarchived issues and list of errors that occurred during the action, if any.",
  "properties": {
    "errors": {
      "$ref": "#/components/schemas/Errors"
    },
    "numberOfIssuesUpdated": {
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}