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