Get Doc Schema
coda_get_doc_schemaGet the complete schema of a Coda document, including all tables with column types and formulas, in one call.
Instructions
Get the full schema of a Coda document: all tables with their columns, types, and formulas in a single call.
Equivalent to running coda_list_tables + coda_list_columns for every table at once. Especially useful to understand table structure before writing data or debugging formulas.
Args:
doc_id (string): The document ID
response_format: 'markdown' or 'json'
Returns: All tables with their columns (id, name, type, formula if calculated, currency code).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| doc_id | Yes | Coda document ID | |
| response_format | No | Output format: 'markdown' for human-readable, 'json' for machine-readable | markdown |