get_table_schema
Retrieve schema details for a database table, including columns, data types, and optional index information, to understand its structure and relationships.
Instructions
Get schema information for a specific table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | The ID or name of the DBeaver connection | |
includeIndexes | No | Include index information | |
tableName | Yes | The name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "The ID or name of the DBeaver connection",
"type": "string"
},
"includeIndexes": {
"default": true,
"description": "Include index information",
"type": "boolean"
},
"tableName": {
"description": "The name of the table to describe",
"type": "string"
}
},
"required": [
"connectionId",
"tableName"
],
"type": "object"
}