Atlassian · Schema

VersionUnresolvedIssuesCount

Count of a version's unresolved issues.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issuesCount integer Count of issues.
issuesUnresolvedCount integer Count of unresolved issues.
self string The URL of these count details.
View JSON Schema on GitHub

JSON Schema

atlassian-versionunresolvedissuescount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VersionUnresolvedIssuesCount",
  "title": "VersionUnresolvedIssuesCount",
  "additionalProperties": false,
  "description": "Count of a version's unresolved issues.",
  "properties": {
    "issuesCount": {
      "description": "Count of issues.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "issuesUnresolvedCount": {
      "description": "Count of unresolved issues.",
      "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"
  }
}