-
Notifications
You must be signed in to change notification settings - Fork 14
/
StoryRampSchema.json
699 lines (672 loc) · 25.6 KB
/
StoryRampSchema.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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "StoryRAMP Config Schema",
"type": "object",
"additionalProperties": false,
"$defs": {
"slide": {
"type": "object",
"description": "A universal StoryRAMP slide",
"properties": {
"title": {
"type": "string",
"description": "The title for the slide."
},
"panel": {
"$ref": "#/$defs/panel"
},
"backgroundImage": {
"type": "string",
"description": "An image to display in the background of the slide."
},
"includeInToc": {
"type": "boolean",
"description": "Optional attribute that indicates whether or not to include slide in table of contents. Defaults to true.",
"default": true
}
},
"required": ["title", "panel"]
},
"panel": {
"type": "array",
"description": "A single slide component",
"items": {
"oneOf": [
{
"$ref": "#/$defs/textPanel"
},
{
"$ref": "#/$defs/mapPanel"
},
{
"$ref": "#/$defs/multimediaPanel"
},
{
"$ref": "#/$defs/dqvchartPanel"
},
{
"$ref": "#/$defs/dynamicPanel"
},
{
"$ref": "#/$defs/interactiveMapPanel"
}
]
},
"properties": {
"width": {
"type": "number",
"description": "The width of the panel inside the slide (between 0 and 100)."
},
"customStyles": {
"type": "string",
"description": "Optional style string to add to the panel."
},
"cssClasses": {
"type": "string",
"description": "Optional string of css classes to add to the panel."
}
},
"minItems": 1,
"maxItems": 2
},
"textPanel": {
"type": "object",
"description": "A text slide component.",
"properties": {
"title": {
"type": "string",
"description": "The title for the text panel."
},
"titleTag": {
"type": "string",
"description": "An optional tag to use for the panel title. If not supplied h2 is used.",
"default": "h2"
},
"content": {
"type": "string",
"description": "The main text body."
},
"type": {
"type": "string",
"enum": ["text"]
},
"textColour": {
"type": "string",
"description": "The colour of the text. Defaults to black.",
"default": "#000000"
}
},
"required": ["content", "type", "title"]
},
"dynamicPanel": {
"type": "object",
"description": "A dynamic slide component.",
"properties": {
"title": {
"type": "string",
"description": "The title for the text panel."
},
"titleTag": {
"type": "string",
"description": "An optional tag to use for the panel title. If not supplied h2 is used.",
"default": "h2"
},
"content": {
"type": "string",
"description": "The main text body."
},
"children": {
"type": "array",
"description": "The panels to display dynamically.",
"items": {
"$ref": "#/$defs/dynamicChildItem"
},
"minItems": 1
},
"type": {
"type": "string",
"enum": ["dynamic"]
},
"textColour": {
"type": "string",
"description": "The colour of the text. Defaults to black.",
"default": "#000000"
},
"reversed": {
"type": "boolean",
"description": "If true, the text slide and dynamic slide will be swapped.",
"default": false
},
"hideReturn": {
"type": "boolean",
"description": "If true, the return button will be hidden.",
"default": false
},
"contentWidth": {
"type": "string",
"description": "If provided, the text slide width will be set to this value. Caps out at the page width on mobile mode.",
"default": ""
}
},
"required": ["content", "type", "children", "title"]
},
"dynamicChildItem": {
"type": "object",
"description": "A child screen of a dynamic panel. Contains an ID and a panel config.",
"properties": {
"id": "string",
"panel": {
"oneOf": [
{
"$ref": "#/$defs/textPanel"
},
{
"$ref": "#/$defs/mapPanel"
},
{
"$ref": "#/$defs/multimediaPanel"
},
{
"$ref": "#/$defs/dqvchartPanel"
}
]
}
},
"required": ["id", "panel"]
},
"multimediaPanel": {
"type": "object",
"description": "A multimedia slide component.",
"oneOf": [
{
"$ref": "#/$defs/multimediaImage"
},
{
"$ref": "#/$defs/multimediaVideo"
},
{
"$ref": "#/$defs/multimediaAudio"
},
{
"$ref": "#/$defs/multimediaSlideshow"
}
],
"properties": {
"fullscreen": {
"type": "boolean",
"description": "Specifies whether the panel can be expanded to full screen.",
"default": true
}
}
},
"mapPanel": {
"type": "object",
"description": "A map slide component.",
"properties": {
"config": {
"type": "string",
"description": "A relative path to a JSON file containing the map config.",
"default": ""
},
"fullscreen": {
"type": "boolean",
"description": "Specifies whether the panel can be expanded to full screen.",
"default": true
},
"type": {
"type": "string",
"enum": ["map"]
},
"scrollguard": {
"type": "boolean",
"description": "Whether or not CTRL is required to scroll this map.",
"default": false
},
"teleportGrid": {
"type": "string",
"description": "Specifies where to teleport grid outside of RAMP instance.",
"default": "",
"enum": ["", "left", "right"]
},
"title": {
"type": "string",
"description": "A title that is displayed centered above this map."
},
"caption": {
"type": "string",
"description": "Supporting text content for the map."
},
"customTemplates": {
"type": "array",
"description": "An array of custom template names that will need to be registered on the map component.",
"items": {
"type": "string",
"description": "The name of a Vue component that will need to be registered."
}
}
},
"required": ["config", "type"]
},
"interactiveMapPanel": {
"type": "object",
"description": "An interactive map slide component.",
"properties": {
"config": {
"type": "string",
"description": "A relative path to a JSON file containing the map config.",
"default": ""
},
"type": {
"type": "string",
"enum": ["interactive-map"]
},
"scrollguard": {
"type": "boolean",
"description": "Whether or not CTRL is required to scroll this map.",
"default": false
},
"title": {
"type": "string",
"description": "A title that is displayed centered above this map."
},
"teleportAOI": {
"type": "string",
"description": "Specifies where to teleport areas of interest outside of RAMP instance.",
"default": "",
"enum": ["", "left", "right"]
},
"points": {
"type": "array",
"description": "A list of points of interest.",
"items": {
"$ref": "#/$defs/pointOfInterest"
}
}
},
"required": ["type", "config"]
},
"pointOfInterest": {
"type": "object",
"description": "A map slide component.",
"properties": {
"title": {
"type": "string",
"description": "The name of the point of interest.",
"default": ""
},
"text": {
"type": "string",
"description": "Text content for the point of interest."
},
"image": {
"type": "string",
"description": "Image content for the point of interest."
},
"altText": {
"type": "string",
"description": "Alt text for the image."
},
"target": {
"$ref": "#/$defs/pointOfInterestTarget"
}
},
"required": ["target"]
},
"pointOfInterestTarget": {
"type": "object",
"description": "The target object for a point of interest.",
"properties": {
"oid": {
"type": "number",
"description": "The target OBJECTID of the point."
},
"layerId": {
"type": "string",
"description": "The ID of the target layer."
},
"layerIndex": {
"type": "number",
"description": "If the target layer is a map image layer, the index of the sublayer to target."
}
},
"required": ["oid", "layerId"]
},
"dqvchartPanel": {
"type": "object",
"description": "A dqvchart slide component.",
"properties": {
"src": {
"type": "string",
"description": "The source containing the dqvchart json config."
},
"config": {
"type": "object",
"description": "Configured Highcharts JSON object (from editor)."
},
"type": {
"type": "string",
"enum": ["chart"]
},
"options": {
"$ref": "#/$defs/dqvchartOptions"
}
},
"required": ["src", "type"]
},
"multimediaImage": {
"type": "object",
"description": "A multimedia image component.",
"properties": {
"width": {
"type": "number",
"description": "The image width."
},
"height": {
"type": "number",
"description": "The image height."
},
"src": {
"type": "string",
"description": "The source for the image."
},
"altText": {
"type": "string",
"description": "The supporting text for the image."
},
"caption": {
"type": "string",
"description": "Supporting text content for the image."
},
"class": {
"type": "string",
"description": "Styling class properties for the image."
},
"tooltip": {
"type": "string",
"description": "Tooltip content for the image."
},
"type": {
"type": "string",
"enum": ["image"]
}
},
"required": ["src", "type"]
},
"multimediaVideo": {
"type": "object",
"description": "A multimedia video component.",
"properties": {
"title": {
"type": "string",
"description": "The title for the video."
},
"width": {
"type": "number",
"description": "The video width."
},
"height": {
"type": "number",
"description": "The video height. Only for Youtube videos. Changing height for external/local videos won't work due to the aspect ratio of the original video needing to be kept the same."
},
"src": {
"type": "string",
"description": "The source for the video. External and YouTube videos should be a URL, while local video files must be contained in the assets folder."
},
"videoType": {
"type": "string",
"enum": ["local", "external", "YouTube"]
},
"thumbnailUrl": {
"type": "string",
"description": "Optional link for providing URL for video thumbnail image. Limited to non-YouTube videos."
},
"transcript": {
"type": "string",
"description": "The source for the transcript in HTML/Markdown."
},
"caption": {
"type": "string",
"description": "Overlaying subtitles on the video, input should be a .vtt file."
},
"type": {
"type": "string",
"enum": ["video"]
}
},
"required": ["src", "type", "videoType"]
},
"multimediaAudio": {
"type": "object",
"description": "A multimedia audio component.",
"properties": {
"src": {
"type": "string",
"description": "** TODO: the plan just has 'type' here, how do we want to distinguish mp3, wav, etc?"
},
"caption": {
"type": "string",
"description": "Supporting text content for the audio."
},
"type": {
"type": "string",
"enum": ["audio"]
}
},
"required": ["src", "type"]
},
"multimediaSlideshow": {
"type": "object",
"description": "A multimedia slideshow component.",
"properties": {
"items": {
"type": "array",
"description": "An array of items to display in the slideshow.",
"items": {
"type": "object",
"description": "A config representing one of the following panel types.",
"oneOf": [
{
"$ref": "#/$defs/multimediaImage"
},
{
"$ref": "#/$defs/mapPanel"
},
{
"$ref": "#/$defs/textPanel"
},
{
"$ref": "#/$defs/dqvchartPanel"
}
]
},
"minItems": 1
},
"loop": {
"type": "boolean",
"description": "Determines whether the slideshow loops back around to the beginning when you reach the end.",
"default": false
},
"caption": {
"type": "text",
"description": "A caption to display below the slideshow."
},
"type": {
"type": "string",
"enum": ["slideshow"]
}
},
"required": ["items", "type"]
},
"dqvchartOptions": {
"type": "object",
"description": "Configuration for a dqvchart.",
"properties": {
"title": {
"type": "string",
"description": "The title of the chart."
},
"subtitle": {
"type": "string",
"description": "The subtitle of the chart."
},
"type": {
"type": "string",
"description": "The type of chart.",
"enum": [
"line",
"spline",
"area",
"areaspline",
"column",
"bar",
"pie",
"scatter",
"gauge",
"arearange",
"areasplinerange",
"columnrange"
]
},
"width": {
"type": "number",
"description": "The width of the chart (will not exceed panel container width)."
},
"height": {
"type": "number",
"description": "The height of chart (will not exceed panel container height on mobile resolutions)."
},
"colours": {
"type": "array",
"description": "A list of colors to display chart data that corresponds to the order of columns in CSV file.",
"items": {
"type": "string"
}
},
"export": {
"type": "boolean",
"description": "Specify whether export menu options are enabled.",
"default": true
},
"credits": {
"type": "boolean",
"description": "Specify whether credits are enabled.",
"default": false
},
"xAxisLabel": {
"type": "string",
"description": "The title of the x-axis."
},
"yAxisLabel": {
"type": "string",
"description": "The title of the y-axis."
}
}
}
},
"properties": {
"title": {
"type": "string",
"description": "The title of the story map."
},
"introSlide": {
"type": "object",
"description": "The introductory slide",
"properties": {
"logo": {
"type": "object",
"description": "Information about the StoryRAMP logo",
"properties": {
"src": {
"type": "string",
"description": "An image source that is displayed at the top of the slide"
},
"altText": {
"type": "string",
"description": "Alt text for the logo"
}
},
"required": ["src"]
},
"title": {
"type": "string",
"description": "The title of the project, displayed under the image"
},
"subtitle": {
"type": "string",
"description": "An optional subtitle that is displayed under the title."
},
"blurb": {
"type": "string",
"description": "Any additional information to display on the introductory slide."
},
"backgroundImage": {
"type": "string",
"description": "A background image for the introduction slide."
},
"titleColour": {
"type": "string",
"description": "The text colour of the title text."
},
"subtitleColour": {
"type": "string",
"description": "The text colour of the subtitle text."
},
"buttonColour": {
"type": "string",
"description": "The colour of the 'jump to content' button."
}
},
"required": ["logo", "title"]
},
"slides": {
"type": "array",
"description": "A list of StoryRAMP slides. A minimum of one slide is required.",
"items": {
"$ref": "#/$defs/slide"
},
"minItems": 1
},
"tocOrientation": {
"type": "string",
"description": "Specifies the orientation of the table of contents navigation menu.",
"enum": ["vertical", "horizontal"],
"default": "vertical"
},
"returnTop": {
"type": "boolean",
"description": "Specifies whether a link is added to scroll back to top of page.",
"default": true
},
"contextLink": {
"type": "string",
"description": "A link pointing to the source information"
},
"contextLabel": {
"type": "string",
"description": "A description that explains the context link."
},
"lang": {
"type": "string",
"description": "The language to display in the app",
"enum": ["en", "fr"]
},
"stylesheets": {
"type": "array",
"description": "A list of relative paths to stylesheets to include on the page.",
"items": {
"type": "string",
"description": "A relative path to a stylesheet."
}
},
"dateModified": {
"type": "string",
"description": "The last date that this config file was modified."
},
"lazyLoad": {
"type": "boolean",
"description": "If true, all images in the product will be lazy loaded.",
"default": true
}
},
"required": ["title", "introSlide", "slides"]
}