Atlassian · Schema

BulkIssueIsWatching

A container for the watch status of a list of issues.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issuesIsWatching object The map of issue ID to boolean watch status.
View JSON Schema on GitHub

JSON Schema

atlassian-bulkissueiswatching-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkIssueIsWatching",
  "title": "BulkIssueIsWatching",
  "additionalProperties": false,
  "description": "A container for the watch status of a list of issues.",
  "properties": {
    "issuesIsWatching": {
      "additionalProperties": {
        "readOnly": true,
        "type": "boolean"
      },
      "description": "The map of issue ID to boolean watch status.",
      "readOnly": true,
      "type": "object"
    }
  },
  "type": "object"
}