/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Snowflake Schema object (namespace within a database) */ export interface SnowflakeSchema { /** Schema name, cannot be 'PUBLIC' since it's a default schema */ name: string; /** Tables in this schema */ tables?: Klavis.SnowflakeTable[]; }