1Password · Schema

SignInAttemptResponse

The response containing sign-in attempt records and a cursor for pagination.

Password ManagerPasswordsSecuritySecrets

Properties

Name Type Description
cursor string A cursor to use in the next request to continue fetching events.
has_more boolean Whether there are more events available to fetch using the cursor.
items array The list of sign-in attempt records.
View JSON Schema on GitHub

JSON Schema

1password-events-sign-in-attempt-response-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-response-schema.json",
  "title": "SignInAttemptResponse",
  "description": "The response containing sign-in attempt records and a cursor for pagination.",
  "type": "object",
  "properties": {
    "cursor": {
      "type": "string",
      "description": "A cursor to use in the next request to continue fetching events."
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether there are more events available to fetch using the cursor."
    },
    "items": {
      "type": "array",
      "description": "The list of sign-in attempt records.",
      "items": {
        "$ref": "#/components/schemas/SignInAttempt"
      }
    }
  }
}