get_table_metadata
Retrieve comprehensive metadata for a specific table, including its database identifier and column details, to streamline data management and analysis.
Instructions
Get detailed information about a specific table including its DB identifier and column information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_id | Yes | Unique ID of the table. |
Input Schema (JSON Schema)
{
"properties": {
"table_id": {
"description": "Unique ID of the table.",
"title": "Table Id",
"type": "string"
}
},
"required": [
"table_id"
],
"title": "get_table_metadataArguments",
"type": "object"
}