themes-terminal/schemas/code_console.schema.json
Alex Dunmow 0a9b177f7c initial: theme plugin terminal
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/terminal.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:44 +08:00

38 lines
999 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Console Block",
"description": "Shell prompt + command + output display",
"type": "object",
"properties": {
"prompt": {
"type": "string",
"title": "Prompt",
"description": "Shell prompt (e.g. $ or user@host:~$)",
"default": "$",
"x-editor": "text"
},
"command": {
"type": "string",
"title": "Command",
"description": "The command line that follows the prompt",
"default": "",
"x-editor": "text"
},
"output": {
"type": "string",
"title": "Output",
"description": "Multi-line command output",
"default": "",
"x-editor": "textarea"
},
"language": {
"type": "string",
"title": "Language",
"description": "Syntax-highlighting hint",
"default": "shell",
"x-editor": "select",
"enum": ["shell", "bash", "zsh", "go", "rust", "python", "javascript", "json", "text"]
}
}
}