{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ASCII Header", "description": "TTY-style figlet banner with a prompt line", "type": "object", "properties": { "title": { "type": "string", "title": "Title", "description": "Title shown in the banner (e.g. ~/projects)", "default": "~/projects", "x-editor": "text" }, "prompt": { "type": "string", "title": "Prompt", "description": "Shell prompt prefix (e.g. $ )", "default": "$ ", "x-editor": "text" }, "asciiArt": { "type": "string", "title": "ASCII Art", "description": "Optional pre-baked figlet block. Leave blank to use the auto-generated banner.", "default": "", "x-editor": "textarea" } } }