Member Junction
    Preparing search index...

    One record loaded for comparison. The Key correlates this record back to the input column index; Values is a plain map of fieldName → value for that record.

    interface RecordComparisonRecord {
        ColumnIndex: number;
        Key: CompositeKey;
        Label: string;
        Values: Record<string, RecordFieldValue>;
    }
    Index

    Properties

    ColumnIndex: number

    Zero-based index aligned with the input Keys array (the comparison column).

    The composite key identifying this record (as supplied in the input).

    Label: string

    A human-readable label for the record (name-field value when available, else the key).

    Values: Record<string, RecordFieldValue>

    Plain field-name → value map for this record (only the compared fields).