1Password · JSON Structure

1Password Events Event Location Structure

Geographic location information associated with an event.

Type: object Properties: 5
Password ManagerPasswordsSecuritySecrets

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

Properties

country region city latitude longitude

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-location-structure.json",
  "name": "EventLocation",
  "description": "Geographic location information associated with an event.",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "The two-letter ISO country code.",
      "minLength": 2,
      "maxLength": 2
    },
    "region": {
      "type": "string",
      "description": "The region or state."
    },
    "city": {
      "type": "string",
      "description": "The city name."
    },
    "latitude": {
      "type": "double",
      "description": "The latitude coordinate."
    },
    "longitude": {
      "type": "double",
      "description": "The longitude coordinate."
    }
  }
}