Atlassian · Schema
Votes
The details of votes on an issue.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| hasVoted | boolean | Whether the user making this request has voted on the issue. |
| self | string | The URL of these issue vote details. |
| voters | array | List of the users who have voted on this issue. An empty list is returned when the calling user doesn't have the *View voters and watchers* project permission. |
| votes | integer | The number of votes on the issue. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Votes",
"title": "Votes",
"additionalProperties": false,
"description": "The details of votes on an issue.",
"properties": {
"hasVoted": {
"description": "Whether the user making this request has voted on the issue.",
"readOnly": true,
"type": "boolean"
},
"self": {
"description": "The URL of these issue vote details.",
"format": "uri",
"readOnly": true,
"type": "string"
},
"voters": {
"description": "List of the users who have voted on this issue. An empty list is returned when the calling user doesn't have the *View voters and watchers* project permission.",
"items": {
"$ref": "#/components/schemas/User"
},
"readOnly": true,
"type": "array"
},
"votes": {
"description": "The number of votes on the issue.",
"format": "int64",
"readOnly": true,
"type": "integer"
}
},
"type": "object"
}