Details of a workflow.

interface JiraWorkflow {
    created?: null | string;
    description?: string;
    id?: string;
    isEditable?: boolean;
    name?: string;
    scope?: WorkflowScope;
    startPointLayout?: null | WorkflowLayout;
    statuses?: WorkflowReferenceStatus[];
    taskId?: null | string;
    transitions?: WorkflowTransitions[];
    updated?: null | string;
    usages?: null | (null | ProjectIssueTypes)[];
    version?: DocumentVersion;
}

Properties

created?: null | string

The creation date of the workflow.

description?: string

The description of the workflow.

id?: string

The ID of the workflow.

isEditable?: boolean

Indicates if the workflow can be edited.

name?: string

The name of the workflow.

The scope of the workflow.

startPointLayout?: null | WorkflowLayout

The starting point for the statuses in the workflow.

The statuses referenced in this workflow.

taskId?: null | string

If there is a current asynchronous task operation for this workflow.

transitions?: WorkflowTransitions[]

The transitions of the workflow. Note that a transition can have either the deprecated to/from fields or the toStatusReference/links fields, but never both nor a combination.

updated?: null | string

The last edited date of the workflow.

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

Deprecated. See the deprecation notice for details.

Use the optional workflows.usages expand to get additional information about the projects and issue types associated with the requested workflows.

version?: DocumentVersion

The current version details of this workflow scheme.