{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConnectionRequest", "title": "CreateConnectionRequest", "type": "object", "required": [ "credentials" ], "properties": { "type": { "type": "string", "example": "example_value" }, "connectionString": { "type": "string", "example": "example_value" }, "credentials": { "type": "object", "required": [ "domain", "alias" ], "properties": { "domain": { "type": "string" }, "alias": { "type": "string" } }, "example": "example_value" } } }