A status entry returned by GET /rest/api/latest/project/{key}/statuses.

interface JiraProjectStatus {
    id: string;
    name: string;
    self: string;
    statuses: JiraStatus[];
    subtask: boolean;
}

Properties

id: string

Issue type ID

name: string

Issue type name

self: string

URL of the issue type resource

statuses: JiraStatus[]

Statuses available for this issue type

subtask: boolean

Whether the issue type is a subtask