@shortcut/client
    Preparing search index...

    Interface KeyResult

    interface KeyResult {
        created_at?: string;
        current_observed_value?: KeyResultValue;
        current_target_value?: KeyResultValue;
        entity_type?: "key-result";
        id?: string;
        initial_observed_value?: KeyResultValue;
        name?: string;
        objective?: ObjectiveSlim;
        progress?: number;
        type?: "boolean" | "percent" | "numeric";
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    created_at?: string

    The time/date the Key Result was created.

    date-time

    current_observed_value?: KeyResultValue

    The starting observed value of the Key Result.

    current_target_value?: KeyResultValue

    The starting observed value of the Key Result.

    entity_type?: "key-result"

    The type of this entity.

    id?: string

    The unique ID of the Key Result.

    uuid

    initial_observed_value?: KeyResultValue

    The starting observed value of the Key Result.

    name?: string

    The name of the Key Result.

    1024

    objective?: ObjectiveSlim
    progress?: number

    A percentage (0-100) indicating progress toward the target value.

    int64

    type?: "boolean" | "percent" | "numeric"

    The type of this Key Result's values.

    updated_at?: string

    The time/date the Key Result was last updated.

    date-time

    uri?: string

    A resolvable URI for the Key Result.

    2048

    ^https?://.+$