{
"$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"
}