29 lines
793 B
JSON
29 lines
793 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Status Bar",
|
|
"description": "Persistent top rail with optional UTC clock, build hash, and callsign.",
|
|
"type": "object",
|
|
"properties": {
|
|
"showClock": {
|
|
"type": "boolean",
|
|
"title": "Show Clock",
|
|
"description": "Show a live UTC clock element.",
|
|
"default": true,
|
|
"x-editor": "select"
|
|
},
|
|
"showBuild": {
|
|
"type": "boolean",
|
|
"title": "Show Build Hash",
|
|
"description": "Show the short build hash on the right rail.",
|
|
"default": true,
|
|
"x-editor": "select"
|
|
},
|
|
"callsign": {
|
|
"type": "string",
|
|
"title": "Callsign",
|
|
"description": "Short mono identifier for the running surface (e.g. SCF-CLN).",
|
|
"x-editor": "text"
|
|
}
|
|
}
|
|
}
|