The payload for customising a swimlanes on a board

interface SwimlanesPayload {
    customSwimlanes?: SwimlanePayload[];
    defaultCustomSwimlaneName?: string;
    swimlaneStrategy?:
        | "none"
        | "custom"
        | "assignee"
        | "project"
        | "parentChild"
        | "assigneeUnassignedFirst"
        | "epic"
        | "issueparent"
        | "issuechildren"
        | "request_type";
}

Properties

customSwimlanes?: SwimlanePayload[]

The custom swimlane definitions.

defaultCustomSwimlaneName?: string

The name of the custom swimlane to use for work items that don't match any other swimlanes.

swimlaneStrategy?:
    | "none"
    | "custom"
    | "assignee"
    | "project"
    | "parentChild"
    | "assigneeUnassignedFirst"
    | "epic"
    | "issueparent"
    | "issuechildren"
    | "request_type"

The swimlane strategy for the board.