Atlassian · Schema
VersionIssueCounts
Various counts of issues within a version.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| customFieldUsage | array | List of custom fields using the version. |
| issueCountWithCustomFieldsShowingVersion | integer | Count of issues where a version custom field is set to the version. |
| issuesAffectedCount | integer | Count of issues where the `affectedVersion` is set to the version. |
| issuesFixedCount | integer | Count of issues where the `fixVersion` is set to the version. |
| self | string | The URL of these count details. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VersionIssueCounts",
"title": "VersionIssueCounts",
"additionalProperties": false,
"description": "Various counts of issues within a version.",
"properties": {
"customFieldUsage": {
"description": "List of custom fields using the version.",
"items": {
"$ref": "#/components/schemas/VersionUsageInCustomField"
},
"readOnly": true,
"type": "array"
},
"issueCountWithCustomFieldsShowingVersion": {
"description": "Count of issues where a version custom field is set to the version.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"issuesAffectedCount": {
"description": "Count of issues where the `affectedVersion` is set to the version.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"issuesFixedCount": {
"description": "Count of issues where the `fixVersion` is set to the version.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"self": {
"description": "The URL of these count details.",
"format": "uri",
"readOnly": true,
"type": "string"
}
},
"type": "object",
"xml": {
"name": "version"
}
}