Member Junction
    Preparing search index...

    A single rule: set TargetField from Source (optionally transformed), gated by an optional Condition.

    interface FieldRule {
        Condition?: string;
        Source: FieldRuleValueSource;
        TargetField: string;
        Transforms?: TransformStep[];
    }
    Index

    Properties

    Condition?: string

    Optional boolean expression over the record — the rule only applies when it evaluates true.

    How to produce the base value.

    TargetField: string

    The field on the record to set.

    Transforms?: TransformStep[]

    Optional transform pipeline applied to the computed value.