/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Notion Data Source object - represents a table within a database. * * New in API version 2025-09-03: * - A database can contain multiple data sources * - Each data source has its own schema (properties) * - Pages within a data source follow that schema */ export interface NotionDataSource { /** Data source name */ name: string; /** Data source description */ description?: string; /** Schema definition (property types and configurations) */ schema?: Record; /** Pages (items/rows) in this data source */ pages?: Klavis.NotionPage[]; }