describe_table
Retrieve the structure of a PostgreSQL table, including column names, data types, and schema details, using schema and table name inputs.
Instructions
Get table structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | No | Schema name (default: public) | |
table | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"description": "Schema name (default: public)",
"type": "string"
},
"table": {
"description": "Table name",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}