Member Junction
    Preparing search index...

    A dated source supplying time-relative ("as-of") features for the target records. Each row carries the record it belongs to (via ForeignKeyField) and a date column used for point-in-time filtering.

    interface DatedSourceSpec {
        DateField: string;
        EntityName: string;
        Features: DatedFeatureSpec[];
        ForeignKeyField: string;
    }
    Index

    Properties

    DateField: string

    Date column on the dated rows used for as-of filtering.

    EntityName: string

    Entity to read the dated rows from (e.g. an Activities entity).

    Features: DatedFeatureSpec[]

    Which as-of features to emit from this dated source. Each entry names the output column and the aggregate kind to compute as-of the decision date.

    ForeignKeyField: string

    Column on the dated rows that references the target record's primary key.