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