The category a status belongs to (e.g. To Do, In Progress, Done).

interface JiraStatusCategory {
    colorName?: string;
    id: number;
    key: string;
    name: string;
    self: string;
}

Properties

colorName?: string

Display color name

id: number

Numeric ID

key: string

Machine-readable key (e.g. 'new', 'indeterminate', 'done')

name: string

Human-readable name

self: string

URL of the status category resource