{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SnowflakeConfig", "title": "SnowflakeConfig", "type": "object", "properties": { "account": { "type": "string", "description": "Snowflake account identifier" }, "warehouse": { "type": "string", "description": "Snowflake warehouse name" }, "database": { "type": "string", "description": "Snowflake database name" }, "schema": { "type": "string", "description": "Snowflake schema name" }, "username": { "type": "string", "description": "Snowflake username" }, "password": { "type": "string", "description": "Snowflake password" } } }