Langfuse JS/TS SDKs
    Preparing search index...
    interface Boolean {
        authorUserId?: null | string;
        comment?: null | string;
        configId?: null | string;
        createdAt: string;
        dataType: "BOOLEAN";
        environment: string;
        id: string;
        metadata?: Record<string, unknown>;
        name: string;
        projectId: string;
        queueId?: null | string;
        source: ScoreSource;
        subject?: ScoreSubjectV3;
        timestamp: string;
        updatedAt: string;
        value: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    authorUserId?: null | string

    The user who created this score, if available. Present when "annotation" is included in the fields parameter.

    comment?: null | string

    Optional comment attached to the score. Present when "details" is included in the fields parameter.

    configId?: null | string

    The score config ID, if this score was created from a config. Present when "details" is included in the fields parameter.

    createdAt: string
    dataType: "BOOLEAN"
    environment: string

    The environment from which this score originated.

    id: string
    metadata?: Record<string, unknown>

    Arbitrary metadata attached to the score. Present when "details" is included in the fields parameter.

    name: string
    projectId: string
    queueId?: null | string

    The annotation queue this score belongs to, if any. Present when "annotation" is included in the fields parameter.

    source: ScoreSource
    subject?: ScoreSubjectV3

    The entity this score is attached to (trace, observation, session, or experiment). Present when "subject" is included in the fields parameter.

    timestamp: string
    updatedAt: string
    value: boolean

    The boolean value of the score.