Member Junction
    Preparing search index...

    A candidate document with an ID, score, and optional metadata. Used as both input to and output from RRF fusion.

    interface ScoredCandidate {
        ID: string;
        Metadata?: Record<string, unknown>;
        Score: number;
    }
    Index

    Properties

    Properties

    ID: string

    Unique identifier for the candidate (e.g., record ID)

    Metadata?: Record<string, unknown>

    Optional metadata preserved through fusion

    Score: number

    Relevance score — interpretation varies by source system