{ "$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" }