BaseScore

interface ApiBaseScore {
    authorUserId?: null | string;
    comment?: null | string;
    configId?: null | string;
    createdAt: string;
    id: string;
    name: string;
    observationId?: null | string;
    queueId?: null | string;
    source: ApiScoreSource;
    timestamp: string;
    traceId: string;
    updatedAt: string;
}

Properties

authorUserId?: null | string
comment?: null | string
configId?: null | string

Reference a score config on a score. When set, config and score name must be equal and value must comply to optionally defined numerical range

createdAt: string

date-time

id: string
name: string
observationId?: null | string
queueId?: null | string

Reference an annotation queue on a score. Populated if the score was initially created in an annotation queue.

timestamp: string

date-time

traceId: string
updatedAt: string

date-time