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