Member Junction
    Preparing search index...

    A single search result item returned from a unified search.

    interface SimpleSearchResultItem {
        EntityIcon?: string;
        EntityName: string;
        ID: string;
        MatchedAt: string;
        ProviderIcon?: string;
        ProviderId?: string;
        ProviderLabel?: string;
        RawMetadata?: string;
        RecordID: string;
        RecordName?: string;
        ResultType: string;
        Score: number;
        ScoreBreakdown: {
            Entity?: number;
            FullText?: number;
            Storage?: number;
            Vector?: number;
        };
        Snippet: string;
        SourceType: string;
        Tags: string[];
        Title: string;
    }
    Index

    Properties

    EntityIcon?: string

    Icon class for the entity

    EntityName: string

    The entity name this result belongs to

    ID: string

    Unique identifier for this search result

    MatchedAt: string

    ISO timestamp of when the match was found

    ProviderIcon?: string

    Font Awesome icon class from the SearchProvider metadata

    ProviderId?: string

    ID of the SearchProvider metadata record that produced this result

    ProviderLabel?: string

    Display label from the SearchProvider metadata

    RawMetadata?: string

    Raw metadata JSON from the search provider

    RecordID: string

    The primary key of the matched record

    RecordName?: string

    Human-readable name of the matched record

    ResultType: string

    Discriminator for UI rendering: 'entity-record', 'storage-file', or 'content-item'

    Score: number

    Overall relevance score (0-1)

    ScoreBreakdown: {
        Entity?: number;
        FullText?: number;
        Storage?: number;
        Vector?: number;
    }

    Breakdown of the score by source type

    Snippet: string

    A snippet of matching text or content preview

    SourceType: string

    The source type that produced this result: 'Vector', 'FullText', 'Entity', 'Storage'

    Tags: string[]

    Tags associated with this result

    Title: string

    Display title for the result