Atlassian · Schema

ComponentIssuesCount

Count of issues assigned to a component.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueCount integer The count of issues assigned to a component.
self string The URL for this count of issues for a component.
View JSON Schema on GitHub

JSON Schema

atlassian-componentissuescount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComponentIssuesCount",
  "title": "ComponentIssuesCount",
  "additionalProperties": false,
  "description": "Count of issues assigned to a component.",
  "properties": {
    "issueCount": {
      "description": "The count of issues assigned to a component.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "self": {
      "description": "The URL for this count of issues for a component.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "component"
  }
}