Auth0 · Schema

ConnectionUsernameValidationOptions

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
min integer
max integer
View JSON Schema on GitHub

JSON Schema

auth0-connectionusernamevalidationoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionUsernameValidationOptions",
  "title": "ConnectionUsernameValidationOptions",
  "type": [
    "object",
    "null"
  ],
  "additionalProperties": false,
  "required": [
    "max",
    "min"
  ],
  "properties": {
    "min": {
      "type": "integer",
      "minimum": 1
    },
    "max": {
      "type": "integer",
      "maximum": 128
    }
  }
}