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