{ "$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." } } }