{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionResponseContentCustom", "title": "ConnectionResponseContentCustom", "description": "Response for connections with strategy=custom", "allOf": [ { "type": "object", "properties": { "strategy": { "const": "custom" }, "options": { "$ref": "#/components/schemas/ConnectionOptionsCustom" }, "provisioning_ticket_url": { "$ref": "#/components/schemas/ConnectionProvisioningTicketUrl" } }, "required": [ "strategy" ] }, { "$ref": "#/components/schemas/ConnectionPurposes" }, { "$ref": "#/components/schemas/ConnectionResponseCommon" } ] }