Databricks SDK for JavaScript
    Preparing search index...
    interface Feature {
        catalogName?: string;
        createdAt?: Instant;
        createdBy?: string;
        description?: string;
        entities?: EntityColumn[];
        filterCondition?: string;
        fullName?: string;
        function?: Function;
        inputs?: string[];
        lineageContext?: LineageContext;
        name?: string;
        schemaName?: string;
        source?: DataSource;
        timeseriesColumn?: TimeseriesColumn;
        timeWindow?: TimeWindow;
    }
    Index

    Properties

    catalogName?: string

    Name of parent catalog.

    createdAt?: Instant

    Time at which this feature was created.

    createdBy?: string

    Username of the feature creator.

    description?: string

    The description of the feature.

    entities?: EntityColumn[]

    The entity columns for the feature, used as aggregation keys and for query-time lookup.

    filterCondition?: string

    Deprecated: Use DeltaTableSource.filter_condition or KafkaSource.filter_condition instead. Kept for backwards compatibility. The filter condition applied to the source data before aggregation.

    fullName?: string

    The full three-part name (catalog, schema, name) of the feature. This is the feature's resource identifier; the catalog_name, schema_name, and name fields below are OUTPUT_ONLY decomposed views of this value.

    function?: Function

    The function by which the feature is computed.

    inputs?: string[]

    Deprecated: Use AggregationFunction.inputs instead. Kept for backwards compatibility. The input columns from which the feature is computed.

    lineageContext?: LineageContext

    Lineage context information for this feature. WARNING: This field is primarily intended for internal use by systems and is automatically populated when features are created through notebooks or jobs. Users should not manually set this field as incorrect values may lead to inaccurate lineage tracking or unexpected behavior. This field will be set by feature-engineering client and should be left unset by SDK and terraform users.

    name?: string

    Name of the feature, extracted from the full three-part name (catalog.schema.name).

    schemaName?: string

    Name of parent schema relative to its parent catalog.

    source?: DataSource

    The data source of the feature.

    timeseriesColumn?: TimeseriesColumn

    Column recording time, used for point-in-time joins, backfills, and aggregations.

    timeWindow?: TimeWindow

    Deprecated: Use Function.aggregation_function.time_window instead. Kept for backwards compatibility. The time window in which the feature is computed.