{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatabaseConnection", "title": "DatabaseConnection", "type": "object", "properties": { "name": { "type": "string", "description": "Connection name", "example": "Example Title" }, "type": { "type": "string", "description": "Database type", "example": "example_value" }, "connectionString": { "type": "string", "description": "Database connection string", "example": "example_value" }, "credentials": { "type": "object", "properties": { "domain": { "type": "string" }, "alias": { "type": "string" } }, "example": "example_value" } } }