Member Junction
    Preparing search index...

    LLM's assessment of whether a column is an enum/value-list. Returned as part of the table-analysis prompt response.

    interface ValueListResult {
        confidence: number;
        isEnum: boolean;
        reasoning: string;
        type: "List" | "ListOrUserEntry";
        values: string[];
    }
    Index

    Properties

    confidence: number
    isEnum: boolean
    reasoning: string
    type: "List" | "ListOrUserEntry"
    values: string[]