1Password · JSON Structure

1Password Connect Full Item Structure

Represents a complete 1Password item including all fields, sections, and associated metadata. Used for creating and updating items.

Type: object Properties: 0
Password ManagerPasswordsSecuritySecrets

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

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-connect-full-item-structure.json",
  "name": "FullItem",
  "description": "Represents a complete 1Password item including all fields, sections, and associated metadata. Used for creating and updating items.",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/Item"
    },
    {
      "type": "object",
      "properties": {
        "fields": {
          "type": "array",
          "description": "The fields of the item containing secrets and metadata.",
          "items": {
            "$ref": "#/components/schemas/Field"
          }
        },
        "sections": {
          "type": "array",
          "description": "Sections used to organize fields within the item.",
          "items": {
            "$ref": "#/components/schemas/Section"
          }
        }
      }
    }
  ]
}