Details of a status.

interface JiraStatus {
    description?: string;
    id?: string;
    name?: string;
    scope?: StatusScope;
    statusCategory?: "TODO" | "IN_PROGRESS" | "DONE";
    usages?: null | (null | ProjectIssueTypes)[];
    workflowUsages?: null | (null | WorkflowUsages)[];
}

Properties

description?: string

The description of the status.

id?: string

The ID of the status.

name?: string

The name of the status.

scope?: StatusScope

The scope of the status.

statusCategory?: "TODO" | "IN_PROGRESS" | "DONE"

The category of the status.

usages?: null | (null | ProjectIssueTypes)[]

Deprecated. See the deprecation notice for details.

Projects and issue types where the status is used. Only available if the usages expand is requested.

workflowUsages?: null | (null | WorkflowUsages)[]

Deprecated. See the deprecation notice for details.

The workflows that use this status. Only available if the workflowUsages expand is requested.