Atlassian · Schema

IssueFilterForBulkPropertySet

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 operation on.
hasProperty boolean Whether the bulk operation occurs only when the property is present on or absent from an issue.
View JSON Schema on GitHub

JSON Schema

atlassian-issuefilterforbulkpropertyset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueFilterForBulkPropertySet",
  "title": "IssueFilterForBulkPropertySet",
  "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 operation on.",
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array",
      "uniqueItems": true
    },
    "hasProperty": {
      "description": "Whether the bulk operation occurs only when the property is present on or absent from an issue.",
      "type": "boolean"
    }
  },
  "type": "object"
}