Auth0 · Schema

CreateConnectionRequestContentEmail

Create a connection with strategy=email

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

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