Stytch · Schema

api_password_v1_StrengthCheckRequest

Request type

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
password string The password for the user. Any UTF8 character is allowed, e.g. spaces, emojis, non-English characters, etc.
email string The email address of the end user.
View JSON Schema on GitHub

JSON Schema

stytch-api-password-v1-strengthcheckrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_password_v1_StrengthCheckRequest",
  "title": "api_password_v1_StrengthCheckRequest",
  "type": "object",
  "properties": {
    "password": {
      "type": "string",
      "description": "The password for the user. Any UTF8 character is allowed, e.g. spaces, emojis, non-English characters, etc."
    },
    "email": {
      "type": "string",
      "description": "The email address of the end user."
    }
  },
  "description": "Request type",
  "required": [
    "password"
  ]
}