Atlassian · Schema

VersionIssuesStatus

Counts of the number of issues in various statuses.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
done integer Count of issues with status *done*.
inProgress integer Count of issues with status *in progress*.
toDo integer Count of issues with status *to do*.
unmapped integer Count of issues with a status other than *to do*, *in progress*, and *done*.
View JSON Schema on GitHub

JSON Schema

atlassian-versionissuesstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VersionIssuesStatus",
  "title": "VersionIssuesStatus",
  "additionalProperties": true,
  "description": "Counts of the number of issues in various statuses.",
  "properties": {
    "done": {
      "description": "Count of issues with status *done*.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "inProgress": {
      "description": "Count of issues with status *in progress*.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "toDo": {
      "description": "Count of issues with status *to do*.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "unmapped": {
      "description": "Count of issues with a status other than *to do*, *in progress*, and *done*.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}