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