Skip to content

featurebyte.Table.columns_info

columns_info: List[ColumnInfo]

Description

Provides information about the columns in the table such as column name, column type, entity ID associated with the column, semantic ID associated with the column, and the critical data information associated with the column.

Returns

  • List[ColumnInfo]
    List of column information.

Examples

>>> event_table = catalog.get_table("GROCERYINVOICE")
>>> column_info = event_table.columns_info

See Also