@shortcut/client
    Preparing search index...

    Interface ObjectiveSearchResult

    A Milestone in search results. This is typed differently from Milestone because the details=slim search argument will omit some fields.

    interface ObjectiveSearchResult {
        app_url: string;
        archived: boolean;
        categories: Category[];
        completed: boolean;
        completed_at?: null | string;
        completed_at_override?: null | 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?: null | string;
        started_at_override?: null | string;
        state: string;
        stats: MilestoneStats;
        updated_at: string;
    }
    Index

    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?: null | string

    The time/date the Milestone was completed.

    date-time

    completed_at_override?: null | 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?: null | string

    The time/date the Milestone was started.

    date-time

    started_at_override?: null | 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