1Password · Schema

SignInAttempt

Represents a single sign-in attempt to a 1Password account.

Password ManagerPasswordsSecuritySecrets

Properties

Name Type Description
uuid string The unique identifier for the sign-in attempt.
session_uuid string The UUID of the session associated with the sign-in attempt.
timestamp string When the sign-in attempt occurred.
category string The category of the sign-in attempt.
type string The type of sign-in method used.
country string The two-letter ISO country code of the sign-in location.
target_user object
client object
View JSON Schema on GitHub

JSON Schema

1password-events-sign-in-attempt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/1password/refs/heads/main/json-schema/1password-events-sign-in-attempt-schema.json",
  "title": "SignInAttempt",
  "description": "Represents a single sign-in attempt to a 1Password account.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier for the sign-in attempt."
    },
    "session_uuid": {
      "type": "string",
      "format": "uuid",
      "description": "The UUID of the session associated with the sign-in attempt."
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "When the sign-in attempt occurred."
    },
    "category": {
      "type": "string",
      "description": "The category of the sign-in attempt.",
      "enum": [
        "success",
        "credentials_failed",
        "mfa_failed",
        "modern_version_required",
        "sso_failed"
      ]
    },
    "type": {
      "type": "string",
      "description": "The type of sign-in method used.",
      "enum": [
        "credentials_ok",
        "mfa_ok",
        "password_secret_bad",
        "mfa_missing",
        "totp_disabled",
        "totp_bad",
        "u2f_failed",
        "duo_failed",
        "duo_native_failed",
        "sso_failed"
      ]
    },
    "country": {
      "type": "string",
      "description": "The two-letter ISO country code of the sign-in location.",
      "minLength": 2,
      "maxLength": 2
    },
    "target_user": {
      "$ref": "#/components/schemas/EventUser"
    },
    "client": {
      "$ref": "#/components/schemas/EventClient"
    }
  }
}