Databricks SDK for JavaScript
    Preparing search index...

    A single field definition within a FlatSchema, specifying the field name and its scalar data type. Does not support nested or complex types (arrays, maps, structs).

    interface FieldDefinition {
        dataType?: ScalarDataType;
        name?: string;
    }
    Index

    Properties

    Properties

    dataType?: ScalarDataType

    The scalar data type of the field.

    name?: string

    The name of the field.