{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionWithCredentials", "title": "ConnectionWithCredentials", "allOf": [ { "$ref": "#/components/schemas/Connection" }, { "type": "object", "properties": { "connectionString": { "type": "string", "description": "The full connection string with credentials. Only returned once during creation." } }, "required": [ "connectionString" ] } ] }