Member Junction
    Preparing search index...

    Fields shared by every step in the DAG. Inputs lists the ids of upstream steps whose output feeds this step — this is what makes the structure a DAG rather than an ordered list.

    interface FeatureStepBase {
        Id: string;
        Inputs?: string[];
        Kind: FeatureStepKind;
        Label?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Id: string

    Stable id for this step, referenced by downstream steps' Inputs.

    Inputs?: string[]

    Ids of upstream steps that feed this step (DAG edges).

    Discriminator selecting the concrete step variant.

    Label?: string

    Optional human-readable label for the visual DAG.