Member Junction
    Preparing search index...

    Interface PredictiveStudioScoringScope

    The scope of records to score. Mirrors the Record Set Processing scope shapes (records / view / list / filter / single). Exactly one shape should be populated; the runner resolves it into a concrete record set.

    interface PredictiveStudioScoringScope {
        filter?: { entityName: string; extraFilter?: string; maxRows?: number };
        listId?: string;
        records?: (string | Record<string, unknown>)[];
        single?: { entityName: string; primaryKey: Record<string, unknown> };
        viewId?: string;
    }
    Index

    Properties

    filter?: { entityName: string; extraFilter?: string; maxRows?: number }

    An entity name + SQL filter selecting the rows to score.

    listId?: string

    A Lists id whose member rows are scored.

    records?: (string | Record<string, unknown>)[]

    Explicit record ids / primary-key objects to score.

    single?: { entityName: string; primaryKey: Record<string, unknown> }

    A single record (entity + primary key) to score.

    viewId?: string

    A User Views id whose rows are scored.