-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
442 lines (442 loc) · 10.6 KB
/
schema.json
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
{
"$defs": {
"IndentScheme": {
"enum": [
"linear",
"alternate",
"inline"
],
"title": "IndentScheme",
"type": "string"
},
"MemoryMap": {
"properties": {
"memory_regions": {
"additionalProperties": {
"$ref": "#/$defs/MemoryRegion"
},
"description": "Memory map containing memory regions.",
"title": "Memory Regions",
"type": "object"
},
"height": {
"default": 0,
"description": "Internal Use. \n This will be automically adjusted depending on the diagram size and number of memory maps.",
"title": "Height",
"type": "integer"
},
"width": {
"default": 0,
"description": "Internal Use. \n This will be automically adjusted depending on the diagram size and number of memory maps.",
"title": "Width",
"type": "integer"
},
"draw_scale": {
"default": 1,
"description": "Drawing scale denominator. Internal use only.",
"title": "Draw Scale",
"type": "integer"
},
"max_address": {
"default": 0,
"description": "Max address for the map. Use hex. \n If not defined, max_address will be determined by the region data.",
"title": "Max Address",
"type": "integer"
},
"max_address_taken_from_diagram_height": {
"default": false,
"description": "Internal Use",
"title": "Max Address Taken From Diagram Height",
"type": "boolean"
}
},
"required": [
"memory_regions"
],
"title": "MemoryMap",
"type": "object"
},
"MemoryRegion": {
"properties": {
"origin": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Origin address of the MemoryMap. In hex format string.",
"title": "Origin"
},
"size": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Size (in bytes) of the MemoryMap. In hex format string.",
"title": "Size"
},
"links": {
"default": [],
"description": "Links to other memory regions. E.g. \n[\n\n{'ParentMemoryMap1': 'ChildMemoryRegion1'}\n\n...\n\n{'ParentMemoryMapN': 'ChildMemoryRegionN'}\n]",
"items": {
"maxItems": 2,
"minItems": 2,
"prefixItems": [
{
"type": "string"
},
{
"type": "string"
}
],
"type": "array"
},
"title": "Links",
"type": "array"
},
"freespace": {
"default": "",
"description": "Internal Use",
"title": "Freespace",
"type": "integer"
},
"collisions": {
"Description": "Internal Use",
"default": {},
"title": "Collisions",
"type": "object"
},
"text_size": {
"default": 0,
"description": "The text size for this region",
"title": "Text Size",
"type": "integer"
},
"address_text_size": {
"default": 0,
"description": "The text size for this region",
"title": "Address Text Size",
"type": "integer"
}
},
"required": [
"origin",
"size"
],
"title": "MemoryRegion",
"type": "object"
}
},
"properties": {
"address_text_size": {
"default": 12,
"description": "The text size for this region",
"title": "Address Text Size",
"type": "integer"
},
"bgcolour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": [
248,
248,
248
],
"description": "The background colour used for the diagram",
"title": "Bgcolour"
},
"link_alpha": {
"default": 96,
"description": "Transparency value for all link arrow images.",
"exclusiveMaximum": 256,
"exclusiveMinimum": -1,
"title": "Link Alpha",
"type": "integer"
},
"link_fill_colour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": "red",
"description": "Fill colour for the link arrows",
"title": "Link Fill Colour"
},
"link_line_colour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": "red",
"description": "Line colour for the link arrows",
"title": "Link Line Colour"
},
"link_head_width": {
"default": 25,
"description": "Arrow head width (pixels) of the region link graphic.",
"title": "Link Head Width",
"type": "integer"
},
"link_tail_len": {
"default": 75,
"description": "Arrow tail length (percentage, relative to arrow head) of the region link graphic.",
"title": "Link Tail Len",
"type": "integer"
},
"link_tail_width": {
"default": 20,
"description": "Arrow tail width (percentage, relative to arrow head) of the region link graphic.",
"title": "Link Tail Width",
"type": "integer"
},
"legend_width": {
"default": 30,
"description": "The percentage width of the diagram legend",
"title": "Legend Width",
"type": "integer"
},
"memory_maps": {
"additionalProperties": {
"$ref": "#/$defs/MemoryMap"
},
"description": "MemoryMap sub-diagram contents.",
"title": "Memory Maps",
"type": "object"
},
"name": {
"description": "The name of the diagram.",
"title": "Name",
"type": "string"
},
"height": {
"description": "The height of the diagram in pixels. \n If a region size exceeds this height value, \n then the region size will be scaled to fit within the diagram height.",
"title": "Height",
"type": "integer"
},
"indent_scheme": {
"allOf": [
{
"$ref": "#/$defs/IndentScheme"
}
],
"default": "alternate",
"description": "Drawing indent for Memory Regions. Enabled for colliding regions only."
},
"region_alpha": {
"default": 192,
"description": "Transparency value for all region block images.",
"exclusiveMaximum": 256,
"exclusiveMinimum": -1,
"title": "Region Alpha",
"type": "integer"
},
"threshold": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"default": "0xa",
"description": "The threshold for skipping void sections. Please use hex.",
"title": "Threshold"
},
"title_fill_colour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": [
224,
224,
224
],
"description": "Fill colour for the memory map title blocks",
"title": "Title Fill Colour"
},
"text_size": {
"default": 14,
"description": "The text size used for entire diagram. \n Region text size can be overridden",
"title": "Text Size",
"type": "integer"
},
"title_line_colour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": [
32,
32,
32
],
"description": "Line colour for the memory map title blocks",
"title": "Title Line Colour"
},
"void_fill_colour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": "white",
"description": "Fill colour for the void region blocks",
"title": "Void Fill Colour"
},
"void_line_colour": {
"anyOf": [
{
"type": "string"
},
{
"maxItems": 3,
"minItems": 3,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"type": "array"
}
],
"default": [
192,
192,
192
],
"description": "Line colour for the void region blocks",
"title": "Void Line Colour"
},
"width": {
"description": "The width of the diagram in pixels.",
"title": "Width",
"type": "integer"
}
},
"required": [
"memory_maps",
"name",
"height",
"width"
],
"title": "Diagram",
"type": "object"
}