Member Junction
    Preparing search index...

    Auto-generated card template based on entity metadata

    interface CardTemplate {
        badgeField: string | null;
        descriptionField: string | null;
        displayFields: CardDisplayField[];
        subtitleField: string | null;
        thumbnailFields: string[];
        titleFields: string[];
    }
    Index

    Properties

    badgeField: string | null

    Badge/priority field name

    descriptionField: string | null

    Description/notes field name

    displayFields: CardDisplayField[]

    Display fields with type information for smart rendering

    subtitleField: string | null

    Secondary subtitle field name

    thumbnailFields: string[]

    Array of thumbnail field names in priority order Per-record fallback: if the first field is empty, try the next, etc.

    titleFields: string[]

    One or more field names that together form the card title. Multiple IsNameField fields are combined with spaces (e.g., ["FirstName", "LastName"] → "Elizabeth Rodriguez").