describe_table
Retrieve detailed metadata for an Airtable table, including structure and fields, using a secure OAuth 2.0 authenticated interface.
Instructions
Get detailed information about a specific table
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| base_id | Yes | The Airtable base ID | |
| table_id | Yes | The table ID or name | 
Input Schema (JSON Schema)
{
  "properties": {
    "base_id": {
      "description": "The Airtable base ID",
      "title": "Base Id",
      "type": "string"
    },
    "table_id": {
      "description": "The table ID or name",
      "title": "Table Id",
      "type": "string"
    }
  },
  "required": [
    "base_id",
    "table_id"
  ],
  "type": "object"
}