1Password · JSON Structure

1Password Events Event User Structure

Represents a user involved in an event.

Type: object Properties: 3
Password ManagerPasswordsSecuritySecrets

EventUser 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

uuid name email

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-event-user-structure.json",
  "name": "EventUser",
  "description": "Represents a user involved in an event.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "uuid",
      "description": "The unique identifier of the user."
    },
    "name": {
      "type": "string",
      "description": "The name of the user."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "The email address of the user."
    }
  }
}