1Password · Schema

FullItem

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

Password ManagerPasswordsSecuritySecrets
View JSON Schema on GitHub

JSON Schema

1password-connect-full-item-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-connect-full-item-schema.json",
  "title": "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"
          }
        }
      }
    }
  ]
}