-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy paththeme.json
2729 lines (2729 loc) · 78.1 KB
/
theme.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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"title": "JSON schema for WordPress block theme global settings and styles",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"//": {
"explainer": "https://developer.wordpress.org/themes/advanced-topics/theme-json/",
"createTheme": "https://developer.wordpress.org/themes/",
"reference": "https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/"
},
"refComplete": {
"type": "object",
"properties": {
"ref": {
"description": "A reference to another property value. e.g. `styles.color.text`",
"type": "string"
}
},
"additionalProperties": false
},
"settingsAppearanceToolsProperties": {
"type": "object",
"properties": {
"appearanceTools": {
"description": "Setting that enables the following UI tools:\n\n- background: backgroundImage, backgroundSize\n- border: color, radius, style, width\n- color: link, heading, button, caption\n- dimensions: aspectRatio, minHeight\n- position: sticky\n- spacing: blockGap, margin, padding\n- typography: lineHeight",
"type": "boolean",
"default": false
}
}
},
"settingsBackgroundProperties": {
"type": "object",
"properties": {
"background": {
"description": "Settings related to background.",
"type": "object",
"properties": {
"backgroundImage": {
"description": "Allow users to set a background image.",
"type": "boolean",
"default": false
},
"backgroundSize": {
"description": "Allow users to set values related to the size of a background image, including size, position, and repeat controls.",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
}
},
"settingsBorderProperties": {
"type": "object",
"properties": {
"border": {
"description": "Settings related to borders.",
"type": "object",
"properties": {
"color": {
"description": "Allow users to set custom border colors.",
"type": "boolean",
"default": false
},
"radius": {
"description": "Allow users to set custom border radius.",
"type": "boolean",
"default": false
},
"style": {
"description": "Allow users to set custom border styles.",
"type": "boolean",
"default": false
},
"width": {
"description": "Allow users to set custom border widths.",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
}
},
"settingsColorProperties": {
"type": "object",
"properties": {
"color": {
"description": "Settings related to colors.",
"type": "object",
"properties": {
"background": {
"description": "Allow users to set background colors.",
"type": "boolean",
"default": true
},
"custom": {
"description": "Allow users to select custom colors.",
"type": "boolean",
"default": true
},
"customDuotone": {
"description": "Allow users to create custom duotone filters.",
"type": "boolean",
"default": true
},
"customGradient": {
"description": "Allow users to create custom gradients.",
"type": "boolean",
"default": true
},
"defaultDuotone": {
"description": "Allow users to choose filters from the default duotone filter presets.",
"type": "boolean",
"default": true
},
"defaultGradients": {
"description": "Allow users to choose colors from the default gradients.",
"type": "boolean",
"default": true
},
"defaultPalette": {
"description": "Allow users to choose colors from the default palette.",
"type": "boolean",
"default": true
},
"duotone": {
"description": "Duotone presets for the duotone picker.\nDoesn't generate classes or properties.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the duotone preset, translatable.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the duotone preset.",
"type": "string"
},
"colors": {
"description": "List of colors from dark to light.",
"type": "array",
"items": {
"description": "CSS hex or rgb string.",
"type": "string"
}
}
},
"required": [ "name", "slug", "colors" ],
"additionalProperties": false
}
},
"gradients": {
"description": "Gradient presets for the gradient picker.\nGenerates a single class (`.has-{slug}-background`) and custom property (`--wp--preset--gradient--{slug}`) per preset value.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the gradient preset, translatable.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the gradient preset.",
"type": "string"
},
"gradient": {
"description": "CSS gradient string.",
"type": "string"
}
},
"required": [ "name", "slug", "gradient" ],
"additionalProperties": false
}
},
"link": {
"description": "Allow users to set link colors in a block.",
"type": "boolean",
"default": false
},
"palette": {
"description": "Color palette presets for the color picker.\nGenerates three classes (`.has-{slug}-color`, `.has-{slug}-background-color`, and `.has-{slug}-border-color`) and a single custom property (`--wp--preset--color--{slug}`) per preset value.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the color preset, translatable.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the color preset.",
"type": "string"
},
"color": {
"description": "CSS hex or rgb(a) string.",
"type": "string"
}
},
"required": [ "name", "slug", "color" ],
"additionalProperties": false
}
},
"text": {
"description": "Allow users to set text colors in a block.",
"type": "boolean",
"default": true
},
"heading": {
"description": "Allow users to set heading colors in a block.",
"type": "boolean",
"default": true
},
"button": {
"description": "Allow users to set button colors in a block.",
"type": "boolean",
"default": true
},
"caption": {
"description": "Allow users to set caption colors in a block.",
"type": "boolean",
"default": true
}
},
"additionalProperties": false
}
}
},
"settingsDimensionsProperties": {
"type": "object",
"properties": {
"dimensions": {
"description": "Settings related to dimensions.",
"type": "object",
"properties": {
"aspectRatio": {
"description": "Allow users to set an aspect ratio.",
"type": "boolean",
"default": false
},
"defaultAspectRatios": {
"description": "Allow users to choose aspect ratios from the default set of aspect ratios.",
"type": "boolean",
"default": true
},
"aspectRatios": {
"description": "Allow users to define aspect ratios for some blocks.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the aspect ratio preset.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the aspect ratio preset.",
"type": "string"
},
"ratio": {
"description": "Aspect ratio expressed as a division or decimal.",
"type": "string"
}
}
}
},
"minHeight": {
"description": "Allow users to set custom minimum height.",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
}
},
"settingsLayoutProperties": {
"type": "object",
"properties": {
"layout": {
"description": "Settings related to layout.",
"type": "object",
"properties": {
"contentSize": {
"description": "Sets the max-width of the content.",
"type": "string"
},
"wideSize": {
"description": "Sets the max-width of wide (`.alignwide`) content. Also used as the maximum viewport when calculating fluid font sizes",
"type": "string"
},
"allowEditing": {
"description": "Disable the layout UI controls.",
"type": "boolean",
"default": true
},
"allowCustomContentAndWideSize": {
"description": "Enable or disable the custom content and wide size controls.",
"type": "boolean",
"default": true
}
},
"additionalProperties": false
}
}
},
"settingsLightboxProperties": {
"type": "object",
"properties": {
"lightbox": {
"description": "Settings related to the lightbox.",
"type": "object",
"properties": {
"enabled": {
"description": "Defines whether the lightbox is enabled or not.",
"type": "boolean"
},
"allowEditing": {
"description": "Defines whether to show the Lightbox UI in the block editor. If set to `false`, the user won't be able to change the lightbox settings in the block editor.",
"type": "boolean"
}
},
"additionalProperties": false
}
}
},
"settingsPositionProperties": {
"type": "object",
"properties": {
"position": {
"description": "Settings related to position.",
"type": "object",
"properties": {
"sticky": {
"description": "Allow users to set sticky position.",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
}
},
"settingsShadowProperties": {
"type": "object",
"properties": {
"shadow": {
"description": "Settings related to shadows.",
"type": "object",
"properties": {
"defaultPresets": {
"description": "Allow users to choose shadows from the default shadow presets.",
"type": "boolean",
"default": true
},
"presets": {
"description": "Shadow presets for the shadow picker.\nGenerates a single custom property (`--wp--preset--shadow--{slug}`) per preset value.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the shadow preset, translatable.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the shadow preset.",
"type": "string"
},
"shadow": {
"description": "CSS box-shadow value",
"type": "string"
}
},
"required": [ "name", "slug", "shadow" ],
"additionalProperties": false
}
}
},
"additionalProperties": false
}
}
},
"settingsSpacingProperties": {
"type": "object",
"properties": {
"spacing": {
"description": "Settings related to spacing.",
"type": "object",
"properties": {
"blockGap": {
"description": "Enables `--wp--style--block-gap` to be generated from styles.spacing.blockGap.\nA value of `null` instead of `false` further disables layout styles from being generated.",
"oneOf": [
{ "type": "boolean" },
{ "type": "null" }
],
"default": null
},
"margin": {
"description": "Allow users to set a custom margin.",
"type": "boolean",
"default": false
},
"padding": {
"description": "Allow users to set a custom padding.",
"type": "boolean",
"default": false
},
"units": {
"description": "List of units the user can use for spacing values.",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"default": [ "px", "em", "rem", "vh", "vw", "%" ]
},
"customSpacingSize": {
"description": "Allow users to set custom space sizes.",
"type": "boolean",
"default": true
},
"defaultSpacingSizes": {
"description": "Allow users to choose space sizes from the default space size presets.",
"type": "boolean",
"default": true
},
"spacingSizes": {
"description": "Space size presets for the space size selector.\nGenerates a custom property (`--wp--preset--spacing--{slug}`) per preset value.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the space size preset, translatable.",
"type": "string"
},
"slug": {
"description": "Unique identifier for the space size preset. For best cross theme compatibility these should be in the form '10','20','30','40','50','60', etc. with '50' representing the 'Medium' size step. If all slugs begin with a number they will be merged with default and user slugs and sorted numerically.",
"type": "string"
},
"size": {
"description": "CSS space-size value, including units.",
"type": "string"
}
},
"additionalProperties": false
}
},
"spacingScale": {
"description": "Settings to auto-generate space size presets for the space size selector.\nGenerates a custom property (--wp--preset--spacing--{slug}`) per preset value.",
"type": "object",
"properties": {
"operator": {
"description": "With + or * depending on whether scale is generated by increment or multiplier.",
"type": "string",
"enum": [ "+", "*" ],
"default": "*"
},
"increment": {
"description": "The amount to increment each step by.",
"type": "number",
"exclusiveMinimum": 0,
"default": 1.5
},
"steps": {
"description": "Number of steps to generate in scale.",
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 7
},
"mediumStep": {
"description": "The value to medium setting in the scale.",
"type": "number",
"exclusiveMinimum": 0,
"default": 1.5
},
"unit": {
"description": "Unit that the scale uses, eg. rem, em, px.",
"type": "string",
"enum": [
"px",
"em",
"rem",
"%",
"vw",
"svw",
"lvw",
"dvw",
"vh",
"svh",
"lvh",
"dvh",
"vi",
"svi",
"lvi",
"dvi",
"vb",
"svb",
"lvb",
"dvb",
"vmin",
"svmin",
"lvmin",
"dvmin",
"vmax",
"svmax",
"lvmax",
"dvmax"
],
"default": "rem"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}
},
"settingsTypographyProperties": {
"type": "object",
"properties": {
"typography": {
"description": "Settings related to typography.",
"type": "object",
"properties": {
"defaultFontSizes": {
"description": "Allow users to choose font sizes from the default font size presets.",
"type": "boolean",
"default": true
},
"customFontSize": {
"description": "Allow users to set custom font sizes.",
"type": "boolean",
"default": true
},
"fontStyle": {
"description": "Allow users to set custom font styles.",
"type": "boolean",
"default": true
},
"fontWeight": {
"description": "Allow users to set custom font weights.",
"type": "boolean",
"default": true
},
"fluid": {
"description": "Enables fluid typography and allows users to set global fluid typography parameters.",
"oneOf": [
{
"type": "object",
"properties": {
"minFontSize": {
"description": "Allow users to set a global minimum font size boundary in px, rem or em. Custom font sizes below this value will not be clamped, and all calculated minimum font sizes will be, at a minimum, this value.",
"type": "string"
},
"maxViewportWidth": {
"description": "Allow users to set custom a max viewport width in px, rem or em, used to set the maximum size boundary of a fluid font size.",
"type": "string"
},
"minViewportWidth": {
"description": "Allow users to set a custom min viewport width in px, rem or em, used to set the minimum size boundary of a fluid font size.",
"type": "string"
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
],
"default": false
},
"letterSpacing": {
"description": "Allow users to set custom letter spacing.",
"type": "boolean",
"default": true
},
"lineHeight": {
"description": "Allow users to set custom line height.",
"type": "boolean",
"default": false
},
"textAlign": {
"description": "Allow users to set the text align.",
"type": "boolean",
"default": true
},
"textColumns": {
"description": "Allow users to set the number of text columns.",
"type": "boolean",
"default": false
},
"textDecoration": {
"description": "Allow users to set custom text decorations.",
"type": "boolean",
"default": true
},
"writingMode": {
"description": "Allow users to set the writing mode.",
"type": "boolean",
"default": false
},
"textTransform": {
"description": "Allow users to set custom text transforms.",
"type": "boolean",
"default": true
},
"dropCap": {
"description": "Enable drop cap.",
"type": "boolean",
"default": true
},
"fontSizes": {
"description": "Font size presets for the font size selector.\nGenerates a single class (`.has-{slug}-color`) and custom property (`--wp--preset--font-size--{slug}`) per preset value.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the font size preset, translatable.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the font size preset.",
"type": "string"
},
"size": {
"description": "CSS font-size value, including units.",
"type": "string"
},
"fluid": {
"description": "Specifies the minimum and maximum font size value of a fluid font size. Set to `false` to bypass fluid calculations and use the static `size` value.",
"oneOf": [
{
"type": "object",
"properties": {
"min": {
"description": "A min font size for fluid font size calculations in px, rem or em.",
"type": "string"
},
"max": {
"description": "A max font size for fluid font size calculations in px, rem or em.",
"type": "string"
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
}
},
"additionalProperties": false
}
},
"fontFamilies": {
"description": "Font family presets for the font family selector.\nGenerates a single custom property (`--wp--preset--font-family--{slug}`) per preset value.",
"type": "array",
"items": {
"description": "Font family preset",
"type": "object",
"properties": {
"name": {
"description": "Name of the font family preset, translatable.",
"type": "string"
},
"slug": {
"description": "Kebab-case unique identifier for the font family preset.",
"type": "string"
},
"fontFamily": {
"description": "CSS font-family value.",
"type": "string"
},
"fontFace": {
"description": "Array of font-face declarations.",
"type": "array",
"items": {
"type": "object",
"properties": {
"fontFamily": {
"description": "CSS font-family value.",
"type": "string",
"default": ""
},
"fontStyle": {
"description": "CSS font-style value.",
"type": "string",
"default": "normal"
},
"fontWeight": {
"description": "List of available font weights, separated by a space.",
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"default": "400"
},
"fontDisplay": {
"description": "CSS font-display value.",
"type": "string",
"enum": [
"auto",
"block",
"fallback",
"swap",
"optional"
],
"default": "fallback"
},
"src": {
"description": "Paths or URLs to the font files.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"default": []
},
"fontStretch": {
"description": "CSS font-stretch value.",
"type": "string"
},
"ascentOverride": {
"description": "CSS ascent-override value.",
"type": "string"
},
"descentOverride": {
"description": "CSS descent-override value.",
"type": "string"
},
"fontVariant": {
"description": "CSS font-variant value.",
"type": "string"
},
"fontFeatureSettings": {
"description": "CSS font-feature-settings value.",
"type": "string"
},
"fontVariationSettings": {
"description": "CSS font-variation-settings value.",
"type": "string"
},
"lineGapOverride": {
"description": "CSS line-gap-override value.",
"type": "string"
},
"sizeAdjust": {
"description": "CSS size-adjust value.",
"type": "string"
},
"unicodeRange": {
"description": "CSS unicode-range value.",
"type": "string"
}
},
"required": [ "fontFamily", "src" ],
"additionalProperties": false
}
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}
}
},
"settingsCustomProperties": {
"type": "object",
"properties": {
"custom": {
"$ref": "#/definitions/settingsCustomAdditionalProperties"
}
}
},
"settingsProperties": {
"allOf": [
{ "$ref": "#/definitions/settingsAppearanceToolsProperties" },
{ "$ref": "#/definitions/settingsBackgroundProperties" },
{ "$ref": "#/definitions/settingsBorderProperties" },
{ "$ref": "#/definitions/settingsColorProperties" },
{ "$ref": "#/definitions/settingsDimensionsProperties" },
{ "$ref": "#/definitions/settingsLayoutProperties" },
{ "$ref": "#/definitions/settingsLightboxProperties" },
{ "$ref": "#/definitions/settingsPositionProperties" },
{ "$ref": "#/definitions/settingsShadowProperties" },
{ "$ref": "#/definitions/settingsSpacingProperties" },
{ "$ref": "#/definitions/settingsTypographyProperties" },
{ "$ref": "#/definitions/settingsCustomProperties" }
]
},
"settingsPropertyNames": {
"enum": [
"appearanceTools",
"background",
"border",
"color",
"dimensions",
"layout",
"lightbox",
"position",
"shadow",
"spacing",
"typography",
"custom"
]
},
"settingsPropertiesComplete": {
"allOf": [
{
"$ref": "#/definitions/settingsProperties"
},
{
"type": "object",
"propertyNames": {
"$ref": "#/definitions/settingsPropertyNames"
}
}
]
},
"settingsBlocksPropertiesComplete": {
"description": "Settings defined on a per-block basis.",
"type": "object",
"properties": {
"core/archives": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/audio": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/avatar": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/block": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/button": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/buttons": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/calendar": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/categories": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/code": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/column": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/columns": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-author-avatar": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-author-name": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-content": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-date": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-edit-link": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-reply-link": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comments": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comments-pagination": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comments-pagination-next": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comments-pagination-numbers": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comments-pagination-previous": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comments-title": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/comment-template": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/cover": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/details": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/embed": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/file": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/footnotes": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/freeform": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/gallery": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/group": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/heading": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/home-link": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/html": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/image": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/latest-comments": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/latest-posts": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/list": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/list-item": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/loginout": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/media-text": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/missing": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/more": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/navigation": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/navigation-link": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/navigation-submenu": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/nextpage": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/page-list": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/page-list-item": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/paragraph": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/post-author": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/post-author-biography": {
"$ref": "#/definitions/settingsPropertiesComplete"
},
"core/post-author-name": {