Interface Milestone

(Deprecated) A Milestone is a collection of Epics that represent a release or some other large initiative that you are working on. Milestones have become Objectives, so you should use Objective-related API resources instead of Milestone ones.

interface Milestone {
    app_url: string;
    archived: boolean;
    categories: Category[];
    completed: boolean;
    completed_at?: string;
    completed_at_override?: string;
    created_at: string;
    description: string;
    entity_type: string;
    global_id: string;
    id: number;
    key_result_ids: string[];
    name: string;
    position: number;
    started: boolean;
    started_at?: string;
    started_at_override?: string;
    state: string;
    stats: MilestoneStats;
    updated_at: string;
}

Properties

app_url: string

The Shortcut application url for the Milestone.

archived: boolean

A boolean indicating whether the Milestone has been archived or not.

categories: Category[]

An array of Categories attached to the Milestone.

completed: boolean

A true/false boolean indicating if the Milestone has been completed.

completed_at?: string

The time/date the Milestone was completed.

date-time

completed_at_override?: string

A manual override for the time/date the Milestone was completed.

date-time

created_at: string

The time/date the Milestone was created.

date-time

description: string

The Milestone's description.

entity_type: string

A string description of this resource.

global_id: string
id: number

The unique ID of the Milestone.

int64

key_result_ids: string[]

The IDs of the Key Results associated with the Objective.

name: string

The name of the Milestone.

position: number

A number representing the position of the Milestone in relation to every other Milestone within the Workspace.

int64

started: boolean

A true/false boolean indicating if the Milestone has been started.

started_at?: string

The time/date the Milestone was started.

date-time

started_at_override?: string

A manual override for the time/date the Milestone was started.

date-time

state: string

The workflow state that the Milestone is in.

A group of calculated values for this Milestone.

updated_at: string

The time/date the Milestone was updated.

date-time