Stytch · Schema

pwa_password_v3_PasswordStrengthConfig

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
check_breach_on_creation boolean
check_breach_on_authentication boolean
validate_on_authentication boolean
validation_policy object
luds_min_password_length integer
luds_min_password_complexity integer
View JSON Schema on GitHub

JSON Schema

stytch-pwa-password-v3-passwordstrengthconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pwa_password_v3_PasswordStrengthConfig",
  "title": "pwa_password_v3_PasswordStrengthConfig",
  "type": "object",
  "properties": {
    "check_breach_on_creation": {
      "type": "boolean"
    },
    "check_breach_on_authentication": {
      "type": "boolean"
    },
    "validate_on_authentication": {
      "type": "boolean"
    },
    "validation_policy": {
      "$ref": "#/components/schemas/account_manager_project_v1_ValidationPolicy"
    },
    "luds_min_password_length": {
      "type": "integer",
      "format": "int32"
    },
    "luds_min_password_complexity": {
      "type": "integer",
      "format": "int32"
    }
  },
  "required": [
    "check_breach_on_creation",
    "check_breach_on_authentication",
    "validate_on_authentication"
  ]
}