DataTableMetadata
Provides complete metadata for a data table, including schema, timestamps, ownership, and visibility. Use this model to inspect table details and provenance.
DataTableMetadata
Represents metadata for a data table.
Attributes:
| Name | Type | Description |
|---|---|---|
table_name |
str
|
The name of the table. |
display_name |
str
|
The display name of the table. |
user_id |
int
|
The ID of the user associated with the table. |
created_on |
str
|
The creation timestamp of the table. |
last_updated |
str
|
The last update timestamp of the table. |
table_type |
str
|
The type of the table (e.g., temporary, permanent). |
visibility |
str
|
The visibility of the table (e.g., public, private). |
database_schema |
DatabaseSchema
|
The schema of the database associated with the table. |
to_dataframe() -> pd.DataFrame
Return metadata as a pandas DataFrame.
to_list() -> list[Any]
Return metadata as a list of dicts.