ScoreConfig Configuration for a score

interface ApiScoreConfig {
    categories?: null | ApiConfigCategory[];
    createdAt: string;
    dataType: ApiScoreDataType;
    description?: null | string;
    id: string;
    isArchived: boolean;
    maxValue?: null | number;
    minValue?: null | number;
    name: string;
    projectId: string;
    updatedAt: string;
}

Properties

categories?: null | ApiConfigCategory[]

Configures custom categories for categorical scores

createdAt: string

date-time

description?: null | string
id: string
isArchived: boolean

Whether the score config is archived. Defaults to false

maxValue?: null | number

Sets maximum value for numerical scores. If not set, the maximum value defaults to +∞

double

minValue?: null | number

Sets minimum value for numerical scores. If not set, the minimum value defaults to -∞

double

name: string
projectId: string
updatedAt: string

date-time