A Jira Software board (Scrum or Kanban).

interface JiraBoard {
    filter?: JiraBoardFilter;
    id: number;
    location?: {
        avatarURI?: string;
        displayName?: string;
        name?: string;
        projectId?: number;
        projectKey?: string;
        projectName?: string;
        projectTypeKey?: string;
    };
    name: string;
    self: string;
    type: "scrum"
    | "kanban";
}

Properties

Filter configuration for the board

id: number

Numeric board ID

location?: {
    avatarURI?: string;
    displayName?: string;
    name?: string;
    projectId?: number;
    projectKey?: string;
    projectName?: string;
    projectTypeKey?: string;
}

The location (project) this board belongs to

name: string

Board name

self: string

URL of the board resource

type: "scrum" | "kanban"

Board type: 'scrum' or 'kanban'