/** * This file was auto-generated by Fern from our API Definition. */ /** * Airtable Field definition (column schema) */ export interface AirtableField { /** Field name */ name: string; /** Field type (singleLineText, multilineText, number, singleSelect, multipleSelects, date, checkbox, url, email, phoneNumber, attachment, etc.) */ type: string; /** Field options (e.g., choices for select fields) */ options?: Record; }