Stytch · Schema

api_b2b_password_v1_ZxcvbnFeedback

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
warning string For zxcvbn validation, contains an end user consumable warning if the password is valid but not strong enough.
suggestions array For zxcvbn validation, contains end user consumable suggestions on how to improve the strength of the password.
View JSON Schema on GitHub

JSON Schema

stytch-api-b2b-password-v1-zxcvbnfeedback-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_b2b_password_v1_ZxcvbnFeedback",
  "title": "api_b2b_password_v1_ZxcvbnFeedback",
  "type": "object",
  "properties": {
    "warning": {
      "type": "string",
      "description": "For zxcvbn validation, contains an end user consumable warning if the password is valid but not strong enough."
    },
    "suggestions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "For zxcvbn validation, contains end user consumable suggestions on how to improve the strength of the password."
    }
  },
  "required": [
    "warning",
    "suggestions"
  ]
}