Member Junction
    Preparing search index...

    Represents a record's state at a specific point in time.

    interface RecordSnapshot {
        ChangedAt: Date;
        EntityID: string;
        EntityName: string;
        FullRecordJSON: Record<string, unknown>;
        RecordChangeID: string;
        RecordID: string;
    }
    Index

    Properties

    ChangedAt: Date

    When the snapshot was taken

    EntityID: string

    Entity ID

    EntityName: string

    Entity name

    FullRecordJSON: Record<string, unknown>

    Full record data as parsed JSON

    RecordChangeID: string

    The RecordChange ID this snapshot came from

    RecordID: string

    Record primary key as concatenated string