{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/aladdin-studio/refs/heads/main/json-structure/aladdin-studio-data-cloud-connection-structure.json", "name": "Connection", "type": "object", "description": "An Aladdin Data Cloud Snowflake connection", "properties": { "connectionId": { "type": "string", "description": "Unique connection identifier", "example": "adc-conn-001" }, "accountName": { "type": "string", "description": "Snowflake account URL", "example": "blackrock.snowflakecomputing.com" }, "database": { "type": "string", "description": "Snowflake database name", "example": "ALADDIN_DATA_CLOUD" }, "warehouse": { "type": "string", "description": "Snowflake virtual warehouse", "example": "ANALYTICS_WH" }, "status": { "type": "string", "description": "Connection status", "enum": [ "active", "inactive" ], "example": "active" } } }