describe_table
Retrieve the structure of a PostgreSQL table, including columns and data types, to analyze and understand database schema details.
Instructions
Get the structure of a database table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes | ||
table | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"schema": {
"maxLength": 63,
"minLength": 1,
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
"type": "string"
},
"table": {
"maxLength": 63,
"minLength": 1,
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
"type": "string"
}
},
"required": [
"schema",
"table"
],
"type": "object"
}