get_base_schema
Retrieve the complete schema of an Airtable base, listing all tables and fields. Supports optional caching for large bases to fetch data in chunks.
Instructions
Get complete base schema including all tables and fields. For large schemas, returns a cache ID to fetch data in chunks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base_id | No | ID of the base | |
| cache_id | No | Cache ID from a previous fetch (use with chunk_offset) | |
| chunk_offset | No | Chunk number to retrieve (0-based, use with cache_id) | |
| table_ids | No | Optional array of specific table IDs to include in the schema. If not provided, all tables will be included. | |
| use_cache | No | Use caching for large schemas (default: true for full base schemas) |