1Password · Schema

EventClient

Information about the client application used in an event.

Password ManagerPasswordsSecuritySecrets

Properties

Name Type Description
app_name string The name of the 1Password application.
app_version string The version of the application.
platform_name string The name of the operating system platform.
platform_version string The version of the operating system.
os_name string The name of the operating system.
os_version string The version of the operating system.
ip string The IP address of the client.
View JSON Schema on GitHub

JSON Schema

1password-events-event-client-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-event-client-schema.json",
  "title": "EventClient",
  "description": "Information about the client application used in an event.",
  "type": "object",
  "properties": {
    "app_name": {
      "type": "string",
      "description": "The name of the 1Password application."
    },
    "app_version": {
      "type": "string",
      "description": "The version of the application."
    },
    "platform_name": {
      "type": "string",
      "description": "The name of the operating system platform."
    },
    "platform_version": {
      "type": "string",
      "description": "The version of the operating system."
    },
    "os_name": {
      "type": "string",
      "description": "The name of the operating system."
    },
    "os_version": {
      "type": "string",
      "description": "The version of the operating system."
    },
    "ip": {
      "type": "string",
      "description": "The IP address of the client."
    }
  }
}