1Password · JSON Structure

1Password Events Sign In Attempt Response Structure

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

Type: object Properties: 3
Password ManagerPasswordsSecuritySecrets

SignInAttemptResponse is a JSON Structure definition published by 1Password, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cursor has_more items

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/1password/refs/heads/main/json-structure/1password-events-sign-in-attempt-response-structure.json",
  "name": "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"
      }
    }
  }
}