get_table_properties
Retrieve detailed properties of a specific table within an Iceberg data lakehouse, including metadata and schema information, for streamlined data management and analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | Yes | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"title": "Namespace",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"namespace",
"table_name"
],
"title": "get_table_propertiesArguments",
"type": "object"
}