Stytch · Schema

api_user_v1_Password

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
password_id string The unique ID of a specific password
requires_reset boolean Indicates whether this password requires a password reset
View JSON Schema on GitHub

JSON Schema

stytch-api-user-v1-password-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_user_v1_Password",
  "title": "api_user_v1_Password",
  "type": "object",
  "properties": {
    "password_id": {
      "type": "string",
      "description": "The unique ID of a specific password"
    },
    "requires_reset": {
      "type": "boolean",
      "description": "Indicates whether this password requires a password reset"
    }
  },
  "required": [
    "password_id",
    "requires_reset"
  ]
}