Atlassian · Schema
Watchers
The details of watchers on an issue.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| isWatching | boolean | Whether the calling user is watching this issue. |
| self | string | The URL of these issue watcher details. |
| watchCount | integer | The number of users watching this issue. |
| watchers | array | Details of the users watching this issue. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Watchers",
"title": "Watchers",
"additionalProperties": false,
"description": "The details of watchers on an issue.",
"properties": {
"isWatching": {
"description": "Whether the calling user is watching this issue.",
"readOnly": true,
"type": "boolean"
},
"self": {
"description": "The URL of these issue watcher details.",
"readOnly": true,
"type": "string"
},
"watchCount": {
"description": "The number of users watching this issue.",
"format": "int32",
"readOnly": true,
"type": "integer"
},
"watchers": {
"description": "Details of the users watching this issue.",
"items": {
"$ref": "#/components/schemas/UserDetails"
},
"readOnly": true,
"type": "array"
}
},
"type": "object",
"xml": {
"name": "watchers"
}
}