describe_table
Retrieve table structure details including columns, data types, and constraints to understand database schema organization and relationships.
Instructions
Get detailed information about a table including columns, data types, and constraints
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | No | Schema owner (optional) | |
table_name | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"default": null,
"description": "Schema owner (optional)",
"type": "string"
},
"table_name": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}