Auth0 · Schema

CreateConnectionRequestContentIP

Create a connection with strategy=ip

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-createconnectionrequestcontentip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConnectionRequestContentIP",
  "title": "CreateConnectionRequestContentIP",
  "description": "Create a connection with strategy=ip",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "strategy": {
          "const": "ip"
        },
        "options": {
          "$ref": "#/components/schemas/ConnectionOptionsIP"
        },
        "show_as_button": {
          "$ref": "#/components/schemas/ConnectionShowAsButton"
        }
      },
      "required": [
        "strategy"
      ]
    },
    {
      "$ref": "#/components/schemas/CreateConnectionCommon"
    }
  ],
  "x-release-lifecycle": "deprecated"
}