1Password · JSON Structure

1Password Connect Field Structure

Represents a field within an item that stores a value such as a username, password, or other data.

Type: object Properties: 9
Password ManagerPasswordsSecuritySecrets

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

Properties

id section type purpose label value generate entropy recipe

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-field-structure.json",
  "name": "Field",
  "description": "Represents a field within an item that stores a value such as a username, password, or other data.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the field."
    },
    "section": {
      "$ref": "#/components/schemas/SectionRef"
    },
    "type": {
      "type": "string",
      "description": "The type of the field.",
      "enum": [
        "STRING",
        "EMAIL",
        "CONCEALED",
        "URL",
        "TOTP",
        "DATE",
        "MONTH_YEAR",
        "MENU"
      ]
    },
    "purpose": {
      "type": "string",
      "description": "The purpose of the field, indicating its role within the item.",
      "enum": [
        "USERNAME",
        "PASSWORD",
        "NOTES"
      ]
    },
    "label": {
      "type": "string",
      "description": "The human-readable label for the field."
    },
    "value": {
      "type": "string",
      "description": "The value stored in the field."
    },
    "generate": {
      "type": "boolean",
      "description": "Whether the field value should be auto-generated."
    },
    "entropy": {
      "type": "double",
      "description": "The entropy (strength) of the generated value."
    },
    "recipe": {
      "$ref": "#/components/schemas/GeneratorRecipe"
    }
  }
}