1Password · Schema

GeneratorRecipe

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

Password ManagerPasswordsSecuritySecrets

Properties

Name Type Description
length integer The length of the generated value.
characterSets array The character sets to use when generating the value.
excludeCharacters string Characters to exclude from the generated value.
View JSON Schema on GitHub

JSON Schema

1password-connect-generator-recipe-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-generator-recipe-schema.json",
  "title": "GeneratorRecipe",
  "description": "Configuration for generating a random value for a field, such as password length and character types.",
  "type": "object",
  "properties": {
    "length": {
      "type": "integer",
      "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."
    }
  }
}