{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConnectionRequestContentOIDC", "title": "CreateConnectionRequestContentOIDC", "description": "Create a connection with strategy=oidc", "allOf": [ { "type": "object", "properties": { "strategy": { "const": "oidc" }, "authentication": { "$ref": "#/components/schemas/ConnectionAuthenticationPurpose" }, "connected_accounts": { "$ref": "#/components/schemas/ConnectionConnectedAccountsPurposeXAA" }, "options": { "$ref": "#/components/schemas/ConnectionOptionsOIDC" }, "show_as_button": { "$ref": "#/components/schemas/ConnectionShowAsButton" } }, "required": [ "strategy" ] }, { "$ref": "#/components/schemas/CreateConnectionCommon" } ] }