Atlassian · Schema

IssueTypeWithStatus

Status details for an issue type.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the issue type.
name string The name of the issue type.
self string The URL of the issue type's status details.
statuses array List of status details for the issue type.
subtask boolean Whether this issue type represents subtasks.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypewithstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeWithStatus",
  "title": "IssueTypeWithStatus",
  "additionalProperties": false,
  "description": "Status details for an issue type.",
  "properties": {
    "id": {
      "description": "The ID of the issue type.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the issue type.",
      "readOnly": true,
      "type": "string"
    },
    "self": {
      "description": "The URL of the issue type's status details.",
      "readOnly": true,
      "type": "string"
    },
    "statuses": {
      "description": "List of status details for the issue type.",
      "items": {
        "$ref": "#/components/schemas/StatusDetails"
      },
      "readOnly": true,
      "type": "array"
    },
    "subtask": {
      "description": "Whether this issue type represents subtasks.",
      "readOnly": true,
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name",
    "self",
    "statuses",
    "subtask"
  ],
  "type": "object"
}