Details of a workflow status.

interface WorkflowStatus {
    id: string;
    name: string;
    properties?: {
        [key: string]: unknown;
    };
}

Properties

Properties

id: string

The ID of the issue status.

name: string

The name of the status in the workflow.

properties?: {
    [key: string]: unknown;
}

Additional properties that modify the behavior of issues in this status. Supports the properties jira.issue.editable and issueEditable (deprecated) that indicate whether issues are editable.

Type declaration

  • [key: string]: unknown

    Additional properties that modify the behavior of issues in this status. Supports the properties jira.issue.editable and issueEditable (deprecated) that indicate whether issues are editable.