A Jira Software sprint.

interface JiraSprint {
    completeDate?: string;
    endDate?: string;
    goal?: string;
    id: number;
    name: string;
    originBoardId?: number;
    self: string;
    startDate?: string;
    state: "future" | "active" | "closed";
}

Properties

completeDate?: string

ISO 8601 date the sprint was completed

endDate?: string

ISO 8601 end date

goal?: string

Sprint goal

id: number

Numeric sprint ID

name: string

Sprint name

originBoardId?: number

ID of the board this sprint belongs to

self: string

URL of the sprint resource

startDate?: string

ISO 8601 start date

state: "future" | "active" | "closed"

Sprint state: 'future', 'active', or 'closed'