Details of a status.

interface JiraWorkflowStatus {
    description?: string;
    id?: string;
    name?: string;
    scope?: WorkflowScope;
    statusCategory?: "TODO" | "IN_PROGRESS" | "DONE";
    statusReference?: string;
    usages?: null | (null | ProjectIssueTypes)[];
}

Properties

description?: string

The description of the status.

id?: string

The ID of the status.

name?: string

The name of the status.

The scope of the workflow.

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

The category of the status.

statusReference?: string

The reference of the status.

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

Deprecated. See the deprecation notice for details.

The statuses.usages expand is an optional parameter that can be used when reading and updating statuses in Jira. It provides additional information about the projects and issue types associated with the requested statuses.