Auth0 · Schema

CreateConnectionRequestContentOAuth1

Create a connection with strategy=oauth1

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-createconnectionrequestcontentoauth1-schema.json Raw ↑
{
  "$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"
}