{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionResponseContentOAuth1", "title": "ConnectionResponseContentOAuth1", "description": "Response for connections with strategy=oauth1", "allOf": [ { "type": "object", "properties": { "strategy": { "const": "oauth1" }, "options": { "$ref": "#/components/schemas/ConnectionOptionsOAuth1" } }, "required": [ "strategy" ] }, { "$ref": "#/components/schemas/ConnectionPurposes" }, { "$ref": "#/components/schemas/ConnectionResponseCommon" } ], "x-release-lifecycle": "deprecated" }