@financial-times/content-tree 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2305 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "additionalProperties": false,
4
+ "definitions": {
5
+ "ContentTree.full.BigNumber": {
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "data": {},
9
+ "description": {
10
+ "type": "string"
11
+ },
12
+ "number": {
13
+ "type": "string"
14
+ },
15
+ "type": {
16
+ "const": "big-number",
17
+ "type": "string"
18
+ }
19
+ },
20
+ "required": [
21
+ "description",
22
+ "number",
23
+ "type"
24
+ ],
25
+ "type": "object"
26
+ },
27
+ "ContentTree.full.Blockquote": {
28
+ "additionalProperties": false,
29
+ "properties": {
30
+ "children": {
31
+ "items": {
32
+ "anyOf": [
33
+ {
34
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
35
+ },
36
+ {
37
+ "$ref": "#/definitions/ContentTree.full.Text"
38
+ },
39
+ {
40
+ "$ref": "#/definitions/ContentTree.full.Break"
41
+ },
42
+ {
43
+ "$ref": "#/definitions/ContentTree.full.Strong"
44
+ },
45
+ {
46
+ "$ref": "#/definitions/ContentTree.full.Emphasis"
47
+ },
48
+ {
49
+ "$ref": "#/definitions/ContentTree.full.Strikethrough"
50
+ },
51
+ {
52
+ "$ref": "#/definitions/ContentTree.full.Link"
53
+ },
54
+ {
55
+ "$ref": "#/definitions/ContentTree.full.FindOutMoreLink"
56
+ }
57
+ ]
58
+ },
59
+ "type": "array"
60
+ },
61
+ "data": {},
62
+ "type": {
63
+ "const": "blockquote",
64
+ "type": "string"
65
+ }
66
+ },
67
+ "required": [
68
+ "children",
69
+ "type"
70
+ ],
71
+ "type": "object"
72
+ },
73
+ "ContentTree.full.Body": {
74
+ "additionalProperties": false,
75
+ "properties": {
76
+ "children": {
77
+ "items": {
78
+ "$ref": "#/definitions/ContentTree.full.BodyBlock"
79
+ },
80
+ "type": "array"
81
+ },
82
+ "data": {},
83
+ "type": {
84
+ "const": "body",
85
+ "type": "string"
86
+ },
87
+ "version": {
88
+ "type": "number"
89
+ }
90
+ },
91
+ "required": [
92
+ "children",
93
+ "type",
94
+ "version"
95
+ ],
96
+ "type": "object"
97
+ },
98
+ "ContentTree.full.BodyBlock": {
99
+ "anyOf": [
100
+ {
101
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
102
+ },
103
+ {
104
+ "$ref": "#/definitions/ContentTree.full.Heading"
105
+ },
106
+ {
107
+ "$ref": "#/definitions/ContentTree.full.List"
108
+ },
109
+ {
110
+ "$ref": "#/definitions/ContentTree.full.Blockquote"
111
+ },
112
+ {
113
+ "$ref": "#/definitions/ContentTree.full.ThematicBreak"
114
+ },
115
+ {
116
+ "$ref": "#/definitions/ContentTree.full.Text"
117
+ },
118
+ {
119
+ "$ref": "#/definitions/ContentTree.full.ImageSet"
120
+ },
121
+ {
122
+ "$ref": "#/definitions/ContentTree.full.Flourish"
123
+ },
124
+ {
125
+ "$ref": "#/definitions/ContentTree.full.BigNumber"
126
+ },
127
+ {
128
+ "$ref": "#/definitions/ContentTree.full.CustomCodeComponent"
129
+ },
130
+ {
131
+ "$ref": "#/definitions/ContentTree.full.Layout"
132
+ },
133
+ {
134
+ "$ref": "#/definitions/ContentTree.full.Pullquote"
135
+ },
136
+ {
137
+ "$ref": "#/definitions/ContentTree.full.ScrollyBlock"
138
+ },
139
+ {
140
+ "$ref": "#/definitions/ContentTree.full.Table"
141
+ },
142
+ {
143
+ "$ref": "#/definitions/ContentTree.full.Recommended"
144
+ },
145
+ {
146
+ "$ref": "#/definitions/ContentTree.full.RecommendedList"
147
+ },
148
+ {
149
+ "$ref": "#/definitions/ContentTree.full.Tweet"
150
+ },
151
+ {
152
+ "$ref": "#/definitions/ContentTree.full.Video"
153
+ },
154
+ {
155
+ "$ref": "#/definitions/ContentTree.full.YoutubeVideo"
156
+ },
157
+ {
158
+ "$ref": "#/definitions/ContentTree.full.Timeline"
159
+ },
160
+ {
161
+ "$ref": "#/definitions/ContentTree.full.ImagePair"
162
+ },
163
+ {
164
+ "$ref": "#/definitions/ContentTree.full.InNumbers"
165
+ },
166
+ {
167
+ "$ref": "#/definitions/ContentTree.full.Definition"
168
+ },
169
+ {
170
+ "$ref": "#/definitions/ContentTree.full.InfoBox"
171
+ },
172
+ {
173
+ "$ref": "#/definitions/ContentTree.full.InfoPair"
174
+ }
175
+ ]
176
+ },
177
+ "ContentTree.full.Break": {
178
+ "additionalProperties": false,
179
+ "properties": {
180
+ "data": {},
181
+ "type": {
182
+ "const": "break",
183
+ "type": "string"
184
+ }
185
+ },
186
+ "required": [
187
+ "type"
188
+ ],
189
+ "type": "object"
190
+ },
191
+ "ContentTree.full.Card": {
192
+ "additionalProperties": false,
193
+ "description": "A card describes a subject with images and text",
194
+ "properties": {
195
+ "children": {
196
+ "items": {
197
+ "$ref": "#/definitions/ContentTree.full.CardChildren"
198
+ },
199
+ "type": "array"
200
+ },
201
+ "data": {},
202
+ "title": {
203
+ "description": "The title of this card",
204
+ "type": "string"
205
+ },
206
+ "type": {
207
+ "const": "card",
208
+ "type": "string"
209
+ }
210
+ },
211
+ "required": [
212
+ "children",
213
+ "type"
214
+ ],
215
+ "type": "object"
216
+ },
217
+ "ContentTree.full.CardChildren": {
218
+ "anyOf": [
219
+ {
220
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
221
+ },
222
+ {
223
+ "$ref": "#/definitions/ContentTree.full.List"
224
+ },
225
+ {
226
+ "$ref": "#/definitions/ContentTree.full.Blockquote"
227
+ },
228
+ {
229
+ "$ref": "#/definitions/ContentTree.full.ThematicBreak"
230
+ },
231
+ {
232
+ "$ref": "#/definitions/ContentTree.full.Text"
233
+ },
234
+ {
235
+ "$ref": "#/definitions/ContentTree.full.ImageSet"
236
+ }
237
+ ],
238
+ "description": "Allowed children for a card"
239
+ },
240
+ "ContentTree.full.CustomCodeComponent": {
241
+ "additionalProperties": false,
242
+ "properties": {
243
+ "attributes": {
244
+ "additionalProperties": {
245
+ "type": [
246
+ "string",
247
+ "boolean"
248
+ ]
249
+ },
250
+ "description": "Configuration data to be passed to the component.",
251
+ "type": "object"
252
+ },
253
+ "attributesLastModified": {
254
+ "description": "Last date-time when the attributes for this block were modified, in ISO-8601 format.",
255
+ "type": "string"
256
+ },
257
+ "data": {},
258
+ "id": {
259
+ "description": "Id taken from the CAPI url",
260
+ "type": "string"
261
+ },
262
+ "layoutWidth": {
263
+ "$ref": "#/definitions/ContentTree.full.LayoutWidth",
264
+ "description": "How the component should be presented in the article page according to the column layout system"
265
+ },
266
+ "path": {
267
+ "description": "Repository for the code of the component in the format \"[github org]/[github repo]/[component name]\".",
268
+ "type": "string"
269
+ },
270
+ "type": {
271
+ "const": "custom-code-component",
272
+ "description": "Component type",
273
+ "type": "string"
274
+ },
275
+ "versionRange": {
276
+ "description": "Semantic version of the code of the component, e.g. \"^0.3.5\".",
277
+ "type": "string"
278
+ }
279
+ },
280
+ "required": [
281
+ "attributes",
282
+ "attributesLastModified",
283
+ "id",
284
+ "layoutWidth",
285
+ "path",
286
+ "type",
287
+ "versionRange"
288
+ ],
289
+ "type": "object"
290
+ },
291
+ "ContentTree.full.Definition": {
292
+ "additionalProperties": false,
293
+ "description": "A definition has a term and a related description. It is used to describe a term.",
294
+ "properties": {
295
+ "data": {},
296
+ "description": {
297
+ "type": "string"
298
+ },
299
+ "term": {
300
+ "type": "string"
301
+ },
302
+ "type": {
303
+ "const": "definition",
304
+ "type": "string"
305
+ }
306
+ },
307
+ "required": [
308
+ "description",
309
+ "term",
310
+ "type"
311
+ ],
312
+ "type": "object"
313
+ },
314
+ "ContentTree.full.Emphasis": {
315
+ "additionalProperties": false,
316
+ "properties": {
317
+ "children": {
318
+ "items": {
319
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
320
+ },
321
+ "type": "array"
322
+ },
323
+ "data": {},
324
+ "type": {
325
+ "const": "emphasis",
326
+ "type": "string"
327
+ }
328
+ },
329
+ "required": [
330
+ "children",
331
+ "type"
332
+ ],
333
+ "type": "object"
334
+ },
335
+ "ContentTree.full.FindOutMoreLink": {
336
+ "additionalProperties": false,
337
+ "properties": {
338
+ "children": {
339
+ "items": {
340
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
341
+ },
342
+ "type": "array"
343
+ },
344
+ "data": {},
345
+ "title": {
346
+ "type": "string"
347
+ },
348
+ "type": {
349
+ "const": "find-out-more-link",
350
+ "type": "string"
351
+ },
352
+ "url": {
353
+ "type": "string"
354
+ }
355
+ },
356
+ "required": [
357
+ "children",
358
+ "title",
359
+ "type",
360
+ "url"
361
+ ],
362
+ "type": "object"
363
+ },
364
+ "ContentTree.full.Flourish": {
365
+ "additionalProperties": false,
366
+ "properties": {
367
+ "data": {},
368
+ "description": {
369
+ "type": "string"
370
+ },
371
+ "fallbackImage": {
372
+ "additionalProperties": false,
373
+ "properties": {
374
+ "format": {
375
+ "enum": [
376
+ "desktop",
377
+ "mobile",
378
+ "square",
379
+ "square-ftedit",
380
+ "standard",
381
+ "standard-inline",
382
+ "wide"
383
+ ],
384
+ "type": "string"
385
+ },
386
+ "height": {
387
+ "type": "number"
388
+ },
389
+ "id": {
390
+ "type": "string"
391
+ },
392
+ "sourceSet": {
393
+ "items": {
394
+ "additionalProperties": false,
395
+ "properties": {
396
+ "dpr": {
397
+ "type": "number"
398
+ },
399
+ "url": {
400
+ "type": "string"
401
+ },
402
+ "width": {
403
+ "type": "number"
404
+ }
405
+ },
406
+ "required": [
407
+ "dpr",
408
+ "url",
409
+ "width"
410
+ ],
411
+ "type": "object"
412
+ },
413
+ "type": "array"
414
+ },
415
+ "url": {
416
+ "type": "string"
417
+ },
418
+ "width": {
419
+ "type": "number"
420
+ }
421
+ },
422
+ "required": [
423
+ "format",
424
+ "height",
425
+ "id",
426
+ "url",
427
+ "width"
428
+ ],
429
+ "type": "object"
430
+ },
431
+ "flourishType": {
432
+ "type": "string"
433
+ },
434
+ "fragmentIdentifier": {
435
+ "type": "string"
436
+ },
437
+ "id": {
438
+ "type": "string"
439
+ },
440
+ "layoutWidth": {
441
+ "$ref": "#/definitions/ContentTree.full.FlourishLayoutWidth"
442
+ },
443
+ "timestamp": {
444
+ "type": "string"
445
+ },
446
+ "type": {
447
+ "const": "flourish",
448
+ "type": "string"
449
+ }
450
+ },
451
+ "required": [
452
+ "flourishType",
453
+ "id",
454
+ "layoutWidth",
455
+ "type"
456
+ ],
457
+ "type": "object"
458
+ },
459
+ "ContentTree.full.FlourishLayoutWidth": {
460
+ "enum": [
461
+ "full-grid",
462
+ "in-line"
463
+ ],
464
+ "type": "string"
465
+ },
466
+ "ContentTree.full.Heading": {
467
+ "additionalProperties": false,
468
+ "properties": {
469
+ "children": {
470
+ "items": {
471
+ "$ref": "#/definitions/ContentTree.full.Text"
472
+ },
473
+ "type": "array"
474
+ },
475
+ "data": {},
476
+ "fragmentIdentifier": {
477
+ "type": "string"
478
+ },
479
+ "level": {
480
+ "enum": [
481
+ "chapter",
482
+ "label",
483
+ "subheading"
484
+ ],
485
+ "type": "string"
486
+ },
487
+ "type": {
488
+ "const": "heading",
489
+ "type": "string"
490
+ }
491
+ },
492
+ "required": [
493
+ "children",
494
+ "level",
495
+ "type"
496
+ ],
497
+ "type": "object"
498
+ },
499
+ "ContentTree.full.ImagePair": {
500
+ "additionalProperties": false,
501
+ "properties": {
502
+ "children": {
503
+ "items": [
504
+ {
505
+ "$ref": "#/definitions/ContentTree.full.ImageSet"
506
+ },
507
+ {
508
+ "$ref": "#/definitions/ContentTree.full.ImageSet"
509
+ }
510
+ ],
511
+ "maxItems": 2,
512
+ "minItems": 2,
513
+ "type": "array"
514
+ },
515
+ "data": {},
516
+ "type": {
517
+ "const": "image-pair",
518
+ "type": "string"
519
+ }
520
+ },
521
+ "required": [
522
+ "children",
523
+ "type"
524
+ ],
525
+ "type": "object"
526
+ },
527
+ "ContentTree.full.ImageSet": {
528
+ "additionalProperties": false,
529
+ "properties": {
530
+ "data": {},
531
+ "fragmentIdentifier": {
532
+ "type": "string"
533
+ },
534
+ "id": {
535
+ "type": "string"
536
+ },
537
+ "picture": {
538
+ "additionalProperties": false,
539
+ "properties": {
540
+ "alt": {
541
+ "type": "string"
542
+ },
543
+ "caption": {
544
+ "type": "string"
545
+ },
546
+ "credit": {
547
+ "type": "string"
548
+ },
549
+ "fallbackImage": {
550
+ "additionalProperties": false,
551
+ "properties": {
552
+ "format": {
553
+ "enum": [
554
+ "desktop",
555
+ "mobile",
556
+ "square",
557
+ "square-ftedit",
558
+ "standard",
559
+ "standard-inline",
560
+ "wide"
561
+ ],
562
+ "type": "string"
563
+ },
564
+ "height": {
565
+ "type": "number"
566
+ },
567
+ "id": {
568
+ "type": "string"
569
+ },
570
+ "sourceSet": {
571
+ "items": {
572
+ "additionalProperties": false,
573
+ "properties": {
574
+ "dpr": {
575
+ "type": "number"
576
+ },
577
+ "url": {
578
+ "type": "string"
579
+ },
580
+ "width": {
581
+ "type": "number"
582
+ }
583
+ },
584
+ "required": [
585
+ "dpr",
586
+ "url",
587
+ "width"
588
+ ],
589
+ "type": "object"
590
+ },
591
+ "type": "array"
592
+ },
593
+ "url": {
594
+ "type": "string"
595
+ },
596
+ "width": {
597
+ "type": "number"
598
+ }
599
+ },
600
+ "required": [
601
+ "format",
602
+ "height",
603
+ "id",
604
+ "url",
605
+ "width"
606
+ ],
607
+ "type": "object"
608
+ },
609
+ "imageType": {
610
+ "enum": [
611
+ "graphic",
612
+ "image"
613
+ ],
614
+ "type": "string"
615
+ },
616
+ "images": {
617
+ "items": {
618
+ "additionalProperties": false,
619
+ "properties": {
620
+ "format": {
621
+ "enum": [
622
+ "desktop",
623
+ "mobile",
624
+ "square",
625
+ "square-ftedit",
626
+ "standard",
627
+ "standard-inline",
628
+ "wide"
629
+ ],
630
+ "type": "string"
631
+ },
632
+ "height": {
633
+ "type": "number"
634
+ },
635
+ "id": {
636
+ "type": "string"
637
+ },
638
+ "sourceSet": {
639
+ "items": {
640
+ "additionalProperties": false,
641
+ "properties": {
642
+ "dpr": {
643
+ "type": "number"
644
+ },
645
+ "url": {
646
+ "type": "string"
647
+ },
648
+ "width": {
649
+ "type": "number"
650
+ }
651
+ },
652
+ "required": [
653
+ "dpr",
654
+ "url",
655
+ "width"
656
+ ],
657
+ "type": "object"
658
+ },
659
+ "type": "array"
660
+ },
661
+ "url": {
662
+ "type": "string"
663
+ },
664
+ "width": {
665
+ "type": "number"
666
+ }
667
+ },
668
+ "required": [
669
+ "format",
670
+ "height",
671
+ "id",
672
+ "url",
673
+ "width"
674
+ ],
675
+ "type": "object"
676
+ },
677
+ "type": "array"
678
+ },
679
+ "layoutWidth": {
680
+ "type": "string"
681
+ }
682
+ },
683
+ "required": [
684
+ "alt",
685
+ "caption",
686
+ "credit",
687
+ "fallbackImage",
688
+ "imageType",
689
+ "images",
690
+ "layoutWidth"
691
+ ],
692
+ "type": "object"
693
+ },
694
+ "type": {
695
+ "const": "image-set",
696
+ "type": "string"
697
+ }
698
+ },
699
+ "required": [
700
+ "id",
701
+ "picture",
702
+ "type"
703
+ ],
704
+ "type": "object"
705
+ },
706
+ "ContentTree.full.InNumbers": {
707
+ "additionalProperties": false,
708
+ "description": "InNumbers represents a set of numbers with related descriptions.",
709
+ "properties": {
710
+ "children": {
711
+ "items": [
712
+ {
713
+ "$ref": "#/definitions/ContentTree.full.Definition"
714
+ },
715
+ {
716
+ "$ref": "#/definitions/ContentTree.full.Definition"
717
+ },
718
+ {
719
+ "$ref": "#/definitions/ContentTree.full.Definition"
720
+ }
721
+ ],
722
+ "maxItems": 3,
723
+ "minItems": 3,
724
+ "type": "array"
725
+ },
726
+ "data": {},
727
+ "title": {
728
+ "description": "The title for the InNumbers",
729
+ "type": "string"
730
+ },
731
+ "type": {
732
+ "const": "in-numbers",
733
+ "type": "string"
734
+ }
735
+ },
736
+ "required": [
737
+ "children",
738
+ "type"
739
+ ],
740
+ "type": "object"
741
+ },
742
+ "ContentTree.full.InfoBox": {
743
+ "additionalProperties": false,
744
+ "description": "An info box describes a subject via a single card",
745
+ "properties": {
746
+ "children": {
747
+ "items": [
748
+ {
749
+ "$ref": "#/definitions/ContentTree.full.Card"
750
+ }
751
+ ],
752
+ "maxItems": 1,
753
+ "minItems": 1,
754
+ "type": "array"
755
+ },
756
+ "data": {},
757
+ "layoutWidth": {
758
+ "$ref": "#/definitions/ContentTree.full.InfoBoxLayoutWidth",
759
+ "description": "The layout width supported by this node"
760
+ },
761
+ "type": {
762
+ "const": "info-box",
763
+ "type": "string"
764
+ }
765
+ },
766
+ "required": [
767
+ "children",
768
+ "layoutWidth",
769
+ "type"
770
+ ],
771
+ "type": "object"
772
+ },
773
+ "ContentTree.full.InfoBoxLayoutWidth": {
774
+ "description": "Allowed layout widths for an InfoBox.",
775
+ "enum": [
776
+ "in-line",
777
+ "inset-left"
778
+ ],
779
+ "type": "string"
780
+ },
781
+ "ContentTree.full.InfoPair": {
782
+ "additionalProperties": false,
783
+ "description": "InfoPair provides exactly two cards.",
784
+ "properties": {
785
+ "children": {
786
+ "items": [
787
+ {
788
+ "$ref": "#/definitions/ContentTree.full.Card"
789
+ },
790
+ {
791
+ "$ref": "#/definitions/ContentTree.full.Card"
792
+ }
793
+ ],
794
+ "maxItems": 2,
795
+ "minItems": 2,
796
+ "type": "array"
797
+ },
798
+ "data": {},
799
+ "title": {
800
+ "description": "The title of the info pair",
801
+ "type": "string"
802
+ },
803
+ "type": {
804
+ "const": "info-pair",
805
+ "type": "string"
806
+ }
807
+ },
808
+ "required": [
809
+ "children",
810
+ "type"
811
+ ],
812
+ "type": "object"
813
+ },
814
+ "ContentTree.full.Layout": {
815
+ "additionalProperties": false,
816
+ "properties": {
817
+ "children": {
818
+ "anyOf": [
819
+ {
820
+ "additionalItems": {
821
+ "$ref": "#/definitions/ContentTree.full.LayoutSlot"
822
+ },
823
+ "items": [
824
+ {
825
+ "$ref": "#/definitions/ContentTree.full.Heading"
826
+ },
827
+ {
828
+ "$ref": "#/definitions/ContentTree.full.LayoutImage"
829
+ }
830
+ ],
831
+ "minItems": 2,
832
+ "type": "array"
833
+ },
834
+ {
835
+ "additionalItems": {
836
+ "$ref": "#/definitions/ContentTree.full.LayoutSlot"
837
+ },
838
+ "items": [
839
+ {
840
+ "$ref": "#/definitions/ContentTree.full.Heading"
841
+ }
842
+ ],
843
+ "minItems": 1,
844
+ "type": "array"
845
+ },
846
+ {
847
+ "items": {
848
+ "$ref": "#/definitions/ContentTree.full.LayoutSlot"
849
+ },
850
+ "type": "array"
851
+ }
852
+ ]
853
+ },
854
+ "data": {},
855
+ "layoutName": {
856
+ "enum": [
857
+ "auto",
858
+ "card",
859
+ "timeline"
860
+ ],
861
+ "type": "string"
862
+ },
863
+ "layoutWidth": {
864
+ "type": "string"
865
+ },
866
+ "type": {
867
+ "const": "layout",
868
+ "type": "string"
869
+ }
870
+ },
871
+ "required": [
872
+ "children",
873
+ "layoutName",
874
+ "layoutWidth",
875
+ "type"
876
+ ],
877
+ "type": "object"
878
+ },
879
+ "ContentTree.full.LayoutImage": {
880
+ "additionalProperties": false,
881
+ "properties": {
882
+ "alt": {
883
+ "type": "string"
884
+ },
885
+ "caption": {
886
+ "type": "string"
887
+ },
888
+ "credit": {
889
+ "type": "string"
890
+ },
891
+ "data": {},
892
+ "id": {
893
+ "type": "string"
894
+ },
895
+ "picture": {
896
+ "additionalProperties": false,
897
+ "properties": {
898
+ "alt": {
899
+ "type": "string"
900
+ },
901
+ "caption": {
902
+ "type": "string"
903
+ },
904
+ "credit": {
905
+ "type": "string"
906
+ },
907
+ "fallbackImage": {
908
+ "additionalProperties": false,
909
+ "properties": {
910
+ "format": {
911
+ "enum": [
912
+ "desktop",
913
+ "mobile",
914
+ "square",
915
+ "square-ftedit",
916
+ "standard",
917
+ "standard-inline",
918
+ "wide"
919
+ ],
920
+ "type": "string"
921
+ },
922
+ "height": {
923
+ "type": "number"
924
+ },
925
+ "id": {
926
+ "type": "string"
927
+ },
928
+ "sourceSet": {
929
+ "items": {
930
+ "additionalProperties": false,
931
+ "properties": {
932
+ "dpr": {
933
+ "type": "number"
934
+ },
935
+ "url": {
936
+ "type": "string"
937
+ },
938
+ "width": {
939
+ "type": "number"
940
+ }
941
+ },
942
+ "required": [
943
+ "dpr",
944
+ "url",
945
+ "width"
946
+ ],
947
+ "type": "object"
948
+ },
949
+ "type": "array"
950
+ },
951
+ "url": {
952
+ "type": "string"
953
+ },
954
+ "width": {
955
+ "type": "number"
956
+ }
957
+ },
958
+ "required": [
959
+ "format",
960
+ "height",
961
+ "id",
962
+ "url",
963
+ "width"
964
+ ],
965
+ "type": "object"
966
+ },
967
+ "imageType": {
968
+ "enum": [
969
+ "graphic",
970
+ "image"
971
+ ],
972
+ "type": "string"
973
+ },
974
+ "images": {
975
+ "items": {
976
+ "additionalProperties": false,
977
+ "properties": {
978
+ "format": {
979
+ "enum": [
980
+ "desktop",
981
+ "mobile",
982
+ "square",
983
+ "square-ftedit",
984
+ "standard",
985
+ "standard-inline",
986
+ "wide"
987
+ ],
988
+ "type": "string"
989
+ },
990
+ "height": {
991
+ "type": "number"
992
+ },
993
+ "id": {
994
+ "type": "string"
995
+ },
996
+ "sourceSet": {
997
+ "items": {
998
+ "additionalProperties": false,
999
+ "properties": {
1000
+ "dpr": {
1001
+ "type": "number"
1002
+ },
1003
+ "url": {
1004
+ "type": "string"
1005
+ },
1006
+ "width": {
1007
+ "type": "number"
1008
+ }
1009
+ },
1010
+ "required": [
1011
+ "dpr",
1012
+ "url",
1013
+ "width"
1014
+ ],
1015
+ "type": "object"
1016
+ },
1017
+ "type": "array"
1018
+ },
1019
+ "url": {
1020
+ "type": "string"
1021
+ },
1022
+ "width": {
1023
+ "type": "number"
1024
+ }
1025
+ },
1026
+ "required": [
1027
+ "format",
1028
+ "height",
1029
+ "id",
1030
+ "url",
1031
+ "width"
1032
+ ],
1033
+ "type": "object"
1034
+ },
1035
+ "type": "array"
1036
+ },
1037
+ "layoutWidth": {
1038
+ "type": "string"
1039
+ }
1040
+ },
1041
+ "required": [
1042
+ "alt",
1043
+ "caption",
1044
+ "credit",
1045
+ "fallbackImage",
1046
+ "imageType",
1047
+ "images",
1048
+ "layoutWidth"
1049
+ ],
1050
+ "type": "object"
1051
+ },
1052
+ "type": {
1053
+ "const": "layout-image",
1054
+ "type": "string"
1055
+ }
1056
+ },
1057
+ "required": [
1058
+ "alt",
1059
+ "caption",
1060
+ "credit",
1061
+ "id",
1062
+ "picture",
1063
+ "type"
1064
+ ],
1065
+ "type": "object"
1066
+ },
1067
+ "ContentTree.full.LayoutSlot": {
1068
+ "additionalProperties": false,
1069
+ "properties": {
1070
+ "children": {
1071
+ "items": {
1072
+ "anyOf": [
1073
+ {
1074
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
1075
+ },
1076
+ {
1077
+ "$ref": "#/definitions/ContentTree.full.Heading"
1078
+ },
1079
+ {
1080
+ "$ref": "#/definitions/ContentTree.full.LayoutImage"
1081
+ }
1082
+ ]
1083
+ },
1084
+ "type": "array"
1085
+ },
1086
+ "data": {},
1087
+ "type": {
1088
+ "const": "layout-slot",
1089
+ "type": "string"
1090
+ }
1091
+ },
1092
+ "required": [
1093
+ "children",
1094
+ "type"
1095
+ ],
1096
+ "type": "object"
1097
+ },
1098
+ "ContentTree.full.LayoutWidth": {
1099
+ "enum": [
1100
+ "auto",
1101
+ "full-bleed",
1102
+ "full-grid",
1103
+ "full-width",
1104
+ "in-line",
1105
+ "inset-left",
1106
+ "inset-right",
1107
+ "mid-grid"
1108
+ ],
1109
+ "type": "string"
1110
+ },
1111
+ "ContentTree.full.Link": {
1112
+ "additionalProperties": false,
1113
+ "properties": {
1114
+ "children": {
1115
+ "items": {
1116
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
1117
+ },
1118
+ "type": "array"
1119
+ },
1120
+ "data": {},
1121
+ "title": {
1122
+ "type": "string"
1123
+ },
1124
+ "type": {
1125
+ "const": "link",
1126
+ "type": "string"
1127
+ },
1128
+ "url": {
1129
+ "type": "string"
1130
+ }
1131
+ },
1132
+ "required": [
1133
+ "children",
1134
+ "title",
1135
+ "type",
1136
+ "url"
1137
+ ],
1138
+ "type": "object"
1139
+ },
1140
+ "ContentTree.full.List": {
1141
+ "additionalProperties": false,
1142
+ "properties": {
1143
+ "children": {
1144
+ "items": {
1145
+ "$ref": "#/definitions/ContentTree.full.ListItem"
1146
+ },
1147
+ "type": "array"
1148
+ },
1149
+ "data": {},
1150
+ "ordered": {
1151
+ "type": "boolean"
1152
+ },
1153
+ "type": {
1154
+ "const": "list",
1155
+ "type": "string"
1156
+ }
1157
+ },
1158
+ "required": [
1159
+ "children",
1160
+ "ordered",
1161
+ "type"
1162
+ ],
1163
+ "type": "object"
1164
+ },
1165
+ "ContentTree.full.ListItem": {
1166
+ "additionalProperties": false,
1167
+ "properties": {
1168
+ "children": {
1169
+ "items": {
1170
+ "anyOf": [
1171
+ {
1172
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
1173
+ },
1174
+ {
1175
+ "$ref": "#/definitions/ContentTree.full.Text"
1176
+ },
1177
+ {
1178
+ "$ref": "#/definitions/ContentTree.full.Break"
1179
+ },
1180
+ {
1181
+ "$ref": "#/definitions/ContentTree.full.Strong"
1182
+ },
1183
+ {
1184
+ "$ref": "#/definitions/ContentTree.full.Emphasis"
1185
+ },
1186
+ {
1187
+ "$ref": "#/definitions/ContentTree.full.Strikethrough"
1188
+ },
1189
+ {
1190
+ "$ref": "#/definitions/ContentTree.full.Link"
1191
+ },
1192
+ {
1193
+ "$ref": "#/definitions/ContentTree.full.FindOutMoreLink"
1194
+ }
1195
+ ]
1196
+ },
1197
+ "type": "array"
1198
+ },
1199
+ "data": {},
1200
+ "type": {
1201
+ "const": "list-item",
1202
+ "type": "string"
1203
+ }
1204
+ },
1205
+ "required": [
1206
+ "children",
1207
+ "type"
1208
+ ],
1209
+ "type": "object"
1210
+ },
1211
+ "ContentTree.full.Paragraph": {
1212
+ "additionalProperties": false,
1213
+ "properties": {
1214
+ "children": {
1215
+ "items": {
1216
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
1217
+ },
1218
+ "type": "array"
1219
+ },
1220
+ "data": {},
1221
+ "type": {
1222
+ "const": "paragraph",
1223
+ "type": "string"
1224
+ }
1225
+ },
1226
+ "required": [
1227
+ "children",
1228
+ "type"
1229
+ ],
1230
+ "type": "object"
1231
+ },
1232
+ "ContentTree.full.Phrasing": {
1233
+ "anyOf": [
1234
+ {
1235
+ "$ref": "#/definitions/ContentTree.full.Text"
1236
+ },
1237
+ {
1238
+ "$ref": "#/definitions/ContentTree.full.Break"
1239
+ },
1240
+ {
1241
+ "$ref": "#/definitions/ContentTree.full.Strong"
1242
+ },
1243
+ {
1244
+ "$ref": "#/definitions/ContentTree.full.Emphasis"
1245
+ },
1246
+ {
1247
+ "$ref": "#/definitions/ContentTree.full.Strikethrough"
1248
+ },
1249
+ {
1250
+ "$ref": "#/definitions/ContentTree.full.Link"
1251
+ },
1252
+ {
1253
+ "$ref": "#/definitions/ContentTree.full.FindOutMoreLink"
1254
+ }
1255
+ ]
1256
+ },
1257
+ "ContentTree.full.Pullquote": {
1258
+ "additionalProperties": false,
1259
+ "properties": {
1260
+ "data": {},
1261
+ "source": {
1262
+ "type": "string"
1263
+ },
1264
+ "text": {
1265
+ "type": "string"
1266
+ },
1267
+ "type": {
1268
+ "const": "pullquote",
1269
+ "type": "string"
1270
+ }
1271
+ },
1272
+ "required": [
1273
+ "text",
1274
+ "type"
1275
+ ],
1276
+ "type": "object"
1277
+ },
1278
+ "ContentTree.full.Recommended": {
1279
+ "additionalProperties": false,
1280
+ "properties": {
1281
+ "data": {},
1282
+ "heading": {
1283
+ "type": "string"
1284
+ },
1285
+ "id": {
1286
+ "type": "string"
1287
+ },
1288
+ "teaser": {
1289
+ "additionalProperties": false,
1290
+ "properties": {
1291
+ "clientName": {
1292
+ "type": "string"
1293
+ },
1294
+ "firstPublishedDate": {
1295
+ "type": "string"
1296
+ },
1297
+ "id": {
1298
+ "type": "string"
1299
+ },
1300
+ "image": {
1301
+ "additionalProperties": false,
1302
+ "properties": {
1303
+ "height": {
1304
+ "type": "number"
1305
+ },
1306
+ "url": {
1307
+ "type": "string"
1308
+ },
1309
+ "width": {
1310
+ "type": "number"
1311
+ }
1312
+ },
1313
+ "required": [
1314
+ "height",
1315
+ "url",
1316
+ "width"
1317
+ ],
1318
+ "type": "object"
1319
+ },
1320
+ "indicators": {
1321
+ "additionalProperties": false,
1322
+ "properties": {
1323
+ "accessLevel": {
1324
+ "enum": [
1325
+ "free",
1326
+ "premium",
1327
+ "registered",
1328
+ "subscribed"
1329
+ ],
1330
+ "type": "string"
1331
+ },
1332
+ "isColumn": {
1333
+ "type": "boolean"
1334
+ },
1335
+ "isEditorsChoice": {
1336
+ "type": "boolean"
1337
+ },
1338
+ "isExclusive": {
1339
+ "type": "boolean"
1340
+ },
1341
+ "isOpinion": {
1342
+ "type": "boolean"
1343
+ },
1344
+ "isPodcast": {
1345
+ "type": "boolean"
1346
+ },
1347
+ "isScoop": {
1348
+ "type": "boolean"
1349
+ }
1350
+ },
1351
+ "required": [
1352
+ "accessLevel"
1353
+ ],
1354
+ "type": "object"
1355
+ },
1356
+ "metaAltLink": {
1357
+ "additionalProperties": false,
1358
+ "properties": {
1359
+ "apiUrl": {
1360
+ "type": "string"
1361
+ },
1362
+ "directType": {
1363
+ "type": "string"
1364
+ },
1365
+ "id": {
1366
+ "type": "string"
1367
+ },
1368
+ "predicate": {
1369
+ "type": "string"
1370
+ },
1371
+ "prefLabel": {
1372
+ "type": "string"
1373
+ },
1374
+ "type": {
1375
+ "type": "string"
1376
+ },
1377
+ "types": {
1378
+ "items": {
1379
+ "type": "string"
1380
+ },
1381
+ "type": "array"
1382
+ },
1383
+ "url": {
1384
+ "type": "string"
1385
+ }
1386
+ },
1387
+ "required": [
1388
+ "apiUrl",
1389
+ "directType",
1390
+ "id",
1391
+ "predicate",
1392
+ "prefLabel",
1393
+ "type",
1394
+ "types",
1395
+ "url"
1396
+ ],
1397
+ "type": "object"
1398
+ },
1399
+ "metaLink": {
1400
+ "additionalProperties": false,
1401
+ "properties": {
1402
+ "apiUrl": {
1403
+ "type": "string"
1404
+ },
1405
+ "directType": {
1406
+ "type": "string"
1407
+ },
1408
+ "id": {
1409
+ "type": "string"
1410
+ },
1411
+ "predicate": {
1412
+ "type": "string"
1413
+ },
1414
+ "prefLabel": {
1415
+ "type": "string"
1416
+ },
1417
+ "type": {
1418
+ "type": "string"
1419
+ },
1420
+ "types": {
1421
+ "items": {
1422
+ "type": "string"
1423
+ },
1424
+ "type": "array"
1425
+ },
1426
+ "url": {
1427
+ "type": "string"
1428
+ }
1429
+ },
1430
+ "required": [
1431
+ "apiUrl",
1432
+ "directType",
1433
+ "id",
1434
+ "predicate",
1435
+ "prefLabel",
1436
+ "type",
1437
+ "types",
1438
+ "url"
1439
+ ],
1440
+ "type": "object"
1441
+ },
1442
+ "metaPrefixText": {
1443
+ "type": "string"
1444
+ },
1445
+ "metaSuffixText": {
1446
+ "type": "string"
1447
+ },
1448
+ "publishedDate": {
1449
+ "type": "string"
1450
+ },
1451
+ "title": {
1452
+ "type": "string"
1453
+ },
1454
+ "type": {
1455
+ "enum": [
1456
+ "article",
1457
+ "audio",
1458
+ "liveblog",
1459
+ "package",
1460
+ "paid-post",
1461
+ "podcast",
1462
+ "promoted-content",
1463
+ "video"
1464
+ ],
1465
+ "type": "string"
1466
+ },
1467
+ "url": {
1468
+ "type": "string"
1469
+ }
1470
+ },
1471
+ "required": [
1472
+ "firstPublishedDate",
1473
+ "id",
1474
+ "image",
1475
+ "indicators",
1476
+ "publishedDate",
1477
+ "title",
1478
+ "type",
1479
+ "url"
1480
+ ],
1481
+ "type": "object"
1482
+ },
1483
+ "teaserTitleOverride": {
1484
+ "type": "string"
1485
+ },
1486
+ "type": {
1487
+ "const": "recommended",
1488
+ "type": "string"
1489
+ }
1490
+ },
1491
+ "required": [
1492
+ "id",
1493
+ "teaser",
1494
+ "type"
1495
+ ],
1496
+ "type": "object"
1497
+ },
1498
+ "ContentTree.full.RecommendedList": {
1499
+ "additionalProperties": false,
1500
+ "properties": {
1501
+ "children": {
1502
+ "items": {
1503
+ "$ref": "#/definitions/ContentTree.full.Recommended"
1504
+ },
1505
+ "type": "array"
1506
+ },
1507
+ "data": {},
1508
+ "heading": {
1509
+ "type": "string"
1510
+ },
1511
+ "type": {
1512
+ "const": "recommended-list",
1513
+ "type": "string"
1514
+ }
1515
+ },
1516
+ "required": [
1517
+ "children",
1518
+ "type"
1519
+ ],
1520
+ "type": "object"
1521
+ },
1522
+ "ContentTree.full.ScrollyBlock": {
1523
+ "additionalProperties": false,
1524
+ "properties": {
1525
+ "children": {
1526
+ "items": {
1527
+ "$ref": "#/definitions/ContentTree.full.ScrollySection"
1528
+ },
1529
+ "type": "array"
1530
+ },
1531
+ "data": {},
1532
+ "theme": {
1533
+ "enum": [
1534
+ "sans",
1535
+ "serif"
1536
+ ],
1537
+ "type": "string"
1538
+ },
1539
+ "type": {
1540
+ "const": "scrolly-block",
1541
+ "type": "string"
1542
+ }
1543
+ },
1544
+ "required": [
1545
+ "children",
1546
+ "theme",
1547
+ "type"
1548
+ ],
1549
+ "type": "object"
1550
+ },
1551
+ "ContentTree.full.ScrollyCopy": {
1552
+ "additionalProperties": false,
1553
+ "properties": {
1554
+ "children": {
1555
+ "items": {
1556
+ "anyOf": [
1557
+ {
1558
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
1559
+ },
1560
+ {
1561
+ "$ref": "#/definitions/ContentTree.full.ScrollyHeading"
1562
+ }
1563
+ ]
1564
+ },
1565
+ "type": "array"
1566
+ },
1567
+ "data": {},
1568
+ "type": {
1569
+ "const": "scrolly-copy",
1570
+ "type": "string"
1571
+ }
1572
+ },
1573
+ "required": [
1574
+ "children",
1575
+ "type"
1576
+ ],
1577
+ "type": "object"
1578
+ },
1579
+ "ContentTree.full.ScrollyHeading": {
1580
+ "additionalProperties": false,
1581
+ "properties": {
1582
+ "children": {
1583
+ "items": {
1584
+ "$ref": "#/definitions/ContentTree.full.Text"
1585
+ },
1586
+ "type": "array"
1587
+ },
1588
+ "data": {},
1589
+ "level": {
1590
+ "enum": [
1591
+ "chapter",
1592
+ "heading",
1593
+ "subheading"
1594
+ ],
1595
+ "type": "string"
1596
+ },
1597
+ "type": {
1598
+ "const": "scrolly-heading",
1599
+ "type": "string"
1600
+ }
1601
+ },
1602
+ "required": [
1603
+ "children",
1604
+ "level",
1605
+ "type"
1606
+ ],
1607
+ "type": "object"
1608
+ },
1609
+ "ContentTree.full.ScrollyImage": {
1610
+ "additionalProperties": false,
1611
+ "properties": {
1612
+ "data": {},
1613
+ "id": {
1614
+ "type": "string"
1615
+ },
1616
+ "picture": {
1617
+ "additionalProperties": false,
1618
+ "properties": {
1619
+ "alt": {
1620
+ "type": "string"
1621
+ },
1622
+ "caption": {
1623
+ "type": "string"
1624
+ },
1625
+ "credit": {
1626
+ "type": "string"
1627
+ },
1628
+ "fallbackImage": {
1629
+ "additionalProperties": false,
1630
+ "properties": {
1631
+ "format": {
1632
+ "enum": [
1633
+ "desktop",
1634
+ "mobile",
1635
+ "square",
1636
+ "square-ftedit",
1637
+ "standard",
1638
+ "standard-inline",
1639
+ "wide"
1640
+ ],
1641
+ "type": "string"
1642
+ },
1643
+ "height": {
1644
+ "type": "number"
1645
+ },
1646
+ "id": {
1647
+ "type": "string"
1648
+ },
1649
+ "sourceSet": {
1650
+ "items": {
1651
+ "additionalProperties": false,
1652
+ "properties": {
1653
+ "dpr": {
1654
+ "type": "number"
1655
+ },
1656
+ "url": {
1657
+ "type": "string"
1658
+ },
1659
+ "width": {
1660
+ "type": "number"
1661
+ }
1662
+ },
1663
+ "required": [
1664
+ "dpr",
1665
+ "url",
1666
+ "width"
1667
+ ],
1668
+ "type": "object"
1669
+ },
1670
+ "type": "array"
1671
+ },
1672
+ "url": {
1673
+ "type": "string"
1674
+ },
1675
+ "width": {
1676
+ "type": "number"
1677
+ }
1678
+ },
1679
+ "required": [
1680
+ "format",
1681
+ "height",
1682
+ "id",
1683
+ "url",
1684
+ "width"
1685
+ ],
1686
+ "type": "object"
1687
+ },
1688
+ "imageType": {
1689
+ "enum": [
1690
+ "graphic",
1691
+ "image"
1692
+ ],
1693
+ "type": "string"
1694
+ },
1695
+ "images": {
1696
+ "items": {
1697
+ "additionalProperties": false,
1698
+ "properties": {
1699
+ "format": {
1700
+ "enum": [
1701
+ "desktop",
1702
+ "mobile",
1703
+ "square",
1704
+ "square-ftedit",
1705
+ "standard",
1706
+ "standard-inline",
1707
+ "wide"
1708
+ ],
1709
+ "type": "string"
1710
+ },
1711
+ "height": {
1712
+ "type": "number"
1713
+ },
1714
+ "id": {
1715
+ "type": "string"
1716
+ },
1717
+ "sourceSet": {
1718
+ "items": {
1719
+ "additionalProperties": false,
1720
+ "properties": {
1721
+ "dpr": {
1722
+ "type": "number"
1723
+ },
1724
+ "url": {
1725
+ "type": "string"
1726
+ },
1727
+ "width": {
1728
+ "type": "number"
1729
+ }
1730
+ },
1731
+ "required": [
1732
+ "dpr",
1733
+ "url",
1734
+ "width"
1735
+ ],
1736
+ "type": "object"
1737
+ },
1738
+ "type": "array"
1739
+ },
1740
+ "url": {
1741
+ "type": "string"
1742
+ },
1743
+ "width": {
1744
+ "type": "number"
1745
+ }
1746
+ },
1747
+ "required": [
1748
+ "format",
1749
+ "height",
1750
+ "id",
1751
+ "url",
1752
+ "width"
1753
+ ],
1754
+ "type": "object"
1755
+ },
1756
+ "type": "array"
1757
+ },
1758
+ "layoutWidth": {
1759
+ "type": "string"
1760
+ }
1761
+ },
1762
+ "required": [
1763
+ "alt",
1764
+ "caption",
1765
+ "credit",
1766
+ "fallbackImage",
1767
+ "imageType",
1768
+ "images",
1769
+ "layoutWidth"
1770
+ ],
1771
+ "type": "object"
1772
+ },
1773
+ "type": {
1774
+ "const": "scrolly-image",
1775
+ "type": "string"
1776
+ }
1777
+ },
1778
+ "required": [
1779
+ "id",
1780
+ "picture",
1781
+ "type"
1782
+ ],
1783
+ "type": "object"
1784
+ },
1785
+ "ContentTree.full.ScrollySection": {
1786
+ "additionalProperties": false,
1787
+ "properties": {
1788
+ "children": {
1789
+ "additionalItems": {
1790
+ "$ref": "#/definitions/ContentTree.full.ScrollyCopy"
1791
+ },
1792
+ "items": [
1793
+ {
1794
+ "$ref": "#/definitions/ContentTree.full.ScrollyImage"
1795
+ }
1796
+ ],
1797
+ "minItems": 1,
1798
+ "type": "array"
1799
+ },
1800
+ "data": {},
1801
+ "display": {
1802
+ "enum": [
1803
+ "dark-background",
1804
+ "light-background"
1805
+ ],
1806
+ "type": "string"
1807
+ },
1808
+ "noBox": {
1809
+ "const": true,
1810
+ "type": "boolean"
1811
+ },
1812
+ "position": {
1813
+ "enum": [
1814
+ "center",
1815
+ "left",
1816
+ "right"
1817
+ ],
1818
+ "type": "string"
1819
+ },
1820
+ "transition": {
1821
+ "enum": [
1822
+ "delay-after",
1823
+ "delay-before"
1824
+ ],
1825
+ "type": "string"
1826
+ },
1827
+ "type": {
1828
+ "const": "scrolly-section",
1829
+ "type": "string"
1830
+ }
1831
+ },
1832
+ "required": [
1833
+ "children",
1834
+ "display",
1835
+ "position",
1836
+ "type"
1837
+ ],
1838
+ "type": "object"
1839
+ },
1840
+ "ContentTree.full.Strikethrough": {
1841
+ "additionalProperties": false,
1842
+ "properties": {
1843
+ "children": {
1844
+ "items": {
1845
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
1846
+ },
1847
+ "type": "array"
1848
+ },
1849
+ "data": {},
1850
+ "type": {
1851
+ "const": "strikethrough",
1852
+ "type": "string"
1853
+ }
1854
+ },
1855
+ "required": [
1856
+ "children",
1857
+ "type"
1858
+ ],
1859
+ "type": "object"
1860
+ },
1861
+ "ContentTree.full.Strong": {
1862
+ "additionalProperties": false,
1863
+ "properties": {
1864
+ "children": {
1865
+ "items": {
1866
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
1867
+ },
1868
+ "type": "array"
1869
+ },
1870
+ "data": {},
1871
+ "type": {
1872
+ "const": "strong",
1873
+ "type": "string"
1874
+ }
1875
+ },
1876
+ "required": [
1877
+ "children",
1878
+ "type"
1879
+ ],
1880
+ "type": "object"
1881
+ },
1882
+ "ContentTree.full.Table": {
1883
+ "additionalProperties": false,
1884
+ "properties": {
1885
+ "children": {
1886
+ "anyOf": [
1887
+ {
1888
+ "items": [
1889
+ {
1890
+ "$ref": "#/definitions/ContentTree.full.TableCaption"
1891
+ },
1892
+ {
1893
+ "$ref": "#/definitions/ContentTree.full.TableBody"
1894
+ },
1895
+ {
1896
+ "$ref": "#/definitions/ContentTree.full.TableFooter"
1897
+ }
1898
+ ],
1899
+ "maxItems": 3,
1900
+ "minItems": 3,
1901
+ "type": "array"
1902
+ },
1903
+ {
1904
+ "items": [
1905
+ {
1906
+ "$ref": "#/definitions/ContentTree.full.TableCaption"
1907
+ },
1908
+ {
1909
+ "$ref": "#/definitions/ContentTree.full.TableBody"
1910
+ }
1911
+ ],
1912
+ "maxItems": 2,
1913
+ "minItems": 2,
1914
+ "type": "array"
1915
+ },
1916
+ {
1917
+ "items": [
1918
+ {
1919
+ "$ref": "#/definitions/ContentTree.full.TableBody"
1920
+ },
1921
+ {
1922
+ "$ref": "#/definitions/ContentTree.full.TableFooter"
1923
+ }
1924
+ ],
1925
+ "maxItems": 2,
1926
+ "minItems": 2,
1927
+ "type": "array"
1928
+ },
1929
+ {
1930
+ "items": [
1931
+ {
1932
+ "$ref": "#/definitions/ContentTree.full.TableBody"
1933
+ }
1934
+ ],
1935
+ "maxItems": 1,
1936
+ "minItems": 1,
1937
+ "type": "array"
1938
+ }
1939
+ ]
1940
+ },
1941
+ "collapseAfterHowManyRows": {
1942
+ "type": "number"
1943
+ },
1944
+ "columnSettings": {
1945
+ "items": {
1946
+ "additionalProperties": false,
1947
+ "properties": {
1948
+ "hideOnMobile": {
1949
+ "type": "boolean"
1950
+ },
1951
+ "sortType": {
1952
+ "enum": [
1953
+ "currency",
1954
+ "date",
1955
+ "number",
1956
+ "percent",
1957
+ "text"
1958
+ ],
1959
+ "type": "string"
1960
+ },
1961
+ "sortable": {
1962
+ "type": "boolean"
1963
+ }
1964
+ },
1965
+ "required": [
1966
+ "hideOnMobile",
1967
+ "sortType",
1968
+ "sortable"
1969
+ ],
1970
+ "type": "object"
1971
+ },
1972
+ "type": "array"
1973
+ },
1974
+ "compact": {
1975
+ "type": "boolean"
1976
+ },
1977
+ "data": {},
1978
+ "layoutWidth": {
1979
+ "$ref": "#/definitions/ContentTree.full.TableLayoutWidth"
1980
+ },
1981
+ "responsiveStyle": {
1982
+ "enum": [
1983
+ "flat",
1984
+ "overflow",
1985
+ "scroll"
1986
+ ],
1987
+ "type": "string"
1988
+ },
1989
+ "stripes": {
1990
+ "type": "boolean"
1991
+ },
1992
+ "type": {
1993
+ "const": "table",
1994
+ "type": "string"
1995
+ }
1996
+ },
1997
+ "required": [
1998
+ "children",
1999
+ "columnSettings",
2000
+ "compact",
2001
+ "layoutWidth",
2002
+ "responsiveStyle",
2003
+ "stripes",
2004
+ "type"
2005
+ ],
2006
+ "type": "object"
2007
+ },
2008
+ "ContentTree.full.TableBody": {
2009
+ "additionalProperties": false,
2010
+ "properties": {
2011
+ "children": {
2012
+ "items": {
2013
+ "$ref": "#/definitions/ContentTree.full.TableRow"
2014
+ },
2015
+ "type": "array"
2016
+ },
2017
+ "data": {},
2018
+ "type": {
2019
+ "const": "table-body",
2020
+ "type": "string"
2021
+ }
2022
+ },
2023
+ "required": [
2024
+ "children",
2025
+ "type"
2026
+ ],
2027
+ "type": "object"
2028
+ },
2029
+ "ContentTree.full.TableCaption": {
2030
+ "additionalProperties": false,
2031
+ "properties": {
2032
+ "children": {
2033
+ "items": {
2034
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
2035
+ },
2036
+ "type": "array"
2037
+ },
2038
+ "data": {},
2039
+ "type": {
2040
+ "const": "table-caption",
2041
+ "type": "string"
2042
+ }
2043
+ },
2044
+ "required": [
2045
+ "children",
2046
+ "type"
2047
+ ],
2048
+ "type": "object"
2049
+ },
2050
+ "ContentTree.full.TableCell": {
2051
+ "additionalProperties": false,
2052
+ "properties": {
2053
+ "children": {
2054
+ "items": {
2055
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
2056
+ },
2057
+ "type": "array"
2058
+ },
2059
+ "columnSpan": {
2060
+ "type": "number"
2061
+ },
2062
+ "data": {},
2063
+ "heading": {
2064
+ "type": "boolean"
2065
+ },
2066
+ "rowSpan": {
2067
+ "type": "number"
2068
+ },
2069
+ "type": {
2070
+ "const": "table-cell",
2071
+ "type": "string"
2072
+ }
2073
+ },
2074
+ "required": [
2075
+ "children",
2076
+ "type"
2077
+ ],
2078
+ "type": "object"
2079
+ },
2080
+ "ContentTree.full.TableFooter": {
2081
+ "additionalProperties": false,
2082
+ "properties": {
2083
+ "children": {
2084
+ "items": {
2085
+ "$ref": "#/definitions/ContentTree.full.Phrasing"
2086
+ },
2087
+ "type": "array"
2088
+ },
2089
+ "data": {},
2090
+ "type": {
2091
+ "const": "table-footer",
2092
+ "type": "string"
2093
+ }
2094
+ },
2095
+ "required": [
2096
+ "children",
2097
+ "type"
2098
+ ],
2099
+ "type": "object"
2100
+ },
2101
+ "ContentTree.full.TableLayoutWidth": {
2102
+ "enum": [
2103
+ "auto",
2104
+ "full-bleed",
2105
+ "full-grid",
2106
+ "inset-left",
2107
+ "inset-right"
2108
+ ],
2109
+ "type": "string"
2110
+ },
2111
+ "ContentTree.full.TableRow": {
2112
+ "additionalProperties": false,
2113
+ "properties": {
2114
+ "children": {
2115
+ "items": {
2116
+ "$ref": "#/definitions/ContentTree.full.TableCell"
2117
+ },
2118
+ "type": "array"
2119
+ },
2120
+ "data": {},
2121
+ "type": {
2122
+ "const": "table-row",
2123
+ "type": "string"
2124
+ }
2125
+ },
2126
+ "required": [
2127
+ "children",
2128
+ "type"
2129
+ ],
2130
+ "type": "object"
2131
+ },
2132
+ "ContentTree.full.Text": {
2133
+ "additionalProperties": false,
2134
+ "properties": {
2135
+ "data": {},
2136
+ "type": {
2137
+ "const": "text",
2138
+ "type": "string"
2139
+ },
2140
+ "value": {
2141
+ "type": "string"
2142
+ }
2143
+ },
2144
+ "required": [
2145
+ "type",
2146
+ "value"
2147
+ ],
2148
+ "type": "object"
2149
+ },
2150
+ "ContentTree.full.ThematicBreak": {
2151
+ "additionalProperties": false,
2152
+ "properties": {
2153
+ "data": {},
2154
+ "type": {
2155
+ "const": "thematic-break",
2156
+ "type": "string"
2157
+ }
2158
+ },
2159
+ "required": [
2160
+ "type"
2161
+ ],
2162
+ "type": "object"
2163
+ },
2164
+ "ContentTree.full.Timeline": {
2165
+ "additionalProperties": false,
2166
+ "description": "Timeline nodes display a timeline of events in arbitrary order.",
2167
+ "properties": {
2168
+ "children": {
2169
+ "items": {
2170
+ "$ref": "#/definitions/ContentTree.full.TimelineEvent"
2171
+ },
2172
+ "type": "array"
2173
+ },
2174
+ "data": {},
2175
+ "title": {
2176
+ "description": "The title for the timeline",
2177
+ "type": "string"
2178
+ },
2179
+ "type": {
2180
+ "const": "timeline",
2181
+ "type": "string"
2182
+ }
2183
+ },
2184
+ "required": [
2185
+ "children",
2186
+ "title",
2187
+ "type"
2188
+ ],
2189
+ "type": "object"
2190
+ },
2191
+ "ContentTree.full.TimelineEvent": {
2192
+ "additionalProperties": false,
2193
+ "description": "TimelineEvent is the representation of a single event in a Timeline.",
2194
+ "properties": {
2195
+ "children": {
2196
+ "description": "Any combination of paragraphs and image sets",
2197
+ "items": {
2198
+ "anyOf": [
2199
+ {
2200
+ "$ref": "#/definitions/ContentTree.full.Paragraph"
2201
+ },
2202
+ {
2203
+ "$ref": "#/definitions/ContentTree.full.ImageSet"
2204
+ }
2205
+ ]
2206
+ },
2207
+ "type": "array"
2208
+ },
2209
+ "data": {},
2210
+ "title": {
2211
+ "description": "The title of the event",
2212
+ "type": "string"
2213
+ },
2214
+ "type": {
2215
+ "const": "timeline-event",
2216
+ "type": "string"
2217
+ }
2218
+ },
2219
+ "required": [
2220
+ "children",
2221
+ "title",
2222
+ "type"
2223
+ ],
2224
+ "type": "object"
2225
+ },
2226
+ "ContentTree.full.Tweet": {
2227
+ "additionalProperties": false,
2228
+ "properties": {
2229
+ "data": {},
2230
+ "html": {
2231
+ "type": "string"
2232
+ },
2233
+ "id": {
2234
+ "type": "string"
2235
+ },
2236
+ "type": {
2237
+ "const": "tweet",
2238
+ "type": "string"
2239
+ }
2240
+ },
2241
+ "required": [
2242
+ "html",
2243
+ "id",
2244
+ "type"
2245
+ ],
2246
+ "type": "object"
2247
+ },
2248
+ "ContentTree.full.Video": {
2249
+ "additionalProperties": false,
2250
+ "properties": {
2251
+ "data": {},
2252
+ "id": {
2253
+ "type": "string"
2254
+ },
2255
+ "title": {
2256
+ "type": "string"
2257
+ },
2258
+ "type": {
2259
+ "const": "video",
2260
+ "type": "string"
2261
+ }
2262
+ },
2263
+ "required": [
2264
+ "id",
2265
+ "title",
2266
+ "type"
2267
+ ],
2268
+ "type": "object"
2269
+ },
2270
+ "ContentTree.full.YoutubeVideo": {
2271
+ "additionalProperties": false,
2272
+ "properties": {
2273
+ "data": {},
2274
+ "type": {
2275
+ "const": "youtube-video",
2276
+ "type": "string"
2277
+ },
2278
+ "url": {
2279
+ "type": "string"
2280
+ }
2281
+ },
2282
+ "required": [
2283
+ "type",
2284
+ "url"
2285
+ ],
2286
+ "type": "object"
2287
+ }
2288
+ },
2289
+ "properties": {
2290
+ "body": {
2291
+ "$ref": "#/definitions/ContentTree.full.Body"
2292
+ },
2293
+ "data": {},
2294
+ "type": {
2295
+ "const": "root",
2296
+ "type": "string"
2297
+ }
2298
+ },
2299
+ "required": [
2300
+ "body",
2301
+ "type"
2302
+ ],
2303
+ "type": "object"
2304
+ }
2305
+