1Password · JSON Structure

1Password Events Audit Event Structure

Represents an audit event recording an action performed by a team member within the 1Password account.

Type: object Properties: 14
Password ManagerPasswordsSecuritySecrets

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

Properties

uuid timestamp actor_uuid actor_details action object_type object_uuid object_details aux_id aux_uuid aux_details aux_info session location

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-structure.json",
  "name": "AuditEvent",
  "description": "Represents an audit event recording an action performed by a team member within the 1Password account.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "uuid",
      "description": "The unique identifier for the audit event."
    },
    "timestamp": {
      "type": "datetime",
      "description": "When the action was performed."
    },
    "actor_uuid": {
      "type": "uuid",
      "description": "The UUID of the user who performed the action."
    },
    "actor_details": {
      "$ref": "#/components/schemas/EventUser"
    },
    "action": {
      "type": "string",
      "description": "The type of action that was performed."
    },
    "object_type": {
      "type": "string",
      "description": "The type of object the action was performed on."
    },
    "object_uuid": {
      "type": "uuid",
      "description": "The UUID of the object the action was performed on."
    },
    "object_details": {
      "type": "object",
      "description": "Additional details about the object of the action."
    },
    "aux_id": {
      "type": "int32",
      "description": "An auxiliary identifier providing additional context."
    },
    "aux_uuid": {
      "type": "uuid",
      "description": "An auxiliary UUID providing additional context."
    },
    "aux_details": {
      "type": "object",
      "description": "Additional auxiliary details about the event."
    },
    "aux_info": {
      "type": "string",
      "description": "Additional auxiliary information about the event."
    },
    "session": {
      "type": "object",
      "description": "Information about the session in which the action occurred.",
      "properties": {
        "uuid": {
          "type": "uuid",
          "description": "The UUID of the session."
        },
        "login_time": {
          "type": "datetime",
          "description": "When the session was created."
        },
        "device_uuid": {
          "type": "uuid",
          "description": "The UUID of the device used."
        },
        "ip": {
          "type": "string",
          "description": "The IP address of the client."
        }
      }
    },
    "location": {
      "$ref": "#/components/schemas/EventLocation"
    }
  }
}