Auth0 · Schema

FormFieldPasswordConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
hash object
placeholder string
min_length integer
max_length integer
complexity boolean
nist boolean
strength_meter boolean
View JSON Schema on GitHub

JSON Schema

auth0-formfieldpasswordconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldPasswordConfig",
  "title": "FormFieldPasswordConfig",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "hash": {
      "$ref": "#/components/schemas/FormFieldPasswordConfigHashEnum"
    },
    "placeholder": {
      "type": "string",
      "maxLength": 500
    },
    "min_length": {
      "type": "integer",
      "minimum": 1
    },
    "max_length": {
      "type": "integer",
      "minimum": 1
    },
    "complexity": {
      "type": "boolean"
    },
    "nist": {
      "type": "boolean"
    },
    "strength_meter": {
      "type": "boolean"
    }
  }
}