Auth0 · Schema

ConnectionCustomScripts

A map of scripts used to integrate with a custom database.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
login string
get_user string
delete string
change_password string
verify string
create string
change_username string
change_email string
change_phone_number string
View JSON Schema on GitHub

JSON Schema

auth0-connectioncustomscripts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionCustomScripts",
  "title": "ConnectionCustomScripts",
  "type": "object",
  "description": "A map of scripts used to integrate with a custom database.",
  "additionalProperties": true,
  "properties": {
    "login": {
      "type": "string",
      "minLength": 1
    },
    "get_user": {
      "type": "string",
      "minLength": 1
    },
    "delete": {
      "type": "string",
      "minLength": 1
    },
    "change_password": {
      "type": "string",
      "minLength": 1
    },
    "verify": {
      "type": "string",
      "minLength": 1
    },
    "create": {
      "type": "string",
      "minLength": 1
    },
    "change_username": {
      "type": "string",
      "minLength": 1
    },
    "change_email": {
      "type": "string",
      "minLength": 1
    },
    "change_phone_number": {
      "type": "string",
      "minLength": 1
    }
  }
}