1Password · JSON Structure

1Password Events Audit Event Response Structure

The response containing audit event records and a cursor for pagination.

Type: object Properties: 3
Password ManagerPasswordsSecuritySecrets

AuditEventResponse 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-audit-event-response-structure.json",
  "name": "AuditEventResponse",
  "description": "The response containing audit event 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 audit event records.",
      "items": {
        "$ref": "#/components/schemas/AuditEvent"
      }
    }
  }
}