get_table_schema
Retrieve the complete schema for a single Airtable table, including all fields with type options and views. Faster than getting the full base schema when you need just one table.
Instructions
Get the full schema for a single table — all fields (with typeOptions) and views. Use instead of get_base_schema when you only need one table (faster, less context). Use list_fields when you need fields only without view data. Returns { id, name, fields: [...], views: [...] }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The Airtable base/application ID | |
| tableIdOrName | Yes | The table ID (e.g. "tblXXX") or exact table name | |
| debug | No | When true, include raw Airtable response in output for diagnostics |