describe_table
Analyze table structures by listing columns and their data types within a specified data source for better data understanding and query optimization.
Instructions
Lists columns and their types in the specified table of specified data source.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source_id | Yes | The data source | |
table_name | Yes | The table in the data source |
Input Schema (JSON Schema)
{
"properties": {
"source_id": {
"description": "The data source",
"title": "Source Id",
"type": "string"
},
"table_name": {
"description": "The table in the data source",
"title": "Table Name",
"type": "string"
}
},
"required": [
"source_id",
"table_name"
],
"type": "object"
}