-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-schema.json
More file actions
239 lines (239 loc) · 6.66 KB
/
config-schema.json
File metadata and controls
239 lines (239 loc) · 6.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Flippy Board Configuration",
"description": "Export/import schema for Flippy Board settings, saved messages, queue, and data sources.",
"type": "object",
"required": ["version"],
"properties": {
"version": {
"const": 1,
"description": "Schema version number."
},
"settings": {
"type": "object",
"description": "Global board settings.",
"properties": {
"rows": {
"type": "integer",
"minimum": 1,
"default": 6,
"description": "Number of tile rows."
},
"cols": {
"type": "integer",
"minimum": 1,
"default": 22,
"description": "Number of tile columns."
},
"fullFlip": {
"type": "boolean",
"default": true,
"description": "Flip through every intermediate character when transitioning."
},
"soundEnabled": {
"type": "boolean",
"default": true,
"description": "Play flip sound on tile transitions."
}
},
"additionalProperties": false
},
"queue": {
"type": "object",
"description": "Message queue rotation settings and items.",
"properties": {
"dwellTime": {
"type": "number",
"minimum": 1,
"default": 12,
"description": "Seconds to display each item before advancing."
},
"items": {
"type": "array",
"description": "Ordered list of queue entries.",
"items": {
"$ref": "#/$defs/queueItem"
}
}
},
"additionalProperties": false
},
"saved": {
"type": "array",
"description": "Saved messages for quick recall.",
"items": {
"$ref": "#/$defs/savedMessage"
}
},
"clock": {
"type": "object",
"description": "Clock display settings.",
"properties": {
"is24h": {
"type": "boolean",
"default": false,
"description": "Use 24-hour time format."
},
"timezone": {
"type": "string",
"default": "",
"description": "IANA timezone (e.g. \"America/New_York\"). Empty string for local time."
}
},
"additionalProperties": false
},
"worldClock": {
"type": "object",
"description": "World clock city selections.",
"properties": {
"cities": {
"type": "array",
"description": "Selected built-in city names.",
"items": {
"type": "string"
}
},
"customCities": {
"type": "array",
"description": "User-added cities.",
"items": {
"type": "object",
"required": ["name", "tz"],
"properties": {
"name": {
"type": "string",
"description": "Display name for the city."
},
"tz": {
"type": "string",
"description": "IANA timezone identifier."
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"weather": {
"type": "object",
"description": "Weather display settings.",
"properties": {
"lat": {
"type": "number",
"description": "Latitude of the weather location."
},
"lon": {
"type": "number",
"description": "Longitude of the weather location."
},
"city": {
"type": "string",
"description": "Display name for the weather location."
},
"unit": {
"type": "string",
"enum": ["F", "C"],
"default": "F",
"description": "Temperature unit: Fahrenheit or Celsius."
},
"autoRefresh": {
"type": "boolean",
"default": false,
"description": "Automatically refresh weather data on an interval."
},
"refreshMin": {
"type": "number",
"minimum": 1,
"default": 15,
"description": "Auto-refresh interval in minutes."
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"$defs": {
"boardProperties": {
"type": "object",
"description": "Common properties for text displayed on the board.",
"properties": {
"text": {
"type": "string",
"description": "Board text content. Supports formatting codes: {R} {O} {Y} {G} {B} {V} {W} (colour tiles), {<>} (justify), {TAB} (tab columns), {HR} (horizontal rule), {<} {C} {>} (per-line alignment)."
},
"alignH": {
"type": "string",
"enum": ["left", "center", "right"],
"default": "center",
"description": "Horizontal text alignment."
},
"alignV": {
"type": "string",
"enum": ["top", "middle", "bottom"],
"default": "middle",
"description": "Vertical text alignment."
},
"fillColor": {
"type": "string",
"enum": ["R", "O", "Y", "G", "B", "V", "W", ""],
"default": "",
"description": "Fill empty tiles with a colour. Empty string for none."
},
"borderColor": {
"type": "string",
"enum": ["R", "O", "Y", "G", "B", "V", "W", ""],
"default": "",
"description": "Border colour around the board. Empty string for none."
}
}
},
"savedMessage": {
"allOf": [
{ "$ref": "#/$defs/boardProperties" },
{
"type": "object",
"required": ["name", "text"],
"properties": {
"name": {
"type": "string",
"description": "Display name for the saved message."
}
}
}
]
},
"queueItem": {
"oneOf": [
{
"allOf": [
{ "$ref": "#/$defs/boardProperties" },
{
"type": "object",
"required": ["type", "name", "text"],
"properties": {
"type": {
"const": "saved"
},
"name": {
"type": "string",
"description": "Display name for the queued message."
}
}
}
]
},
{
"type": "object",
"required": ["type"],
"properties": {
"type": {
"enum": ["clock", "worldclock", "weather"]
}
},
"additionalProperties": false
}
]
}
}
}