Interface AirtableRecord

Represents a single record retrieved from an Airtable base. Contains the record's unique ID, its field data, creation timestamp, and optionally, the comment count if requested.

AirtableRecord

interface AirtableRecord {
    commentCount?: number;
    createdTime: string;
    fields: Record<string, unknown>;
    id: string;
}

Properties

commentCount?: number

An optional number indicating the count of comments on the record. This is only included if specifically requested.

createdTime: string

An ISO 8601 formatted string representing the exact time the record was created.

fields: Record<string, unknown>

An object containing the record's data, where keys are field names (or IDs if requested) and values are the corresponding field contents.

id: string

The unique identifier for this record within its Airtable table.