{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConnectionRequestContentOAuth1", "title": "CreateConnectionRequestContentOAuth1", "description": "Create a connection with strategy=oauth1", "allOf": [ { "type": "object", "properties": { "strategy": { "const": "oauth1" }, "options": { "$ref": "#/components/schemas/ConnectionOptionsOAuth1" } }, "required": [ "strategy" ] }, { "$ref": "#/components/schemas/CreateConnectionCommon" } ], "x-release-lifecycle": "deprecated" }