Member Junction
    Preparing search index...

    Interface TableAnalysisPromptResult

    interface TableAnalysisPromptResult {
        columnDescriptions: ColumnDescriptionPromptResult[];
        confidence: number;
        foreignKeys?: ForeignKeyPromptResult[];
        inferredBusinessDomain?: string;
        parentTableInsights?: ParentTableInsight[];
        primaryKey?: PrimaryKeyPromptResult;
        reasoning: string;
        tableDescription: string;
    }
    Index

    Properties

    columnDescriptions: ColumnDescriptionPromptResult[]
    confidence: number
    foreignKeys?: ForeignKeyPromptResult[]
    inferredBusinessDomain?: string
    parentTableInsights?: ParentTableInsight[]

    LLM-proposed primary key for this table

    reasoning: string
    tableDescription: string