Atlassian · Schema

IssueFilterForBulkPropertyDelete

Bulk operation filter details.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
currentValue object The value of properties to perform the bulk operation on.
entityIds array List of issues to perform the bulk delete operation on.
View JSON Schema on GitHub

JSON Schema

atlassian-issuefilterforbulkpropertydelete-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueFilterForBulkPropertyDelete",
  "title": "IssueFilterForBulkPropertyDelete",
  "additionalProperties": false,
  "description": "Bulk operation filter details.",
  "properties": {
    "currentValue": {
      "description": "The value of properties to perform the bulk operation on."
    },
    "entityIds": {
      "description": "List of issues to perform the bulk delete operation on.",
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "type": "object"
}