/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Notion Database object - container for data sources. * * Databases organize structured data and can contain multiple data sources. * Each data source represents a table with its own schema. */ export interface NotionDatabase { /** Database title */ title: string; /** Database description */ description?: string; /** Database icon (emoji or external URL) */ icon?: string; /** Data sources within this database */ data_sources?: Klavis.NotionDataSource[]; }