{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Boot Log Hero", "description": "Sequential dmesg-style boot log with trailing cursor", "type": "object", "properties": { "lines": { "type": "array", "title": "Lines", "description": "Boot log lines (one per entry, revealed sequentially)", "default": [], "x-editor": "array", "items": { "type": "string", "x-editor": "text" } }, "cursor": { "type": "string", "title": "Cursor", "description": "Trailing cursor glyph after the last line", "default": "block", "x-editor": "select", "enum": ["block", "underscore", "pipe", "none"] } } }