Databricks SDK for JavaScript
    Preparing search index...
    interface Feature {
        catalogName?: string;
        createdAt?: Instant;
        createdBy?: string;
        description?: string;
        entities?: EntityColumn[];
        fullName?: string;
        function?: Function;
        lineageContext?: LineageContext;
        name?: string;
        schemaName?: string;
        source?: DataSource;
        timeseriesColumn?: TimeseriesColumn;
    }
    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.

    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.

    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.