1Password · JSON Structure

1Password Connect Generator Recipe Structure

Configuration for generating a random value for a field, such as password length and character types.

Type: object Properties: 3
Password ManagerPasswordsSecuritySecrets

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

Properties

length characterSets excludeCharacters

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-generator-recipe-structure.json",
  "name": "GeneratorRecipe",
  "description": "Configuration for generating a random value for a field, such as password length and character types.",
  "type": "object",
  "properties": {
    "length": {
      "type": "int32",
      "description": "The length of the generated value.",
      "minimum": 1,
      "maximum": 64
    },
    "characterSets": {
      "type": "array",
      "description": "The character sets to use when generating the value.",
      "items": {
        "type": "string",
        "enum": [
          "LETTERS",
          "DIGITS",
          "SYMBOLS"
        ]
      }
    },
    "excludeCharacters": {
      "type": "string",
      "description": "Characters to exclude from the generated value."
    }
  }
}