Auth0 · Schema

UsernameValidation

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
min_length number Minimum allowed length
max_length number Maximum allowed length
allowed_types object
View JSON Schema on GitHub

JSON Schema

auth0-usernamevalidation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UsernameValidation",
  "title": "UsernameValidation",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "min_length": {
      "type": "number",
      "description": "Minimum allowed length",
      "minimum": 1,
      "maximum": 128
    },
    "max_length": {
      "type": "number",
      "description": "Maximum allowed length",
      "minimum": 1,
      "maximum": 128
    },
    "allowed_types": {
      "$ref": "#/components/schemas/UsernameAllowedTypes"
    }
  }
}