describe_table
Retrieve schema information for a specific Snowflake table, including column details and data types, to understand table structure and support database operations.
Instructions
Get the schema information for a specific table
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| table_name | Yes | Fully qualified table name in the format 'database.schema.table' | 
Input Schema (JSON Schema)
{
  "properties": {
    "table_name": {
      "description": "Fully qualified table name in the format 'database.schema.table'",
      "type": "string"
    }
  },
  "required": [
    "table_name"
  ],
  "type": "object"
}