1Password · Schema

Section

Represents a section within an item used to organize fields into logical groups.

Password ManagerPasswordsSecuritySecrets

Properties

Name Type Description
id string The unique identifier for the section.
label string The human-readable label for the section.
View JSON Schema on GitHub

JSON Schema

1password-connect-section-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-section-schema.json",
  "title": "Section",
  "description": "Represents a section within an item used to organize fields into logical groups.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the section."
    },
    "label": {
      "type": "string",
      "description": "The human-readable label for the section."
    }
  }
}