Scorable TypeScript SDK - v0.12.1
    Preparing search index...

    Interface CreateAnnotationData

    interface CreateAnnotationData {
        datasetItemId?: string;
        executionLogId?: string;
        value?: number;
        category?: string;
        rationale?: string;
        status?: "draft" | "published";
        scoreConfigId?: string;
    }
    Index
    datasetItemId?: string

    The dataset item to annotate (mutually exclusive with executionLogId).

    executionLogId?: string

    The execution log to annotate (mutually exclusive with datasetItemId).

    value?: number

    The score for continuous configs.

    category?: string

    The label for binary/categorical configs.

    rationale?: string
    status?: "draft" | "published"

    draft or published (default published).

    scoreConfigId?: string

    The score config; defaults to the global identity "Score" config.