@cloudcannon/configuration-types 0.0.7 → 0.0.9

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.
@@ -157,6 +157,16 @@
157
157
  },
158
158
  "type": "object"
159
159
  },
160
+ "AttributeListPosition": {
161
+ "enum": [
162
+ "none",
163
+ "right",
164
+ "space right",
165
+ "below",
166
+ "newline below"
167
+ ],
168
+ "type": "string"
169
+ },
160
170
  "BaseInput": {
161
171
  "additionalProperties": false,
162
172
  "properties": {
@@ -289,8 +299,18 @@
289
299
  "type": "string"
290
300
  },
291
301
  "code": {
292
- "description": "Enables a control to set selected text to inline code, and unselected blocks of text to code blocks.",
293
- "markdownDescription": "Enables a control to set selected text to inline code, and unselected blocks of text to code\nblocks.",
302
+ "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
303
+ "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
304
+ "type": "boolean"
305
+ },
306
+ "code_block": {
307
+ "description": "Enables a control to insert a code block.",
308
+ "markdownDescription": "Enables a control to insert a code block.",
309
+ "type": "boolean"
310
+ },
311
+ "code_inline": {
312
+ "description": "Enables a control to create an inline code element, containing any selected text.",
313
+ "markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
294
314
  "type": "boolean"
295
315
  },
296
316
  "copyformatting": {
@@ -298,12 +318,6 @@
298
318
  "markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
299
319
  "type": "boolean"
300
320
  },
301
- "correct_orientation": {
302
- "default": true,
303
- "description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
304
- "markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
305
- "type": "boolean"
306
- },
307
321
  "embed": {
308
322
  "description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
309
323
  "markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
@@ -370,7 +384,8 @@
370
384
  "description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
371
385
  "enum": [
372
386
  "image/jpeg",
373
- "image/png"
387
+ "image/png",
388
+ "image/webp"
374
389
  ],
375
390
  "markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
376
391
  "type": "string"
@@ -500,6 +515,206 @@
500
515
  },
501
516
  "type": "object"
502
517
  },
518
+ "BuildCoupledCollectionConfig": {
519
+ "additionalProperties": false,
520
+ "properties": {
521
+ "_array_structures": {
522
+ "additionalProperties": {},
523
+ "deprecated": "Use _structures instead.",
524
+ "description": "Now known as _structures.",
525
+ "markdownDescription": "Now known as _structures.",
526
+ "type": "object"
527
+ },
528
+ "_comments": {
529
+ "additionalProperties": {
530
+ "type": "string"
531
+ },
532
+ "deprecated": "Use _inputs instead.",
533
+ "description": "Now part of _inputs.*.comment.",
534
+ "markdownDescription": "Now part of _inputs.*.comment.",
535
+ "type": "object"
536
+ },
537
+ "_editables": {
538
+ "$ref": "#/definitions/Editables",
539
+ "description": "Contains input options for Editable Regions and the Content Editor.",
540
+ "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
541
+ },
542
+ "_enabled_editors": {
543
+ "description": "Set a preferred editor and/or disable the others. The first value sets which editor opens by default, and the following values specify which editors are accessible.",
544
+ "items": {
545
+ "$ref": "#/definitions/EditorKey"
546
+ },
547
+ "markdownDescription": "Set a preferred editor and/or disable the others. The first value sets which editor opens by\ndefault, and the following values specify which editors are accessible.",
548
+ "type": "array"
549
+ },
550
+ "_inputs": {
551
+ "additionalProperties": {
552
+ "$ref": "#/definitions/Input"
553
+ },
554
+ "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
555
+ "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
556
+ "type": "object"
557
+ },
558
+ "_options": {
559
+ "additionalProperties": {
560
+ "additionalProperties": {},
561
+ "type": "object"
562
+ },
563
+ "deprecated": "Use _inputs instead.",
564
+ "description": "Now part of _inputs.*.options.",
565
+ "markdownDescription": "Now part of _inputs.*.options.",
566
+ "type": "object"
567
+ },
568
+ "_select_data": {
569
+ "additionalProperties": {
570
+ "$ref": "#/definitions/SelectValues"
571
+ },
572
+ "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
573
+ "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
574
+ "type": "object"
575
+ },
576
+ "_structures": {
577
+ "additionalProperties": {
578
+ "$ref": "#/definitions/Structure"
579
+ },
580
+ "description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
581
+ "markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be\nreferenced in the configuration for `array` or `object` inputs.",
582
+ "type": "object"
583
+ },
584
+ "add_options": {
585
+ "description": "Changes the options presented in the add menu in the collection file list. Defaults to an automatically generated list from _Schemas_, or uses the first file in the collection if no schemas are configured.",
586
+ "items": {
587
+ "$ref": "#/definitions/AddOption"
588
+ },
589
+ "markdownDescription": "Changes the options presented in the add menu in the collection file list. Defaults to an\nautomatically generated list from _Schemas_, or uses the first file in the collection if no\nschemas are configured.",
590
+ "type": "array"
591
+ },
592
+ "create": {
593
+ "$ref": "#/definitions/Create",
594
+ "description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
595
+ "markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
596
+ },
597
+ "description": {
598
+ "description": "Text or Markdown to show above the collection file list.",
599
+ "markdownDescription": "Text or Markdown to show above the collection file list.",
600
+ "type": "string"
601
+ },
602
+ "disable_add": {
603
+ "description": "Prevents users from adding new files in the collection file list if true.",
604
+ "markdownDescription": "Prevents users from adding new files in the collection file list if true.",
605
+ "type": "boolean"
606
+ },
607
+ "disable_add_folder": {
608
+ "description": "Prevents users from adding new folders in the collection file list if true.",
609
+ "markdownDescription": "Prevents users from adding new folders in the collection file list if true.",
610
+ "type": "boolean"
611
+ },
612
+ "disable_file_actions": {
613
+ "description": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
614
+ "markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
615
+ "type": "boolean"
616
+ },
617
+ "documentation": {
618
+ "$ref": "#/definitions/Documentation",
619
+ "description": "Provides a custom link for documentation for editors shown above the collection file list.",
620
+ "markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
621
+ },
622
+ "filter": {
623
+ "anyOf": [
624
+ {
625
+ "$ref": "#/definitions/Filter"
626
+ },
627
+ {
628
+ "$ref": "#/definitions/FilterBase"
629
+ }
630
+ ],
631
+ "description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
632
+ "markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
633
+ },
634
+ "glob": {
635
+ "anyOf": [
636
+ {
637
+ "items": {
638
+ "type": "string"
639
+ },
640
+ "type": "array"
641
+ },
642
+ {
643
+ "type": "string"
644
+ }
645
+ ],
646
+ "description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
647
+ "markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
648
+ },
649
+ "icon": {
650
+ "$ref": "#/definitions/Icon",
651
+ "description": "Sets an icon to use alongside references to this collection.",
652
+ "markdownDescription": "Sets an icon to use alongside references to this collection."
653
+ },
654
+ "name": {
655
+ "description": "The display name of this collection. Used in headings and in the context menu for items in the collection. This is optional as CloudCannon auto-generates this from the collection key.",
656
+ "markdownDescription": "The display name of this collection. Used in headings and in the context menu for items in the\ncollection. This is optional as CloudCannon auto-generates this from the collection key.",
657
+ "type": "string"
658
+ },
659
+ "new_preview_url": {
660
+ "description": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will load that set preview URL and use the Data Bindings and Previews to render your new page without saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the Visual Editor.",
661
+ "markdownDescription": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will\nload that set preview URL and use the Data Bindings and Previews to render your new page\nwithout saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the\nVisual Editor.",
662
+ "type": "string"
663
+ },
664
+ "output": {
665
+ "description": "Whether or not files in this collection produce files in the build output.",
666
+ "markdownDescription": "Whether or not files in this collection produce files in the build output.",
667
+ "type": "boolean"
668
+ },
669
+ "path": {
670
+ "description": "The top-most folder where the files in this collection are stored. It is relative to source.",
671
+ "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
672
+ "type": "string"
673
+ },
674
+ "preview": {
675
+ "$ref": "#/definitions/Preview",
676
+ "description": "Changes the way items are previewed in the CMS.",
677
+ "markdownDescription": "Changes the way items are previewed in the CMS."
678
+ },
679
+ "schema_key": {
680
+ "description": "The key used in each file to identify the schema that file uses. The value this key represents in each of this collection's files should match the keys in schemas. Defaults to _schema.",
681
+ "markdownDescription": "The key used in each file to identify the schema that file uses. The value this key represents\nin each of this collection's files should match the keys in schemas. Defaults to _schema.",
682
+ "type": "string"
683
+ },
684
+ "schemas": {
685
+ "additionalProperties": {
686
+ "$ref": "#/definitions/Schema"
687
+ },
688
+ "description": "The set of schemas for this collection. Schemas are used when creating and editing files in this collection. Each entry corresponds to a schema that describes a data structure for this collection.\n\nThe keys in this object should match the values used for schema_key inside each of this collection's files. default is a special entry and is used when a file has no schema.",
689
+ "markdownDescription": "The set of schemas for this collection. Schemas are used when creating and editing files in\nthis collection. Each entry corresponds to a schema that describes a data structure for this\ncollection.\n\nThe keys in this object should match the values used for schema_key inside each of this\ncollection's files. default is a special entry and is used when a file has no schema.",
690
+ "type": "object"
691
+ },
692
+ "singular_key": {
693
+ "description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
694
+ "markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
695
+ "type": "string"
696
+ },
697
+ "singular_name": {
698
+ "description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
699
+ "markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
700
+ "type": "string"
701
+ },
702
+ "sort": {
703
+ "$ref": "#/definitions/Sort",
704
+ "description": "Sets the default sorting for the collection file list. Defaults to the first option in sort_options, then falls back descending path. As an exception, defaults to descending date for blog-like collections.",
705
+ "markdownDescription": "Sets the default sorting for the collection file list. Defaults to the first option in\nsort_options, then falls back descending path. As an exception, defaults to descending date for\nblog-like collections."
706
+ },
707
+ "sort_options": {
708
+ "description": "Controls the available options in the sort menu. Defaults to generating the options from the first item in the collection, falling back to ascending path and descending path.",
709
+ "items": {
710
+ "$ref": "#/definitions/SortOption"
711
+ },
712
+ "markdownDescription": "Controls the available options in the sort menu. Defaults to generating the options from the\nfirst item in the collection, falling back to ascending path and descending path.",
713
+ "type": "array"
714
+ }
715
+ },
716
+ "type": "object"
717
+ },
503
718
  "ChoiceInput": {
504
719
  "additionalProperties": false,
505
720
  "properties": {
@@ -732,10 +947,10 @@
732
947
  "type": "number"
733
948
  },
734
949
  "theme": {
950
+ "$ref": "#/definitions/Theme",
735
951
  "default": "monokai",
736
952
  "description": "Changes the color scheme for syntax highlighting in the editor.",
737
- "markdownDescription": "Changes the color scheme for syntax highlighting in the editor.",
738
- "type": "string"
953
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
739
954
  }
740
955
  },
741
956
  "type": "object"
@@ -949,8 +1164,8 @@
949
1164
  "type": "string"
950
1165
  },
951
1166
  "publish_to": {
952
- "description": "Defines a target collection when publishing. When a file is published (currently only relevant to Jekyll), the target collection's create definition is used instead.",
953
- "markdownDescription": "Defines a target collection when publishing. When a file is published (currently only relevant\nto Jekyll), the target collection's create definition is used instead.",
1167
+ "description": "Defines a target collection when publishing. When a file is published, the target collection's create definition is used instead.",
1168
+ "markdownDescription": "Defines a target collection when publishing. When a file is published, the target collection's\ncreate definition is used instead.",
954
1169
  "type": "string"
955
1170
  }
956
1171
  },
@@ -1079,487 +1294,69 @@
1079
1294
  }
1080
1295
  },
1081
1296
  "required": [
1082
- "url"
1083
- ],
1084
- "type": "object"
1085
- },
1086
- "Editables": {
1087
- "additionalProperties": false,
1088
- "properties": {
1089
- "block": {
1090
- "$ref": "#/definitions/BlockEditable",
1091
- "description": "Contains input options for block Editable Regions.",
1092
- "markdownDescription": "Contains input options for block Editable Regions."
1093
- },
1094
- "content": {
1095
- "$ref": "#/definitions/BlockEditable",
1096
- "description": "Contains input options for the Content Editor.",
1097
- "markdownDescription": "Contains input options for the Content Editor."
1098
- },
1099
- "image": {
1100
- "$ref": "#/definitions/ImageEditable",
1101
- "description": "Contains input options for image Editable Regions.",
1102
- "markdownDescription": "Contains input options for image Editable Regions."
1103
- },
1104
- "link": {
1105
- "$ref": "#/definitions/LinkEditable",
1106
- "description": "Contains input options for link Editable Regions.",
1107
- "markdownDescription": "Contains input options for link Editable Regions."
1108
- },
1109
- "text": {
1110
- "$ref": "#/definitions/TextEditable",
1111
- "description": "Contains input options for text Editable Regions.",
1112
- "markdownDescription": "Contains input options for text Editable Regions."
1113
- }
1114
- },
1115
- "type": "object"
1116
- },
1117
- "Editor": {
1118
- "additionalProperties": false,
1119
- "properties": {
1120
- "default_path": {
1121
- "default": "/",
1122
- "description": "The URL used for the dashboard screenshot, and where the editor opens to when clicking the dashboard \"Edit Home\" button.",
1123
- "markdownDescription": "The URL used for the dashboard screenshot, and where the editor opens to when clicking the\ndashboard \"Edit Home\" button.",
1124
- "type": "string"
1125
- }
1126
- },
1127
- "required": [
1128
- "default_path"
1129
- ],
1130
- "type": "object"
1131
- },
1132
- "EditorKey": {
1133
- "enum": [
1134
- "visual",
1135
- "content",
1136
- "data"
1137
- ],
1138
- "type": "string"
1139
- },
1140
- "EleventyConfiguration": {
1141
- "additionalProperties": false,
1142
- "properties": {
1143
- "_array_structures": {
1144
- "additionalProperties": {},
1145
- "description": "[DEPRECATED] Now known as _structures.",
1146
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1147
- "type": "object"
1148
- },
1149
- "_comments": {
1150
- "additionalProperties": {
1151
- "type": "string"
1152
- },
1153
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1154
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1155
- "type": "object"
1156
- },
1157
- "_editables": {
1158
- "$ref": "#/definitions/Editables",
1159
- "description": "Contains input options for Editable Regions and the Content Editor.",
1160
- "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
1161
- },
1162
- "_enabled_editors": {
1163
- "description": "Set a preferred editor and/or disable the others. The first value sets which editor opens by default, and the following values specify which editors are accessible.",
1164
- "items": {
1165
- "$ref": "#/definitions/EditorKey"
1166
- },
1167
- "markdownDescription": "Set a preferred editor and/or disable the others. The first value sets which editor opens by\ndefault, and the following values specify which editors are accessible.",
1168
- "type": "array"
1169
- },
1170
- "_inputs": {
1171
- "additionalProperties": {
1172
- "$ref": "#/definitions/Input"
1173
- },
1174
- "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1175
- "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1176
- "type": "object"
1177
- },
1178
- "_options": {
1179
- "additionalProperties": {
1180
- "additionalProperties": {},
1181
- "type": "object"
1182
- },
1183
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1184
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1185
- "type": "object"
1186
- },
1187
- "_select_data": {
1188
- "additionalProperties": {
1189
- "$ref": "#/definitions/SelectValues"
1190
- },
1191
- "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
1192
- "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
1193
- "type": "object"
1194
- },
1195
- "_snippets": {
1196
- "additionalProperties": {
1197
- "$ref": "#/definitions/SnippetConfig"
1198
- },
1199
- "description": "Configuration for custom snippets.",
1200
- "markdownDescription": "Configuration for custom snippets.",
1201
- "type": "object"
1202
- },
1203
- "_snippets_definitions": {
1204
- "additionalProperties": {
1205
- "$ref": "#/definitions/SnippetConfig"
1206
- },
1207
- "description": "Extended option used when creating more complex custom snippets.",
1208
- "markdownDescription": "Extended option used when creating more complex custom snippets.",
1209
- "type": "object"
1210
- },
1211
- "_snippets_imports": {
1212
- "$ref": "#/definitions/SnippetsImports",
1213
- "description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
1214
- "markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
1215
- },
1216
- "_snippets_templates": {
1217
- "additionalProperties": {
1218
- "$ref": "#/definitions/SnippetConfig"
1219
- },
1220
- "description": "Extended option used when creating more complex custom snippets.",
1221
- "markdownDescription": "Extended option used when creating more complex custom snippets.",
1222
- "type": "object"
1223
- },
1224
- "_structures": {
1225
- "additionalProperties": {
1226
- "$ref": "#/definitions/Structure"
1227
- },
1228
- "description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
1229
- "markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be\nreferenced in the configuration for `array` or `object` inputs.",
1230
- "type": "object"
1231
- },
1232
- "base_url": {
1233
- "description": "The subpath where your output files are hosted.",
1234
- "markdownDescription": "The subpath where your output files are hosted.",
1235
- "type": "string"
1236
- },
1237
- "collection_groups": {
1238
- "description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
1239
- "items": {
1240
- "$ref": "#/definitions/CollectionGroup"
1241
- },
1242
- "markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
1243
- "type": "array"
1244
- },
1245
- "collections_config": {
1246
- "additionalProperties": {
1247
- "additionalProperties": false,
1248
- "properties": {
1249
- "_array_structures": {
1250
- "additionalProperties": {},
1251
- "description": "[DEPRECATED] Now known as _structures.",
1252
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1253
- "type": "object"
1254
- },
1255
- "_comments": {
1256
- "additionalProperties": {
1257
- "type": "string"
1258
- },
1259
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1260
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1261
- "type": "object"
1262
- },
1263
- "_editables": {
1264
- "$ref": "#/definitions/Editables",
1265
- "description": "Contains input options for Editable Regions and the Content Editor.",
1266
- "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
1267
- },
1268
- "_enabled_editors": {
1269
- "description": "Set a preferred editor and/or disable the others. The first value sets which editor opens by default, and the following values specify which editors are accessible.",
1270
- "items": {
1271
- "$ref": "#/definitions/EditorKey"
1272
- },
1273
- "markdownDescription": "Set a preferred editor and/or disable the others. The first value sets which editor opens by\ndefault, and the following values specify which editors are accessible.",
1274
- "type": "array"
1275
- },
1276
- "_inputs": {
1277
- "additionalProperties": {
1278
- "$ref": "#/definitions/Input"
1279
- },
1280
- "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1281
- "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1282
- "type": "object"
1283
- },
1284
- "_options": {
1285
- "additionalProperties": {
1286
- "additionalProperties": {},
1287
- "type": "object"
1288
- },
1289
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1290
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1291
- "type": "object"
1292
- },
1293
- "_select_data": {
1294
- "additionalProperties": {
1295
- "$ref": "#/definitions/SelectValues"
1296
- },
1297
- "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
1298
- "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
1299
- "type": "object"
1300
- },
1301
- "_structures": {
1302
- "additionalProperties": {
1303
- "$ref": "#/definitions/Structure"
1304
- },
1305
- "description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
1306
- "markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be\nreferenced in the configuration for `array` or `object` inputs.",
1307
- "type": "object"
1308
- },
1309
- "add_options": {
1310
- "description": "Changes the options presented in the add menu in the collection file list. Defaults to an automatically generated list from _Schemas_, or uses the first file in the collection if no schemas are configured.",
1311
- "items": {
1312
- "$ref": "#/definitions/AddOption"
1313
- },
1314
- "markdownDescription": "Changes the options presented in the add menu in the collection file list. Defaults to an\nautomatically generated list from _Schemas_, or uses the first file in the collection if no\nschemas are configured.",
1315
- "type": "array"
1316
- },
1317
- "create": {
1318
- "$ref": "#/definitions/Create",
1319
- "description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
1320
- "markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
1321
- },
1322
- "description": {
1323
- "description": "Text or Markdown to show above the collection file list.",
1324
- "markdownDescription": "Text or Markdown to show above the collection file list.",
1325
- "type": "string"
1326
- },
1327
- "disable_add": {
1328
- "description": "Prevents users from adding new files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only (data sub-folders act as non-output collections). Otherwise, defaults to false.",
1329
- "markdownDescription": "Prevents users from adding new files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only\n(data sub-folders act as non-output collections). Otherwise, defaults to false.",
1330
- "type": "boolean"
1331
- },
1332
- "disable_add_folder": {
1333
- "description": "Prevents users from adding new folders in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only (data sub-folders act as non-output collections). Otherwise, defaults to false.",
1334
- "markdownDescription": "Prevents users from adding new folders in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only\n(data sub-folders act as non-output collections). Otherwise, defaults to false.",
1335
- "type": "boolean"
1336
- },
1337
- "disable_file_actions": {
1338
- "description": "Prevents users from renaming, moving and deleting files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only (data sub-folders act as non-output collections). Otherwise, defaults to false.",
1339
- "markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.\n\nDefaults to true for the Jekyll, Hugo and Eleventy data collection in the base data folder only\n(data sub-folders act as non-output collections). Otherwise, defaults to false.",
1340
- "type": "boolean"
1341
- },
1342
- "documentation": {
1343
- "$ref": "#/definitions/Documentation",
1344
- "description": "Provides a custom link for documentation for editors shown above the collection file list.",
1345
- "markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
1346
- },
1347
- "filter": {
1348
- "anyOf": [
1349
- {
1350
- "$ref": "#/definitions/Filter"
1351
- },
1352
- {
1353
- "$ref": "#/definitions/FilterBase"
1354
- }
1355
- ],
1356
- "description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
1357
- "markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
1358
- },
1359
- "glob": {
1360
- "anyOf": [
1361
- {
1362
- "type": "string"
1363
- },
1364
- {
1365
- "items": {
1366
- "type": "string"
1367
- },
1368
- "type": "array"
1369
- }
1370
- ],
1371
- "description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
1372
- "markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
1373
- },
1374
- "icon": {
1375
- "$ref": "#/definitions/Icon",
1376
- "description": "Sets an icon to use alongside references to this collection.",
1377
- "markdownDescription": "Sets an icon to use alongside references to this collection."
1378
- },
1379
- "name": {
1380
- "description": "The display name of this collection. Used in headings and in the context menu for items in the collection. This is optional as CloudCannon auto-generates this from the collection key.",
1381
- "markdownDescription": "The display name of this collection. Used in headings and in the context menu for items in the\ncollection. This is optional as CloudCannon auto-generates this from the collection key.",
1382
- "type": "string"
1383
- },
1384
- "new_preview_url": {
1385
- "description": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will load that set preview URL and use the Data Bindings and Previews to render your new page without saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the Visual Editor.",
1386
- "markdownDescription": "Preview your unbuilt pages (e.g. drafts) to another page’s output URL. The Visual Editor will\nload that set preview URL and use the Data Bindings and Previews to render your new page\nwithout saving.\n\nFor example new_preview_url: /about/ will load the /about/ URL on new or unbuilt pages in the\nVisual Editor.",
1387
- "type": "string"
1388
- },
1389
- "output": {
1390
- "description": "Whether or not files in this collection produce files in the build output.",
1391
- "markdownDescription": "Whether or not files in this collection produce files in the build output.",
1392
- "type": "boolean"
1393
- },
1394
- "path": {
1395
- "description": "The top-most folder where the files in this collection are stored. It is relative to source.",
1396
- "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
1397
- "type": "string"
1398
- },
1399
- "preview": {
1400
- "$ref": "#/definitions/Preview",
1401
- "description": "Changes the way items are previewed in the CMS.",
1402
- "markdownDescription": "Changes the way items are previewed in the CMS."
1403
- },
1404
- "schema_key": {
1405
- "description": "The key used in each file to identify the schema that file uses. The value this key represents in each of this collection's files should match the keys in schemas. Defaults to _schema.",
1406
- "markdownDescription": "The key used in each file to identify the schema that file uses. The value this key represents\nin each of this collection's files should match the keys in schemas. Defaults to _schema.",
1407
- "type": "string"
1408
- },
1409
- "schemas": {
1410
- "additionalProperties": {
1411
- "$ref": "#/definitions/Schema"
1412
- },
1413
- "description": "The set of schemas for this collection. Schemas are used when creating and editing files in this collection. Each entry corresponds to a schema that describes a data structure for this collection.\n\nThe keys in this object should match the values used for schema_key inside each of this collection's files. default is a special entry and is used when a file has no schema.",
1414
- "markdownDescription": "The set of schemas for this collection. Schemas are used when creating and editing files in\nthis collection. Each entry corresponds to a schema that describes a data structure for this\ncollection.\n\nThe keys in this object should match the values used for schema_key inside each of this\ncollection's files. default is a special entry and is used when a file has no schema.",
1415
- "type": "object"
1416
- },
1417
- "singular_key": {
1418
- "description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
1419
- "markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
1420
- "type": "string"
1421
- },
1422
- "singular_name": {
1423
- "description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
1424
- "markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
1425
- "type": "string"
1426
- },
1427
- "sort": {
1428
- "$ref": "#/definitions/Sort",
1429
- "description": "Sets the default sorting for the collection file list. Defaults to the first option in sort_options, then falls back descending path. As an exception, defaults to descending date for blog-like collections.",
1430
- "markdownDescription": "Sets the default sorting for the collection file list. Defaults to the first option in\nsort_options, then falls back descending path. As an exception, defaults to descending date for\nblog-like collections."
1431
- },
1432
- "sort_options": {
1433
- "description": "Controls the available options in the sort menu. Defaults to generating the options from the first item in the collection, falling back to ascending path and descending path.",
1434
- "items": {
1435
- "$ref": "#/definitions/SortOption"
1436
- },
1437
- "markdownDescription": "Controls the available options in the sort menu. Defaults to generating the options from the\nfirst item in the collection, falling back to ascending path and descending path.",
1438
- "type": "array"
1439
- }
1440
- },
1441
- "type": "object"
1442
- },
1443
- "description": "Definitions for your collections, which are the sets of content files for your site grouped by folder. Entries are keyed by a chosen collection key, and contain configuration specific to that collection.",
1444
- "markdownDescription": "Definitions for your collections, which are the sets of content files for your site grouped by\nfolder. Entries are keyed by a chosen collection key, and contain configuration specific to\nthat collection.",
1445
- "type": "object"
1446
- },
1447
- "collections_config_override": {
1448
- "description": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true. Defaults to false.",
1449
- "markdownDescription": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true.\nDefaults to false.",
1450
- "type": "boolean"
1451
- },
1452
- "commit_templates": {
1453
- "items": {
1454
- "$ref": "#/definitions/CommitTemplate"
1455
- },
1456
- "type": "array"
1457
- },
1458
- "data_config": {
1459
- "additionalProperties": {
1460
- "type": "boolean"
1461
- },
1462
- "description": "Controls what data sets are available to populate select and multiselect inputs.",
1463
- "markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
1464
- "type": "object"
1465
- },
1466
- "editor": {
1467
- "$ref": "#/definitions/Editor",
1468
- "description": "Contains settings for the default editor actions on your site.",
1469
- "markdownDescription": "Contains settings for the default editor actions on your site."
1470
- },
1471
- "file_config": {
1472
- "additionalProperties": {
1473
- "$ref": "#/definitions/FileConfigEntry"
1474
- },
1475
- "description": "Provides scope to configure at a file level, without adding configuration to files.",
1476
- "markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
1477
- "type": "object"
1478
- },
1479
- "generator": {
1480
- "additionalProperties": false,
1481
- "description": "Contains settings for various Markdown engines.",
1482
- "markdownDescription": "Contains settings for various Markdown engines.",
1483
- "properties": {
1484
- "metadata": {
1485
- "additionalProperties": false,
1486
- "description": "Settings for various Markdown engines.",
1487
- "markdownDescription": "Settings for various Markdown engines.",
1488
- "properties": {
1489
- "commonmark": {
1490
- "description": "Markdown options specific used when markdown is set to \"commonmark\".",
1491
- "markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
1492
- "type": "object"
1493
- },
1494
- "commonmarkghpages": {
1495
- "description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
1496
- "markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
1497
- "type": "object"
1498
- },
1499
- "goldmark": {
1500
- "description": "Markdown options specific used when markdown is set to \"goldmark\".",
1501
- "markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
1502
- "type": "object"
1503
- },
1504
- "kramdown": {
1505
- "description": "Markdown options specific used when markdown is set to \"kramdown\".",
1506
- "markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
1507
- "type": "object"
1508
- },
1509
- "markdown": {
1510
- "description": "The Markdown engine used on your site.",
1511
- "enum": [
1512
- "kramdown",
1513
- "commonmark",
1514
- "commonmarkghpages",
1515
- "goldmark",
1516
- "markdown-it"
1517
- ],
1518
- "markdownDescription": "The Markdown engine used on your site.",
1519
- "type": "string"
1520
- },
1521
- "markdown-it": {
1522
- "description": "Markdown options specific used when markdown is set to \"markdown-it\".",
1523
- "markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
1524
- "type": "object"
1525
- }
1526
- },
1527
- "required": [
1528
- "markdown"
1529
- ],
1530
- "type": "object"
1531
- }
1532
- },
1533
- "type": "object"
1297
+ "url"
1298
+ ],
1299
+ "type": "object"
1300
+ },
1301
+ "Editables": {
1302
+ "additionalProperties": false,
1303
+ "properties": {
1304
+ "block": {
1305
+ "$ref": "#/definitions/BlockEditable",
1306
+ "description": "Contains input options for block Editable Regions.",
1307
+ "markdownDescription": "Contains input options for block Editable Regions."
1534
1308
  },
1535
- "paths": {
1536
- "$ref": "#/definitions/Paths",
1537
- "description": "Global paths to common folders.",
1538
- "markdownDescription": "Global paths to common folders."
1309
+ "content": {
1310
+ "$ref": "#/definitions/BlockEditable",
1311
+ "description": "Contains input options for the Content Editor.",
1312
+ "markdownDescription": "Contains input options for the Content Editor."
1539
1313
  },
1540
- "source": {
1541
- "description": "Base path to your site source files, relative to the root folder.",
1542
- "markdownDescription": "Base path to your site source files, relative to the root folder.",
1543
- "type": "string"
1314
+ "image": {
1315
+ "$ref": "#/definitions/ImageEditable",
1316
+ "description": "Contains input options for image Editable Regions.",
1317
+ "markdownDescription": "Contains input options for image Editable Regions."
1544
1318
  },
1545
- "source_editor": {
1546
- "$ref": "#/definitions/SourceEditor",
1547
- "description": "Settings for the behavior and appearance of the Source Editor.",
1548
- "markdownDescription": "Settings for the behavior and appearance of the Source Editor."
1319
+ "link": {
1320
+ "$ref": "#/definitions/LinkEditable",
1321
+ "description": "Contains input options for link Editable Regions.",
1322
+ "markdownDescription": "Contains input options for link Editable Regions."
1549
1323
  },
1550
- "ssg": {
1551
- "const": "eleventy",
1324
+ "text": {
1325
+ "$ref": "#/definitions/TextEditable",
1326
+ "description": "Contains input options for text Editable Regions.",
1327
+ "markdownDescription": "Contains input options for text Editable Regions."
1328
+ }
1329
+ },
1330
+ "type": "object"
1331
+ },
1332
+ "Editor": {
1333
+ "additionalProperties": false,
1334
+ "properties": {
1335
+ "default_path": {
1336
+ "default": "/",
1337
+ "description": "The URL used for the dashboard screenshot, and where the editor opens to when clicking the dashboard \"Edit Home\" button.",
1338
+ "markdownDescription": "The URL used for the dashboard screenshot, and where the editor opens to when clicking the\ndashboard \"Edit Home\" button.",
1552
1339
  "type": "string"
1553
- },
1554
- "timezone": {
1555
- "$ref": "#/definitions/Timezone",
1556
- "default": "Etc/UTC",
1557
- "description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
1558
- "markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
1559
1340
  }
1560
1341
  },
1342
+ "required": [
1343
+ "default_path"
1344
+ ],
1561
1345
  "type": "object"
1562
1346
  },
1347
+ "EditorKey": {
1348
+ "enum": [
1349
+ "visual",
1350
+ "content",
1351
+ "data"
1352
+ ],
1353
+ "type": "string"
1354
+ },
1355
+ "EleventyConfiguration": {
1356
+ "$ref": "#/definitions/JekyllConfiguration",
1357
+ "description": "The configuration format for build-coupled Eleventy sites.",
1358
+ "markdownDescription": "The configuration format for build-coupled Eleventy sites."
1359
+ },
1563
1360
  "EmptyTypeArray": {
1564
1361
  "enum": [
1565
1362
  "null",
@@ -1593,16 +1390,18 @@
1593
1390
  "properties": {
1594
1391
  "_array_structures": {
1595
1392
  "additionalProperties": {},
1596
- "description": "[DEPRECATED] Now known as _structures.",
1597
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1393
+ "deprecated": "Use _structures instead.",
1394
+ "description": "Now known as _structures.",
1395
+ "markdownDescription": "Now known as _structures.",
1598
1396
  "type": "object"
1599
1397
  },
1600
1398
  "_comments": {
1601
1399
  "additionalProperties": {
1602
1400
  "type": "string"
1603
1401
  },
1604
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1605
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1402
+ "deprecated": "Use _inputs instead.",
1403
+ "description": "Now part of _inputs.*.comment.",
1404
+ "markdownDescription": "Now part of _inputs.*.comment.",
1606
1405
  "type": "object"
1607
1406
  },
1608
1407
  "_editables": {
@@ -1631,8 +1430,9 @@
1631
1430
  "additionalProperties": {},
1632
1431
  "type": "object"
1633
1432
  },
1634
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1635
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1433
+ "deprecated": "Use _inputs instead.",
1434
+ "description": "Now part of _inputs.*.options.",
1435
+ "markdownDescription": "Now part of _inputs.*.options.",
1636
1436
  "type": "object"
1637
1437
  },
1638
1438
  "_select_data": {
@@ -1653,14 +1453,14 @@
1653
1453
  },
1654
1454
  "glob": {
1655
1455
  "anyOf": [
1656
- {
1657
- "type": "string"
1658
- },
1659
1456
  {
1660
1457
  "items": {
1661
1458
  "type": "string"
1662
1459
  },
1663
1460
  "type": "array"
1461
+ },
1462
+ {
1463
+ "type": "string"
1664
1464
  }
1665
1465
  ],
1666
1466
  "description": "The glob pattern(s) targeting a path to one or more files.",
@@ -3970,12 +3770,6 @@
3970
3770
  "markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset\nsources can be uploaded to and selected from.",
3971
3771
  "type": "array"
3972
3772
  },
3973
- "correct_orientation": {
3974
- "default": true,
3975
- "description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
3976
- "markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
3977
- "type": "boolean"
3978
- },
3979
3773
  "expandable": {
3980
3774
  "default": false,
3981
3775
  "description": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized.",
@@ -3997,7 +3791,8 @@
3997
3791
  "description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
3998
3792
  "enum": [
3999
3793
  "image/jpeg",
4000
- "image/png"
3794
+ "image/png",
3795
+ "image/webp"
4001
3796
  ],
4002
3797
  "markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
4003
3798
  "type": "string"
@@ -4165,12 +3960,6 @@
4165
3960
  "markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset\nsources can be uploaded to and selected from.",
4166
3961
  "type": "array"
4167
3962
  },
4168
- "correct_orientation": {
4169
- "default": true,
4170
- "description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
4171
- "markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
4172
- "type": "boolean"
4173
- },
4174
3963
  "empty_type": {
4175
3964
  "$ref": "#/definitions/EmptyTypeText",
4176
3965
  "description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
@@ -4197,7 +3986,8 @@
4197
3986
  "description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
4198
3987
  "enum": [
4199
3988
  "image/jpeg",
4200
- "image/png"
3989
+ "image/png",
3990
+ "image/webp"
4201
3991
  ],
4202
3992
  "markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
4203
3993
  "type": "string"
@@ -4357,15 +4147,352 @@
4357
4147
  ],
4358
4148
  "type": "string"
4359
4149
  },
4360
- "LinkEditable": {
4150
+ "JekyllConfiguration": {
4151
+ "additionalProperties": false,
4152
+ "description": "The configuration format for build-coupled Jekyll sites.",
4153
+ "markdownDescription": "The configuration format for build-coupled Jekyll sites.",
4154
+ "properties": {
4155
+ "_array_structures": {
4156
+ "additionalProperties": {},
4157
+ "deprecated": "Use _structures instead.",
4158
+ "description": "Now known as _structures.",
4159
+ "markdownDescription": "Now known as _structures.",
4160
+ "type": "object"
4161
+ },
4162
+ "_comments": {
4163
+ "additionalProperties": {
4164
+ "type": "string"
4165
+ },
4166
+ "deprecated": "Use _inputs instead.",
4167
+ "description": "Now part of _inputs.*.comment.",
4168
+ "markdownDescription": "Now part of _inputs.*.comment.",
4169
+ "type": "object"
4170
+ },
4171
+ "_editables": {
4172
+ "$ref": "#/definitions/Editables",
4173
+ "description": "Contains input options for Editable Regions and the Content Editor.",
4174
+ "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
4175
+ },
4176
+ "_enabled_editors": {
4177
+ "description": "Set a preferred editor and/or disable the others. The first value sets which editor opens by default, and the following values specify which editors are accessible.",
4178
+ "items": {
4179
+ "$ref": "#/definitions/EditorKey"
4180
+ },
4181
+ "markdownDescription": "Set a preferred editor and/or disable the others. The first value sets which editor opens by\ndefault, and the following values specify which editors are accessible.",
4182
+ "type": "array"
4183
+ },
4184
+ "_inputs": {
4185
+ "additionalProperties": {
4186
+ "$ref": "#/definitions/Input"
4187
+ },
4188
+ "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
4189
+ "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
4190
+ "type": "object"
4191
+ },
4192
+ "_options": {
4193
+ "additionalProperties": {
4194
+ "additionalProperties": {},
4195
+ "type": "object"
4196
+ },
4197
+ "deprecated": "Use _inputs instead.",
4198
+ "description": "Now part of _inputs.*.options.",
4199
+ "markdownDescription": "Now part of _inputs.*.options.",
4200
+ "type": "object"
4201
+ },
4202
+ "_select_data": {
4203
+ "additionalProperties": {
4204
+ "$ref": "#/definitions/SelectValues"
4205
+ },
4206
+ "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
4207
+ "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
4208
+ "type": "object"
4209
+ },
4210
+ "_snippets": {
4211
+ "additionalProperties": {
4212
+ "$ref": "#/definitions/SnippetConfig"
4213
+ },
4214
+ "description": "Configuration for custom snippets.",
4215
+ "markdownDescription": "Configuration for custom snippets.",
4216
+ "type": "object"
4217
+ },
4218
+ "_snippets_definitions": {
4219
+ "additionalProperties": {
4220
+ "$ref": "#/definitions/SnippetConfig"
4221
+ },
4222
+ "description": "Extended option used when creating more complex custom snippets.",
4223
+ "markdownDescription": "Extended option used when creating more complex custom snippets.",
4224
+ "type": "object"
4225
+ },
4226
+ "_snippets_imports": {
4227
+ "$ref": "#/definitions/SnippetsImports",
4228
+ "description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
4229
+ "markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
4230
+ },
4231
+ "_snippets_templates": {
4232
+ "additionalProperties": {
4233
+ "$ref": "#/definitions/SnippetConfig"
4234
+ },
4235
+ "description": "Extended option used when creating more complex custom snippets.",
4236
+ "markdownDescription": "Extended option used when creating more complex custom snippets.",
4237
+ "type": "object"
4238
+ },
4239
+ "_structures": {
4240
+ "additionalProperties": {
4241
+ "$ref": "#/definitions/Structure"
4242
+ },
4243
+ "description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
4244
+ "markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be\nreferenced in the configuration for `array` or `object` inputs.",
4245
+ "type": "object"
4246
+ },
4247
+ "base_url": {
4248
+ "description": "The subpath where your output files are hosted.",
4249
+ "markdownDescription": "The subpath where your output files are hosted.",
4250
+ "type": "string"
4251
+ },
4252
+ "collection_groups": {
4253
+ "description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
4254
+ "items": {
4255
+ "$ref": "#/definitions/CollectionGroup"
4256
+ },
4257
+ "markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
4258
+ "type": "array"
4259
+ },
4260
+ "collections_config": {
4261
+ "additionalProperties": {
4262
+ "$ref": "#/definitions/BuildCoupledCollectionConfig"
4263
+ },
4264
+ "description": "Definitions for your collections, which are the sets of content files for your site grouped by folder. Entries are keyed by a chosen collection key, and contain configuration specific to that collection.",
4265
+ "markdownDescription": "Definitions for your collections, which are the sets of content files for your site grouped by\nfolder. Entries are keyed by a chosen collection key, and contain configuration specific to\nthat collection.",
4266
+ "type": "object"
4267
+ },
4268
+ "collections_config_override": {
4269
+ "description": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true. Defaults to false.",
4270
+ "markdownDescription": "Prevents CloudCannon from automatically discovering collections for supported SSGs if true.\nDefaults to false.",
4271
+ "type": "boolean"
4272
+ },
4273
+ "commit_templates": {
4274
+ "description": "Templates for commit messages when saving changes.",
4275
+ "items": {
4276
+ "$ref": "#/definitions/CommitTemplate"
4277
+ },
4278
+ "markdownDescription": "Templates for commit messages when saving changes.",
4279
+ "type": "array"
4280
+ },
4281
+ "data_config": {
4282
+ "additionalProperties": {
4283
+ "type": "boolean"
4284
+ },
4285
+ "type": "object"
4286
+ },
4287
+ "editor": {
4288
+ "$ref": "#/definitions/Editor",
4289
+ "description": "Contains settings for the default editor actions on your site.",
4290
+ "markdownDescription": "Contains settings for the default editor actions on your site."
4291
+ },
4292
+ "file_config": {
4293
+ "additionalProperties": {
4294
+ "$ref": "#/definitions/FileConfigEntry"
4295
+ },
4296
+ "description": "Provides scope to configure at a file level, without adding configuration to files.",
4297
+ "markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
4298
+ "type": "object"
4299
+ },
4300
+ "markdown": {
4301
+ "$ref": "#/definitions/MarkdownSettings",
4302
+ "description": "Contains settings for various Markdown engines.",
4303
+ "markdownDescription": "Contains settings for various Markdown engines."
4304
+ },
4305
+ "paths": {
4306
+ "$ref": "#/definitions/Paths",
4307
+ "description": "Global paths to common folders.",
4308
+ "markdownDescription": "Global paths to common folders."
4309
+ },
4310
+ "source": {
4311
+ "description": "Base path to your site source files, relative to the root folder.",
4312
+ "markdownDescription": "Base path to your site source files, relative to the root folder.",
4313
+ "type": "string"
4314
+ },
4315
+ "source_editor": {
4316
+ "$ref": "#/definitions/SourceEditor",
4317
+ "description": "Settings for the behavior and appearance of the Source Editor.",
4318
+ "markdownDescription": "Settings for the behavior and appearance of the Source Editor."
4319
+ },
4320
+ "timezone": {
4321
+ "$ref": "#/definitions/Timezone",
4322
+ "default": "Etc/UTC",
4323
+ "description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
4324
+ "markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
4325
+ }
4326
+ },
4327
+ "type": "object"
4328
+ },
4329
+ "LinkEditable": {
4330
+ "additionalProperties": false,
4331
+ "properties": {
4332
+ "paths": {
4333
+ "$ref": "#/definitions/ReducedPaths",
4334
+ "description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
4335
+ "markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
4336
+ }
4337
+ },
4338
+ "type": "object"
4339
+ },
4340
+ "MarkdownAttributeElementOptions": {
4341
+ "additionalProperties": false,
4342
+ "properties": {
4343
+ "block": {
4344
+ "$ref": "#/definitions/AttributeListPosition"
4345
+ },
4346
+ "blockquote": {
4347
+ "$ref": "#/definitions/AttributeListPosition"
4348
+ },
4349
+ "img": {
4350
+ "$ref": "#/definitions/AttributeListPosition"
4351
+ },
4352
+ "inline": {
4353
+ "$ref": "#/definitions/AttributeListPosition"
4354
+ },
4355
+ "li": {
4356
+ "$ref": "#/definitions/AttributeListPosition"
4357
+ },
4358
+ "ol": {
4359
+ "$ref": "#/definitions/AttributeListPosition"
4360
+ },
4361
+ "table": {
4362
+ "$ref": "#/definitions/AttributeListPosition"
4363
+ },
4364
+ "td": {
4365
+ "$ref": "#/definitions/AttributeListPosition"
4366
+ },
4367
+ "tr": {
4368
+ "$ref": "#/definitions/AttributeListPosition"
4369
+ },
4370
+ "ul": {
4371
+ "$ref": "#/definitions/AttributeListPosition"
4372
+ }
4373
+ },
4374
+ "type": "object"
4375
+ },
4376
+ "MarkdownSettings": {
4361
4377
  "additionalProperties": false,
4362
4378
  "properties": {
4363
- "paths": {
4364
- "$ref": "#/definitions/ReducedPaths",
4365
- "description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
4366
- "markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
4379
+ "engine": {
4380
+ "enum": [
4381
+ "commonmark",
4382
+ "kramdown"
4383
+ ],
4384
+ "type": "string"
4385
+ },
4386
+ "options": {
4387
+ "additionalProperties": false,
4388
+ "properties": {
4389
+ "attribute_elements": {
4390
+ "$ref": "#/definitions/MarkdownAttributeElementOptions",
4391
+ "description": "Define positioning behaviour of Markdown attributes for different elements.",
4392
+ "markdownDescription": "Define positioning behaviour of Markdown attributes for different elements."
4393
+ },
4394
+ "attributes": {
4395
+ "description": "Save element attributes in Markdown format instead of converting to HTML.",
4396
+ "markdownDescription": "Save element attributes in Markdown format instead of converting to HTML.",
4397
+ "type": "boolean"
4398
+ },
4399
+ "breaks": {
4400
+ "description": "Convert '\\n' in paragraphs into <br>.",
4401
+ "markdownDescription": "Convert '\\n' in paragraphs into <br>.",
4402
+ "type": "boolean"
4403
+ },
4404
+ "code_block_fences": {
4405
+ "description": "Determines which style of code block fences to use.",
4406
+ "enum": [
4407
+ "```",
4408
+ "~~~"
4409
+ ],
4410
+ "markdownDescription": "Determines which style of code block fences to use.",
4411
+ "type": "string"
4412
+ },
4413
+ "escape_snippets_in_code_blocks": {
4414
+ "description": "Render snippets as plain text within code blocks.",
4415
+ "markdownDescription": "Render snippets as plain text within code blocks.",
4416
+ "type": "boolean"
4417
+ },
4418
+ "gfm": {
4419
+ "description": "Enable GFM mode.",
4420
+ "markdownDescription": "Enable GFM mode.",
4421
+ "type": "boolean"
4422
+ },
4423
+ "heading_ids": {
4424
+ "description": "Generate IDs for headings",
4425
+ "markdownDescription": "Generate IDs for headings",
4426
+ "type": "boolean"
4427
+ },
4428
+ "html": {
4429
+ "description": "Output HTML tags from source.",
4430
+ "markdownDescription": "Output HTML tags from source.",
4431
+ "type": "boolean"
4432
+ },
4433
+ "linkify": {
4434
+ "description": "Autoconvert URL-like text to links.",
4435
+ "markdownDescription": "Autoconvert URL-like text to links.",
4436
+ "type": "boolean"
4437
+ },
4438
+ "quotes": {
4439
+ "description": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
4440
+ "markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
4441
+ "type": "string"
4442
+ },
4443
+ "sentence_per_line": {
4444
+ "description": "Add linebreaks between sentences in Markdown.",
4445
+ "markdownDescription": "Add linebreaks between sentences in Markdown.",
4446
+ "type": "boolean"
4447
+ },
4448
+ "spaced_lists": {
4449
+ "description": "Output lists with an extra space in Markdown.",
4450
+ "markdownDescription": "Output lists with an extra space in Markdown.",
4451
+ "type": "boolean"
4452
+ },
4453
+ "strikethrough": {
4454
+ "description": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
4455
+ "markdownDescription": "Output strikes in wrapped in double tildes (e.g. ~~strike~~)",
4456
+ "type": "boolean"
4457
+ },
4458
+ "subscript": {
4459
+ "description": "Output subscript in wrapped in tildes (e.g. ~sub~)",
4460
+ "markdownDescription": "Output subscript in wrapped in tildes (e.g. ~sub~)",
4461
+ "type": "boolean"
4462
+ },
4463
+ "superscript": {
4464
+ "description": "Output superscript in wrapped in carets (e.g. ^super^)",
4465
+ "markdownDescription": "Output superscript in wrapped in carets (e.g. ^super^)",
4466
+ "type": "boolean"
4467
+ },
4468
+ "table": {
4469
+ "description": "Output tables in Markdown format.",
4470
+ "markdownDescription": "Output tables in Markdown format.",
4471
+ "type": "boolean"
4472
+ },
4473
+ "treat_indentation_as_code": {
4474
+ "description": "Determines whether 4 spaces on indentation should be read as a code block.",
4475
+ "markdownDescription": "Determines whether 4 spaces on indentation should be read as a code block.",
4476
+ "type": "boolean"
4477
+ },
4478
+ "typographer": {
4479
+ "description": "Enable some language-neutral replacement + quotes beautification.",
4480
+ "markdownDescription": "Enable some language-neutral replacement + quotes beautification.",
4481
+ "type": "boolean"
4482
+ },
4483
+ "xhtml": {
4484
+ "description": "Use '/' to close single tags (<br />).",
4485
+ "markdownDescription": "Use '/' to close single tags (<br />).",
4486
+ "type": "boolean"
4487
+ }
4488
+ },
4489
+ "type": "object"
4367
4490
  }
4368
4491
  },
4492
+ "required": [
4493
+ "engine",
4494
+ "options"
4495
+ ],
4369
4496
  "type": "object"
4370
4497
  },
4371
4498
  "MimeType": {
@@ -5343,158 +5470,22 @@
5343
5470
  "additionalProperties": false,
5344
5471
  "properties": {
5345
5472
  "icon": {
5346
- "anyOf": [
5347
- {
5348
- "items": {
5349
- "anyOf": [
5350
- {
5351
- "additionalProperties": false,
5352
- "properties": {
5353
- "key": {
5354
- "description": "The key used to access the value used for the preview.",
5355
- "markdownDescription": "The key used to access the value used for the preview.",
5356
- "type": "string"
5357
- }
5358
- },
5359
- "required": [
5360
- "key"
5361
- ],
5362
- "type": "object"
5363
- },
5364
- {
5365
- "type": "string"
5366
- },
5367
- {
5368
- "type": "boolean"
5369
- }
5370
- ]
5371
- },
5372
- "type": "array"
5373
- },
5374
- {
5375
- "type": "string"
5376
- },
5377
- {
5378
- "type": "boolean"
5379
- }
5380
- ],
5473
+ "$ref": "#/definitions/PreviewEntry",
5381
5474
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5382
5475
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5383
5476
  },
5384
5477
  "image": {
5385
- "anyOf": [
5386
- {
5387
- "items": {
5388
- "anyOf": [
5389
- {
5390
- "additionalProperties": false,
5391
- "properties": {
5392
- "key": {
5393
- "description": "The key used to access the value used for the preview.",
5394
- "markdownDescription": "The key used to access the value used for the preview.",
5395
- "type": "string"
5396
- }
5397
- },
5398
- "required": [
5399
- "key"
5400
- ],
5401
- "type": "object"
5402
- },
5403
- {
5404
- "type": "string"
5405
- },
5406
- {
5407
- "type": "boolean"
5408
- }
5409
- ]
5410
- },
5411
- "type": "array"
5412
- },
5413
- {
5414
- "type": "string"
5415
- },
5416
- {
5417
- "type": "boolean"
5418
- }
5419
- ],
5478
+ "$ref": "#/definitions/PreviewEntry",
5420
5479
  "description": "Controls the image shown per item.",
5421
5480
  "markdownDescription": "Controls the image shown per item."
5422
5481
  },
5423
5482
  "subtext": {
5424
- "anyOf": [
5425
- {
5426
- "items": {
5427
- "anyOf": [
5428
- {
5429
- "additionalProperties": false,
5430
- "properties": {
5431
- "key": {
5432
- "description": "The key used to access the value used for the preview.",
5433
- "markdownDescription": "The key used to access the value used for the preview.",
5434
- "type": "string"
5435
- }
5436
- },
5437
- "required": [
5438
- "key"
5439
- ],
5440
- "type": "object"
5441
- },
5442
- {
5443
- "type": "string"
5444
- },
5445
- {
5446
- "type": "boolean"
5447
- }
5448
- ]
5449
- },
5450
- "type": "array"
5451
- },
5452
- {
5453
- "type": "string"
5454
- },
5455
- {
5456
- "type": "boolean"
5457
- }
5458
- ],
5483
+ "$ref": "#/definitions/PreviewEntry",
5459
5484
  "description": "Controls the supporting text shown per item.",
5460
5485
  "markdownDescription": "Controls the supporting text shown per item."
5461
5486
  },
5462
5487
  "text": {
5463
- "anyOf": [
5464
- {
5465
- "items": {
5466
- "anyOf": [
5467
- {
5468
- "additionalProperties": false,
5469
- "properties": {
5470
- "key": {
5471
- "description": "The key used to access the value used for the preview.",
5472
- "markdownDescription": "The key used to access the value used for the preview.",
5473
- "type": "string"
5474
- }
5475
- },
5476
- "required": [
5477
- "key"
5478
- ],
5479
- "type": "object"
5480
- },
5481
- {
5482
- "type": "string"
5483
- },
5484
- {
5485
- "type": "boolean"
5486
- }
5487
- ]
5488
- },
5489
- "type": "array"
5490
- },
5491
- {
5492
- "type": "string"
5493
- },
5494
- {
5495
- "type": "boolean"
5496
- }
5497
- ],
5488
+ "$ref": "#/definitions/PreviewEntry",
5498
5489
  "description": "Controls the main text shown per item.",
5499
5490
  "markdownDescription": "Controls the main text shown per item."
5500
5491
  }
@@ -5505,7 +5496,6 @@
5505
5496
  "additionalProperties": false,
5506
5497
  "properties": {
5507
5498
  "collections": {
5508
- "default": "",
5509
5499
  "description": "Parent folder of all collections.",
5510
5500
  "markdownDescription": "Parent folder of all collections.",
5511
5501
  "type": "string"
@@ -5575,41 +5565,7 @@
5575
5565
  "markdownDescription": "Details for large image/icon preview per item."
5576
5566
  },
5577
5567
  "icon": {
5578
- "anyOf": [
5579
- {
5580
- "items": {
5581
- "anyOf": [
5582
- {
5583
- "additionalProperties": false,
5584
- "properties": {
5585
- "key": {
5586
- "description": "The key used to access the value used for the preview.",
5587
- "markdownDescription": "The key used to access the value used for the preview.",
5588
- "type": "string"
5589
- }
5590
- },
5591
- "required": [
5592
- "key"
5593
- ],
5594
- "type": "object"
5595
- },
5596
- {
5597
- "type": "string"
5598
- },
5599
- {
5600
- "type": "boolean"
5601
- }
5602
- ]
5603
- },
5604
- "type": "array"
5605
- },
5606
- {
5607
- "type": "string"
5608
- },
5609
- {
5610
- "type": "boolean"
5611
- }
5612
- ],
5568
+ "$ref": "#/definitions/PreviewEntry",
5613
5569
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5614
5570
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5615
5571
  },
@@ -5619,41 +5575,7 @@
5619
5575
  "type": "string"
5620
5576
  },
5621
5577
  "image": {
5622
- "anyOf": [
5623
- {
5624
- "items": {
5625
- "anyOf": [
5626
- {
5627
- "additionalProperties": false,
5628
- "properties": {
5629
- "key": {
5630
- "description": "The key used to access the value used for the preview.",
5631
- "markdownDescription": "The key used to access the value used for the preview.",
5632
- "type": "string"
5633
- }
5634
- },
5635
- "required": [
5636
- "key"
5637
- ],
5638
- "type": "object"
5639
- },
5640
- {
5641
- "type": "string"
5642
- },
5643
- {
5644
- "type": "boolean"
5645
- }
5646
- ]
5647
- },
5648
- "type": "array"
5649
- },
5650
- {
5651
- "type": "string"
5652
- },
5653
- {
5654
- "type": "boolean"
5655
- }
5656
- ],
5578
+ "$ref": "#/definitions/PreviewEntry",
5657
5579
  "description": "Controls the image shown per item.",
5658
5580
  "markdownDescription": "Controls the image shown per item."
5659
5581
  },
@@ -5666,86 +5588,44 @@
5666
5588
  "type": "array"
5667
5589
  },
5668
5590
  "subtext": {
5669
- "anyOf": [
5670
- {
5671
- "items": {
5672
- "anyOf": [
5673
- {
5674
- "additionalProperties": false,
5675
- "properties": {
5676
- "key": {
5677
- "description": "The key used to access the value used for the preview.",
5678
- "markdownDescription": "The key used to access the value used for the preview.",
5679
- "type": "string"
5680
- }
5681
- },
5682
- "required": [
5683
- "key"
5684
- ],
5685
- "type": "object"
5686
- },
5687
- {
5688
- "type": "string"
5689
- },
5690
- {
5691
- "type": "boolean"
5692
- }
5693
- ]
5694
- },
5695
- "type": "array"
5696
- },
5697
- {
5698
- "type": "string"
5699
- },
5700
- {
5701
- "type": "boolean"
5702
- }
5703
- ],
5591
+ "$ref": "#/definitions/PreviewEntry",
5704
5592
  "description": "Controls the supporting text shown per item.",
5705
5593
  "markdownDescription": "Controls the supporting text shown per item."
5706
5594
  },
5707
5595
  "text": {
5708
- "anyOf": [
5709
- {
5710
- "items": {
5711
- "anyOf": [
5712
- {
5713
- "additionalProperties": false,
5714
- "properties": {
5715
- "key": {
5716
- "description": "The key used to access the value used for the preview.",
5717
- "markdownDescription": "The key used to access the value used for the preview.",
5718
- "type": "string"
5719
- }
5720
- },
5721
- "required": [
5722
- "key"
5723
- ],
5724
- "type": "object"
5725
- },
5726
- {
5727
- "type": "string"
5728
- },
5729
- {
5730
- "type": "boolean"
5731
- }
5732
- ]
5733
- },
5734
- "type": "array"
5735
- },
5736
- {
5737
- "type": "string"
5738
- },
5739
- {
5740
- "type": "boolean"
5741
- }
5742
- ],
5596
+ "$ref": "#/definitions/PreviewEntry",
5743
5597
  "description": "Controls the main text shown per item.",
5744
5598
  "markdownDescription": "Controls the main text shown per item."
5745
5599
  }
5746
5600
  },
5747
5601
  "type": "object"
5748
5602
  },
5603
+ "PreviewEntry": {
5604
+ "anyOf": [
5605
+ {
5606
+ "items": {
5607
+ "anyOf": [
5608
+ {
5609
+ "$ref": "#/definitions/PreviewKeyEntry"
5610
+ },
5611
+ {
5612
+ "type": "string"
5613
+ },
5614
+ {
5615
+ "type": "boolean"
5616
+ }
5617
+ ]
5618
+ },
5619
+ "type": "array"
5620
+ },
5621
+ {
5622
+ "type": "string"
5623
+ },
5624
+ {
5625
+ "type": "boolean"
5626
+ }
5627
+ ]
5628
+ },
5749
5629
  "PreviewGallery": {
5750
5630
  "additionalProperties": false,
5751
5631
  "properties": {
@@ -5761,41 +5641,7 @@
5761
5641
  "type": "string"
5762
5642
  },
5763
5643
  "icon": {
5764
- "anyOf": [
5765
- {
5766
- "items": {
5767
- "anyOf": [
5768
- {
5769
- "additionalProperties": false,
5770
- "properties": {
5771
- "key": {
5772
- "description": "The key used to access the value used for the preview.",
5773
- "markdownDescription": "The key used to access the value used for the preview.",
5774
- "type": "string"
5775
- }
5776
- },
5777
- "required": [
5778
- "key"
5779
- ],
5780
- "type": "object"
5781
- },
5782
- {
5783
- "type": "string"
5784
- },
5785
- {
5786
- "type": "boolean"
5787
- }
5788
- ]
5789
- },
5790
- "type": "array"
5791
- },
5792
- {
5793
- "type": "string"
5794
- },
5795
- {
5796
- "type": "boolean"
5797
- }
5798
- ],
5644
+ "$ref": "#/definitions/PreviewEntry",
5799
5645
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5800
5646
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5801
5647
  },
@@ -5805,125 +5651,37 @@
5805
5651
  "type": "string"
5806
5652
  },
5807
5653
  "image": {
5808
- "anyOf": [
5809
- {
5810
- "items": {
5811
- "anyOf": [
5812
- {
5813
- "additionalProperties": false,
5814
- "properties": {
5815
- "key": {
5816
- "description": "The key used to access the value used for the preview.",
5817
- "markdownDescription": "The key used to access the value used for the preview.",
5818
- "type": "string"
5819
- }
5820
- },
5821
- "required": [
5822
- "key"
5823
- ],
5824
- "type": "object"
5825
- },
5826
- {
5827
- "type": "string"
5828
- },
5829
- {
5830
- "type": "boolean"
5831
- }
5832
- ]
5833
- },
5834
- "type": "array"
5835
- },
5836
- {
5837
- "type": "string"
5838
- },
5839
- {
5840
- "type": "boolean"
5841
- }
5842
- ],
5654
+ "$ref": "#/definitions/PreviewEntry",
5843
5655
  "description": "Controls the image shown per item.",
5844
5656
  "markdownDescription": "Controls the image shown per item."
5845
5657
  },
5846
5658
  "text": {
5847
- "anyOf": [
5848
- {
5849
- "items": {
5850
- "anyOf": [
5851
- {
5852
- "additionalProperties": false,
5853
- "properties": {
5854
- "key": {
5855
- "description": "The key used to access the value used for the preview.",
5856
- "markdownDescription": "The key used to access the value used for the preview.",
5857
- "type": "string"
5858
- }
5859
- },
5860
- "required": [
5861
- "key"
5862
- ],
5863
- "type": "object"
5864
- },
5865
- {
5866
- "type": "string"
5867
- },
5868
- {
5869
- "type": "boolean"
5870
- }
5871
- ]
5872
- },
5873
- "type": "array"
5874
- },
5875
- {
5876
- "type": "string"
5877
- },
5878
- {
5879
- "type": "boolean"
5880
- }
5881
- ],
5659
+ "$ref": "#/definitions/PreviewEntry",
5882
5660
  "description": "Controls the main text shown per item.",
5883
5661
  "markdownDescription": "Controls the main text shown per item."
5884
5662
  }
5885
5663
  },
5886
5664
  "type": "object"
5887
5665
  },
5888
- "PreviewMetadata": {
5666
+ "PreviewKeyEntry": {
5889
5667
  "additionalProperties": false,
5890
5668
  "properties": {
5891
- "icon": {
5892
- "anyOf": [
5893
- {
5894
- "items": {
5895
- "anyOf": [
5896
- {
5897
- "additionalProperties": false,
5898
- "properties": {
5899
- "key": {
5900
- "description": "The key used to access the value used for the preview.",
5901
- "markdownDescription": "The key used to access the value used for the preview.",
5902
- "type": "string"
5903
- }
5904
- },
5905
- "required": [
5906
- "key"
5907
- ],
5908
- "type": "object"
5909
- },
5910
- {
5911
- "type": "string"
5912
- },
5913
- {
5914
- "type": "boolean"
5915
- }
5916
- ]
5917
- },
5918
- "type": "array"
5919
- },
5920
- {
5921
- "type": "string"
5922
- },
5923
- {
5924
- "type": "boolean"
5925
- }
5926
- ],
5669
+ "key": {
5670
+ "description": "The key used to access the value used for the preview.",
5671
+ "markdownDescription": "The key used to access the value used for the preview.",
5672
+ "type": "string"
5673
+ }
5674
+ },
5675
+ "required": [
5676
+ "key"
5677
+ ],
5678
+ "type": "object"
5679
+ },
5680
+ "PreviewMetadata": {
5681
+ "additionalProperties": false,
5682
+ "properties": {
5683
+ "icon": {
5684
+ "$ref": "#/definitions/PreviewEntry",
5927
5685
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5928
5686
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5929
5687
  },
@@ -5933,80 +5691,12 @@
5933
5691
  "type": "string"
5934
5692
  },
5935
5693
  "image": {
5936
- "anyOf": [
5937
- {
5938
- "items": {
5939
- "anyOf": [
5940
- {
5941
- "additionalProperties": false,
5942
- "properties": {
5943
- "key": {
5944
- "description": "The key used to access the value used for the preview.",
5945
- "markdownDescription": "The key used to access the value used for the preview.",
5946
- "type": "string"
5947
- }
5948
- },
5949
- "required": [
5950
- "key"
5951
- ],
5952
- "type": "object"
5953
- },
5954
- {
5955
- "type": "string"
5956
- },
5957
- {
5958
- "type": "boolean"
5959
- }
5960
- ]
5961
- },
5962
- "type": "array"
5963
- },
5964
- {
5965
- "type": "string"
5966
- },
5967
- {
5968
- "type": "boolean"
5969
- }
5970
- ],
5694
+ "$ref": "#/definitions/PreviewEntry",
5971
5695
  "description": "Controls the image shown per item.",
5972
5696
  "markdownDescription": "Controls the image shown per item."
5973
5697
  },
5974
5698
  "text": {
5975
- "anyOf": [
5976
- {
5977
- "items": {
5978
- "anyOf": [
5979
- {
5980
- "additionalProperties": false,
5981
- "properties": {
5982
- "key": {
5983
- "description": "The key used to access the value used for the preview.",
5984
- "markdownDescription": "The key used to access the value used for the preview.",
5985
- "type": "string"
5986
- }
5987
- },
5988
- "required": [
5989
- "key"
5990
- ],
5991
- "type": "object"
5992
- },
5993
- {
5994
- "type": "string"
5995
- },
5996
- {
5997
- "type": "boolean"
5998
- }
5999
- ]
6000
- },
6001
- "type": "array"
6002
- },
6003
- {
6004
- "type": "string"
6005
- },
6006
- {
6007
- "type": "boolean"
6008
- }
6009
- ],
5699
+ "$ref": "#/definitions/PreviewEntry",
6010
5700
  "description": "Controls the main text shown per item.",
6011
5701
  "markdownDescription": "Controls the main text shown per item."
6012
5702
  }
@@ -6295,8 +5985,18 @@
6295
5985
  "type": "string"
6296
5986
  },
6297
5987
  "code": {
6298
- "description": "Enables a control to set selected text to inline code, and unselected blocks of text to code blocks.",
6299
- "markdownDescription": "Enables a control to set selected text to inline code, and unselected blocks of text to code\nblocks.",
5988
+ "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5989
+ "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5990
+ "type": "boolean"
5991
+ },
5992
+ "code_block": {
5993
+ "description": "Enables a control to insert a code block.",
5994
+ "markdownDescription": "Enables a control to insert a code block.",
5995
+ "type": "boolean"
5996
+ },
5997
+ "code_inline": {
5998
+ "description": "Enables a control to create an inline code element, containing any selected text.",
5999
+ "markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
6300
6000
  "type": "boolean"
6301
6001
  },
6302
6002
  "copyformatting": {
@@ -6304,12 +6004,6 @@
6304
6004
  "markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
6305
6005
  "type": "boolean"
6306
6006
  },
6307
- "correct_orientation": {
6308
- "default": true,
6309
- "description": "Controls whether or not the JPEG headers defining how an image should be rotated before being displayed is baked into images prior to upload.",
6310
- "markdownDescription": "Controls whether or not the JPEG headers defining how an image should be rotated before being\ndisplayed is baked into images prior to upload.",
6311
- "type": "boolean"
6312
- },
6313
6007
  "embed": {
6314
6008
  "description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
6315
6009
  "markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
@@ -6386,7 +6080,8 @@
6386
6080
  "description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
6387
6081
  "enum": [
6388
6082
  "image/jpeg",
6389
- "image/png"
6083
+ "image/png",
6084
+ "image/webp"
6390
6085
  ],
6391
6086
  "markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated\nto match. Defaults to keeping the mime type of the uploaded file.",
6392
6087
  "type": "string"
@@ -6521,16 +6216,18 @@
6521
6216
  "properties": {
6522
6217
  "_array_structures": {
6523
6218
  "additionalProperties": {},
6524
- "description": "[DEPRECATED] Now known as _structures.",
6525
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
6219
+ "deprecated": "Use _structures instead.",
6220
+ "description": "Now known as _structures.",
6221
+ "markdownDescription": "Now known as _structures.",
6526
6222
  "type": "object"
6527
6223
  },
6528
6224
  "_comments": {
6529
6225
  "additionalProperties": {
6530
6226
  "type": "string"
6531
6227
  },
6532
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
6533
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
6228
+ "deprecated": "Use _inputs instead.",
6229
+ "description": "Now part of _inputs.*.comment.",
6230
+ "markdownDescription": "Now part of _inputs.*.comment.",
6534
6231
  "type": "object"
6535
6232
  },
6536
6233
  "_editables": {
@@ -6559,8 +6256,9 @@
6559
6256
  "additionalProperties": {},
6560
6257
  "type": "object"
6561
6258
  },
6562
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
6563
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
6259
+ "deprecated": "Use _inputs instead.",
6260
+ "description": "Now part of _inputs.*.options.",
6261
+ "markdownDescription": "Now part of _inputs.*.options.",
6564
6262
  "type": "object"
6565
6263
  },
6566
6264
  "_select_data": {
@@ -6758,80 +6456,12 @@
6758
6456
  "additionalProperties": false,
6759
6457
  "properties": {
6760
6458
  "icon": {
6761
- "anyOf": [
6762
- {
6763
- "items": {
6764
- "anyOf": [
6765
- {
6766
- "additionalProperties": false,
6767
- "properties": {
6768
- "key": {
6769
- "description": "The key used to access the value used for the preview.",
6770
- "markdownDescription": "The key used to access the value used for the preview.",
6771
- "type": "string"
6772
- }
6773
- },
6774
- "required": [
6775
- "key"
6776
- ],
6777
- "type": "object"
6778
- },
6779
- {
6780
- "type": "string"
6781
- },
6782
- {
6783
- "type": "boolean"
6784
- }
6785
- ]
6786
- },
6787
- "type": "array"
6788
- },
6789
- {
6790
- "type": "string"
6791
- },
6792
- {
6793
- "type": "boolean"
6794
- }
6795
- ],
6459
+ "$ref": "#/definitions/PreviewEntry",
6796
6460
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
6797
6461
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
6798
6462
  },
6799
6463
  "text": {
6800
- "anyOf": [
6801
- {
6802
- "items": {
6803
- "anyOf": [
6804
- {
6805
- "additionalProperties": false,
6806
- "properties": {
6807
- "key": {
6808
- "description": "The key used to access the value used for the preview.",
6809
- "markdownDescription": "The key used to access the value used for the preview.",
6810
- "type": "string"
6811
- }
6812
- },
6813
- "required": [
6814
- "key"
6815
- ],
6816
- "type": "object"
6817
- },
6818
- {
6819
- "type": "string"
6820
- },
6821
- {
6822
- "type": "boolean"
6823
- }
6824
- ]
6825
- },
6826
- "type": "array"
6827
- },
6828
- {
6829
- "type": "string"
6830
- },
6831
- {
6832
- "type": "boolean"
6833
- }
6834
- ],
6464
+ "$ref": "#/definitions/PreviewEntry",
6835
6465
  "description": "Controls the main text shown per item.",
6836
6466
  "markdownDescription": "Controls the main text shown per item."
6837
6467
  }
@@ -6941,6 +6571,354 @@
6941
6571
  },
6942
6572
  "type": "object"
6943
6573
  },
6574
+ "SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
6575
+ "additionalProperties": false,
6576
+ "properties": {
6577
+ "exclude": {
6578
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6579
+ "items": {
6580
+ "enum": [
6581
+ "_cc_jekyll_unknown_paired_tag",
6582
+ "_cc_jekyll_unknown_tag",
6583
+ "jekyll_highlight",
6584
+ "_cc_jekyll_template",
6585
+ "jekyll_raw",
6586
+ "jekyll_link",
6587
+ "jekyll_post_url"
6588
+ ],
6589
+ "type": "string"
6590
+ },
6591
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6592
+ "type": "array"
6593
+ },
6594
+ "include": {
6595
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6596
+ "items": {
6597
+ "enum": [
6598
+ "_cc_jekyll_unknown_paired_tag",
6599
+ "_cc_jekyll_unknown_tag",
6600
+ "jekyll_highlight",
6601
+ "_cc_jekyll_template",
6602
+ "jekyll_raw",
6603
+ "jekyll_link",
6604
+ "jekyll_post_url"
6605
+ ],
6606
+ "type": "string"
6607
+ },
6608
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6609
+ "type": "array"
6610
+ }
6611
+ },
6612
+ "type": "object"
6613
+ },
6614
+ "SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
6615
+ "additionalProperties": false,
6616
+ "properties": {
6617
+ "exclude": {
6618
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6619
+ "items": {
6620
+ "enum": [
6621
+ "docusaurus_mdx_admonition",
6622
+ "docusaurus_mdx_tabs",
6623
+ "docusaurus_mdx_truncate",
6624
+ "docusaurus_mdx_codeblock"
6625
+ ],
6626
+ "type": "string"
6627
+ },
6628
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6629
+ "type": "array"
6630
+ },
6631
+ "include": {
6632
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6633
+ "items": {
6634
+ "enum": [
6635
+ "docusaurus_mdx_admonition",
6636
+ "docusaurus_mdx_tabs",
6637
+ "docusaurus_mdx_truncate",
6638
+ "docusaurus_mdx_codeblock"
6639
+ ],
6640
+ "type": "string"
6641
+ },
6642
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6643
+ "type": "array"
6644
+ }
6645
+ },
6646
+ "type": "object"
6647
+ },
6648
+ "SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
6649
+ "additionalProperties": false,
6650
+ "properties": {
6651
+ "exclude": {
6652
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6653
+ "items": {
6654
+ "enum": [
6655
+ "eleventy_liquid_raw",
6656
+ "_cc_eleventy_liquid_unknown_paired_shortcode",
6657
+ "_cc_eleventy_liquid_unknown_shortcode",
6658
+ "_cc_eleventy_liquid_template"
6659
+ ],
6660
+ "type": "string"
6661
+ },
6662
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6663
+ "type": "array"
6664
+ },
6665
+ "include": {
6666
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6667
+ "items": {
6668
+ "enum": [
6669
+ "eleventy_liquid_raw",
6670
+ "_cc_eleventy_liquid_unknown_paired_shortcode",
6671
+ "_cc_eleventy_liquid_unknown_shortcode",
6672
+ "_cc_eleventy_liquid_template"
6673
+ ],
6674
+ "type": "string"
6675
+ },
6676
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6677
+ "type": "array"
6678
+ }
6679
+ },
6680
+ "type": "object"
6681
+ },
6682
+ "SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
6683
+ "additionalProperties": false,
6684
+ "properties": {
6685
+ "exclude": {
6686
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6687
+ "items": {
6688
+ "enum": [
6689
+ "eleventy_nunjucks_raw",
6690
+ "eleventy_nunjucks_verbatim",
6691
+ "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6692
+ "_cc_eleventy_nunjucks_unknown_shortcode",
6693
+ "_cc_eleventy_nunjucks_template"
6694
+ ],
6695
+ "type": "string"
6696
+ },
6697
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6698
+ "type": "array"
6699
+ },
6700
+ "include": {
6701
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6702
+ "items": {
6703
+ "enum": [
6704
+ "eleventy_nunjucks_raw",
6705
+ "eleventy_nunjucks_verbatim",
6706
+ "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6707
+ "_cc_eleventy_nunjucks_unknown_shortcode",
6708
+ "_cc_eleventy_nunjucks_template"
6709
+ ],
6710
+ "type": "string"
6711
+ },
6712
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6713
+ "type": "array"
6714
+ }
6715
+ },
6716
+ "type": "object"
6717
+ },
6718
+ "SnippetsImport<(\"hugo_summary_divider\"|\"hugo_highlight\"|\"hugo_figure\"|\"hugo_gist\"|\"hugo_instagram\"|\"hugo_param\"|\"hugo_ref\"|\"hugo_relref\"|\"hugo_tweet\"|\"hugo_vimeo\"|\"hugo_youtube\"|\"_cc_hugo_unknown_paired\"|\"_cc_hugo_unknown\"|\"_cc_hugo_unknown_paired_processed\"|\"_cc_hugo_unknown_processed\")>": {
6719
+ "additionalProperties": false,
6720
+ "properties": {
6721
+ "exclude": {
6722
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6723
+ "items": {
6724
+ "enum": [
6725
+ "hugo_summary_divider",
6726
+ "hugo_highlight",
6727
+ "hugo_figure",
6728
+ "hugo_gist",
6729
+ "hugo_instagram",
6730
+ "hugo_param",
6731
+ "hugo_ref",
6732
+ "hugo_relref",
6733
+ "hugo_tweet",
6734
+ "hugo_vimeo",
6735
+ "hugo_youtube",
6736
+ "_cc_hugo_unknown_paired",
6737
+ "_cc_hugo_unknown",
6738
+ "_cc_hugo_unknown_paired_processed",
6739
+ "_cc_hugo_unknown_processed"
6740
+ ],
6741
+ "type": "string"
6742
+ },
6743
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6744
+ "type": "array"
6745
+ },
6746
+ "include": {
6747
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6748
+ "items": {
6749
+ "enum": [
6750
+ "hugo_summary_divider",
6751
+ "hugo_highlight",
6752
+ "hugo_figure",
6753
+ "hugo_gist",
6754
+ "hugo_instagram",
6755
+ "hugo_param",
6756
+ "hugo_ref",
6757
+ "hugo_relref",
6758
+ "hugo_tweet",
6759
+ "hugo_vimeo",
6760
+ "hugo_youtube",
6761
+ "_cc_hugo_unknown_paired",
6762
+ "_cc_hugo_unknown",
6763
+ "_cc_hugo_unknown_paired_processed",
6764
+ "_cc_hugo_unknown_processed"
6765
+ ],
6766
+ "type": "string"
6767
+ },
6768
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6769
+ "type": "array"
6770
+ }
6771
+ },
6772
+ "type": "object"
6773
+ },
6774
+ "SnippetsImport<(\"import\"|\"_cc_mdx_unknown_export\"|\"_cc_mdx_unknown_export_expression\"|\"_cc_mdx_unknown_export_default\"|\"_cc_mdx_unknown_template\"|\"_cc_mdx_paired_unknown\"|\"_cc_mdx_unknown\")>": {
6775
+ "additionalProperties": false,
6776
+ "properties": {
6777
+ "exclude": {
6778
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6779
+ "items": {
6780
+ "enum": [
6781
+ "import",
6782
+ "_cc_mdx_unknown_export",
6783
+ "_cc_mdx_unknown_export_expression",
6784
+ "_cc_mdx_unknown_export_default",
6785
+ "_cc_mdx_unknown_template",
6786
+ "_cc_mdx_paired_unknown",
6787
+ "_cc_mdx_unknown"
6788
+ ],
6789
+ "type": "string"
6790
+ },
6791
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6792
+ "type": "array"
6793
+ },
6794
+ "include": {
6795
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6796
+ "items": {
6797
+ "enum": [
6798
+ "import",
6799
+ "_cc_mdx_unknown_export",
6800
+ "_cc_mdx_unknown_export_expression",
6801
+ "_cc_mdx_unknown_export_default",
6802
+ "_cc_mdx_unknown_template",
6803
+ "_cc_mdx_paired_unknown",
6804
+ "_cc_mdx_unknown"
6805
+ ],
6806
+ "type": "string"
6807
+ },
6808
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6809
+ "type": "array"
6810
+ }
6811
+ },
6812
+ "type": "object"
6813
+ },
6814
+ "SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
6815
+ "additionalProperties": false,
6816
+ "properties": {
6817
+ "exclude": {
6818
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6819
+ "items": {
6820
+ "enum": [
6821
+ "markdoc_id_annotation",
6822
+ "markdoc_class_annotation",
6823
+ "markdoc_table",
6824
+ "_cc_markdoc_unknown_tag",
6825
+ "_cc_markdoc_unknown_paired_tag",
6826
+ "_cc_markdoc_unknown_template"
6827
+ ],
6828
+ "type": "string"
6829
+ },
6830
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6831
+ "type": "array"
6832
+ },
6833
+ "include": {
6834
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6835
+ "items": {
6836
+ "enum": [
6837
+ "markdoc_id_annotation",
6838
+ "markdoc_class_annotation",
6839
+ "markdoc_table",
6840
+ "_cc_markdoc_unknown_tag",
6841
+ "_cc_markdoc_unknown_paired_tag",
6842
+ "_cc_markdoc_unknown_template"
6843
+ ],
6844
+ "type": "string"
6845
+ },
6846
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6847
+ "type": "array"
6848
+ }
6849
+ },
6850
+ "type": "object"
6851
+ },
6852
+ "SnippetsImport<(\"python_markdown_abbreviation\"|\"python_markdown_admonition\"|\"python_markdown_arithmatex\"|\"python_markdown_attribute_list\"|\"python_markdown_code_block\"|\"python_markdown_collapsible_admonition\"|\"python_markdown_tabs\"|\"python_markdown_footnote\"|\"python_markdown_footnote_marker\"|\"python_markdown_icon\"|\"python_markdown_image\"|\"python_markdown_inline_arithmatex\"|\"python_markdown_inline_code\"|\"python_markdown_link\"|\"python_markdown_reference_image\"|\"python_markdown_reference_template_image\"|\"python_markdown_reference_link\"|\"python_markdown_reference\"|\"python_markdown_reference_template\"|\"python_markdown_block_snippet\"|\"_cc_python_markdown_unknown_snippet\"|\"_cc_python_markdown_unknown_markdown_in_html\")>": {
6853
+ "additionalProperties": false,
6854
+ "properties": {
6855
+ "exclude": {
6856
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6857
+ "items": {
6858
+ "enum": [
6859
+ "python_markdown_abbreviation",
6860
+ "python_markdown_admonition",
6861
+ "python_markdown_arithmatex",
6862
+ "python_markdown_attribute_list",
6863
+ "python_markdown_code_block",
6864
+ "python_markdown_collapsible_admonition",
6865
+ "python_markdown_tabs",
6866
+ "python_markdown_footnote",
6867
+ "python_markdown_footnote_marker",
6868
+ "python_markdown_icon",
6869
+ "python_markdown_image",
6870
+ "python_markdown_inline_arithmatex",
6871
+ "python_markdown_inline_code",
6872
+ "python_markdown_link",
6873
+ "python_markdown_reference_image",
6874
+ "python_markdown_reference_template_image",
6875
+ "python_markdown_reference_link",
6876
+ "python_markdown_reference",
6877
+ "python_markdown_reference_template",
6878
+ "python_markdown_block_snippet",
6879
+ "_cc_python_markdown_unknown_snippet",
6880
+ "_cc_python_markdown_unknown_markdown_in_html"
6881
+ ],
6882
+ "type": "string"
6883
+ },
6884
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6885
+ "type": "array"
6886
+ },
6887
+ "include": {
6888
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6889
+ "items": {
6890
+ "enum": [
6891
+ "python_markdown_abbreviation",
6892
+ "python_markdown_admonition",
6893
+ "python_markdown_arithmatex",
6894
+ "python_markdown_attribute_list",
6895
+ "python_markdown_code_block",
6896
+ "python_markdown_collapsible_admonition",
6897
+ "python_markdown_tabs",
6898
+ "python_markdown_footnote",
6899
+ "python_markdown_footnote_marker",
6900
+ "python_markdown_icon",
6901
+ "python_markdown_image",
6902
+ "python_markdown_inline_arithmatex",
6903
+ "python_markdown_inline_code",
6904
+ "python_markdown_link",
6905
+ "python_markdown_reference_image",
6906
+ "python_markdown_reference_template_image",
6907
+ "python_markdown_reference_link",
6908
+ "python_markdown_reference",
6909
+ "python_markdown_reference_template",
6910
+ "python_markdown_block_snippet",
6911
+ "_cc_python_markdown_unknown_snippet",
6912
+ "_cc_python_markdown_unknown_markdown_in_html"
6913
+ ],
6914
+ "type": "string"
6915
+ },
6916
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6917
+ "type": "array"
6918
+ }
6919
+ },
6920
+ "type": "object"
6921
+ },
6944
6922
  "SnippetsImports": {
6945
6923
  "additionalProperties": false,
6946
6924
  "properties": {
@@ -6950,38 +6928,7 @@
6950
6928
  "type": "boolean"
6951
6929
  },
6952
6930
  {
6953
- "additionalProperties": false,
6954
- "properties": {
6955
- "exclude": {
6956
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6957
- "items": {
6958
- "enum": [
6959
- "docusaurus_mdx_admonition",
6960
- "docusaurus_mdx_tabs",
6961
- "docusaurus_mdx_truncate",
6962
- "docusaurus_mdx_codeblock"
6963
- ],
6964
- "type": "string"
6965
- },
6966
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6967
- "type": "array"
6968
- },
6969
- "include": {
6970
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6971
- "items": {
6972
- "enum": [
6973
- "docusaurus_mdx_admonition",
6974
- "docusaurus_mdx_tabs",
6975
- "docusaurus_mdx_truncate",
6976
- "docusaurus_mdx_codeblock"
6977
- ],
6978
- "type": "string"
6979
- },
6980
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6981
- "type": "array"
6982
- }
6983
- },
6984
- "type": "object"
6931
+ "$ref": "#/definitions/SnippetsImport%3C(%22docusaurus_mdx_admonition%22%7C%22docusaurus_mdx_tabs%22%7C%22docusaurus_mdx_truncate%22%7C%22docusaurus_mdx_codeblock%22)%3E"
6985
6932
  }
6986
6933
  ],
6987
6934
  "description": "Default snippets for Docusaurus SSG.",
@@ -6993,38 +6940,7 @@
6993
6940
  "type": "boolean"
6994
6941
  },
6995
6942
  {
6996
- "additionalProperties": false,
6997
- "properties": {
6998
- "exclude": {
6999
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7000
- "items": {
7001
- "enum": [
7002
- "eleventy_liquid_raw",
7003
- "_cc_eleventy_liquid_unknown_paired_shortcode",
7004
- "_cc_eleventy_liquid_unknown_shortcode",
7005
- "_cc_eleventy_liquid_template"
7006
- ],
7007
- "type": "string"
7008
- },
7009
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7010
- "type": "array"
7011
- },
7012
- "include": {
7013
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7014
- "items": {
7015
- "enum": [
7016
- "eleventy_liquid_raw",
7017
- "_cc_eleventy_liquid_unknown_paired_shortcode",
7018
- "_cc_eleventy_liquid_unknown_shortcode",
7019
- "_cc_eleventy_liquid_template"
7020
- ],
7021
- "type": "string"
7022
- },
7023
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7024
- "type": "array"
7025
- }
7026
- },
7027
- "type": "object"
6943
+ "$ref": "#/definitions/SnippetsImport%3C(%22eleventy_liquid_raw%22%7C%22_cc_eleventy_liquid_unknown_paired_shortcode%22%7C%22_cc_eleventy_liquid_unknown_shortcode%22%7C%22_cc_eleventy_liquid_template%22)%3E"
7028
6944
  }
7029
6945
  ],
7030
6946
  "description": "Default snippets for Eleventy SSG Liquid files.",
@@ -7036,40 +6952,7 @@
7036
6952
  "type": "boolean"
7037
6953
  },
7038
6954
  {
7039
- "additionalProperties": false,
7040
- "properties": {
7041
- "exclude": {
7042
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7043
- "items": {
7044
- "enum": [
7045
- "eleventy_nunjucks_raw",
7046
- "eleventy_nunjucks_verbatim",
7047
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
7048
- "_cc_eleventy_nunjucks_unknown_shortcode",
7049
- "_cc_eleventy_nunjucks_template"
7050
- ],
7051
- "type": "string"
7052
- },
7053
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7054
- "type": "array"
7055
- },
7056
- "include": {
7057
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7058
- "items": {
7059
- "enum": [
7060
- "eleventy_nunjucks_raw",
7061
- "eleventy_nunjucks_verbatim",
7062
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
7063
- "_cc_eleventy_nunjucks_unknown_shortcode",
7064
- "_cc_eleventy_nunjucks_template"
7065
- ],
7066
- "type": "string"
7067
- },
7068
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7069
- "type": "array"
7070
- }
7071
- },
7072
- "type": "object"
6955
+ "$ref": "#/definitions/SnippetsImport%3C(%22eleventy_nunjucks_raw%22%7C%22eleventy_nunjucks_verbatim%22%7C%22_cc_eleventy_nunjucks_unknown_paired_shortcode%22%7C%22_cc_eleventy_nunjucks_unknown_shortcode%22%7C%22_cc_eleventy_nunjucks_template%22)%3E"
7073
6956
  }
7074
6957
  ],
7075
6958
  "description": "Default snippets for Eleventy SSG Nunjucks files.",
@@ -7081,60 +6964,7 @@
7081
6964
  "type": "boolean"
7082
6965
  },
7083
6966
  {
7084
- "additionalProperties": false,
7085
- "properties": {
7086
- "exclude": {
7087
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7088
- "items": {
7089
- "enum": [
7090
- "hugo_summary_divider",
7091
- "hugo_highlight",
7092
- "hugo_figure",
7093
- "hugo_gist",
7094
- "hugo_instagram",
7095
- "hugo_param",
7096
- "hugo_ref",
7097
- "hugo_relref",
7098
- "hugo_tweet",
7099
- "hugo_vimeo",
7100
- "hugo_youtube",
7101
- "_cc_hugo_unknown_paired",
7102
- "_cc_hugo_unknown",
7103
- "_cc_hugo_unknown_paired_processed",
7104
- "_cc_hugo_unknown_processed"
7105
- ],
7106
- "type": "string"
7107
- },
7108
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7109
- "type": "array"
7110
- },
7111
- "include": {
7112
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7113
- "items": {
7114
- "enum": [
7115
- "hugo_summary_divider",
7116
- "hugo_highlight",
7117
- "hugo_figure",
7118
- "hugo_gist",
7119
- "hugo_instagram",
7120
- "hugo_param",
7121
- "hugo_ref",
7122
- "hugo_relref",
7123
- "hugo_tweet",
7124
- "hugo_vimeo",
7125
- "hugo_youtube",
7126
- "_cc_hugo_unknown_paired",
7127
- "_cc_hugo_unknown",
7128
- "_cc_hugo_unknown_paired_processed",
7129
- "_cc_hugo_unknown_processed"
7130
- ],
7131
- "type": "string"
7132
- },
7133
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7134
- "type": "array"
7135
- }
7136
- },
7137
- "type": "object"
6967
+ "$ref": "#/definitions/SnippetsImport%3C(%22hugo_summary_divider%22%7C%22hugo_highlight%22%7C%22hugo_figure%22%7C%22hugo_gist%22%7C%22hugo_instagram%22%7C%22hugo_param%22%7C%22hugo_ref%22%7C%22hugo_relref%22%7C%22hugo_tweet%22%7C%22hugo_vimeo%22%7C%22hugo_youtube%22%7C%22_cc_hugo_unknown_paired%22%7C%22_cc_hugo_unknown%22%7C%22_cc_hugo_unknown_paired_processed%22%7C%22_cc_hugo_unknown_processed%22)%3E"
7138
6968
  }
7139
6969
  ],
7140
6970
  "description": "Default snippets for Hugo SSG.",
@@ -7146,44 +6976,7 @@
7146
6976
  "type": "boolean"
7147
6977
  },
7148
6978
  {
7149
- "additionalProperties": false,
7150
- "properties": {
7151
- "exclude": {
7152
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7153
- "items": {
7154
- "enum": [
7155
- "_cc_jekyll_unknown_paired_tag",
7156
- "_cc_jekyll_unknown_tag",
7157
- "jekyll_highlight",
7158
- "_cc_jekyll_template",
7159
- "jekyll_raw",
7160
- "jekyll_link",
7161
- "jekyll_post_url"
7162
- ],
7163
- "type": "string"
7164
- },
7165
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7166
- "type": "array"
7167
- },
7168
- "include": {
7169
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7170
- "items": {
7171
- "enum": [
7172
- "_cc_jekyll_unknown_paired_tag",
7173
- "_cc_jekyll_unknown_tag",
7174
- "jekyll_highlight",
7175
- "_cc_jekyll_template",
7176
- "jekyll_raw",
7177
- "jekyll_link",
7178
- "jekyll_post_url"
7179
- ],
7180
- "type": "string"
7181
- },
7182
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7183
- "type": "array"
7184
- }
7185
- },
7186
- "type": "object"
6979
+ "$ref": "#/definitions/SnippetsImport%3C(%22_cc_jekyll_unknown_paired_tag%22%7C%22_cc_jekyll_unknown_tag%22%7C%22jekyll_highlight%22%7C%22_cc_jekyll_template%22%7C%22jekyll_raw%22%7C%22jekyll_link%22%7C%22jekyll_post_url%22)%3E"
7187
6980
  }
7188
6981
  ],
7189
6982
  "description": "Default snippets for Jekyll SSG.",
@@ -7195,42 +6988,7 @@
7195
6988
  "type": "boolean"
7196
6989
  },
7197
6990
  {
7198
- "additionalProperties": false,
7199
- "properties": {
7200
- "exclude": {
7201
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7202
- "items": {
7203
- "enum": [
7204
- "markdoc_id_annotation",
7205
- "markdoc_class_annotation",
7206
- "markdoc_table",
7207
- "_cc_markdoc_unknown_tag",
7208
- "_cc_markdoc_unknown_paired_tag",
7209
- "_cc_markdoc_unknown_template"
7210
- ],
7211
- "type": "string"
7212
- },
7213
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7214
- "type": "array"
7215
- },
7216
- "include": {
7217
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7218
- "items": {
7219
- "enum": [
7220
- "markdoc_id_annotation",
7221
- "markdoc_class_annotation",
7222
- "markdoc_table",
7223
- "_cc_markdoc_unknown_tag",
7224
- "_cc_markdoc_unknown_paired_tag",
7225
- "_cc_markdoc_unknown_template"
7226
- ],
7227
- "type": "string"
7228
- },
7229
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7230
- "type": "array"
7231
- }
7232
- },
7233
- "type": "object"
6991
+ "$ref": "#/definitions/SnippetsImport%3C(%22markdoc_id_annotation%22%7C%22markdoc_class_annotation%22%7C%22markdoc_table%22%7C%22_cc_markdoc_unknown_tag%22%7C%22_cc_markdoc_unknown_paired_tag%22%7C%22_cc_markdoc_unknown_template%22)%3E"
7234
6992
  }
7235
6993
  ],
7236
6994
  "description": "Default snippets for Markdoc-based content.",
@@ -7242,44 +7000,7 @@
7242
7000
  "type": "boolean"
7243
7001
  },
7244
7002
  {
7245
- "additionalProperties": false,
7246
- "properties": {
7247
- "exclude": {
7248
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7249
- "items": {
7250
- "enum": [
7251
- "import",
7252
- "_cc_mdx_unknown_export",
7253
- "_cc_mdx_unknown_export_expression",
7254
- "_cc_mdx_unknown_export_default",
7255
- "_cc_mdx_unknown_template",
7256
- "_cc_mdx_paired_unknown",
7257
- "_cc_mdx_unknown"
7258
- ],
7259
- "type": "string"
7260
- },
7261
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7262
- "type": "array"
7263
- },
7264
- "include": {
7265
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7266
- "items": {
7267
- "enum": [
7268
- "import",
7269
- "_cc_mdx_unknown_export",
7270
- "_cc_mdx_unknown_export_expression",
7271
- "_cc_mdx_unknown_export_default",
7272
- "_cc_mdx_unknown_template",
7273
- "_cc_mdx_paired_unknown",
7274
- "_cc_mdx_unknown"
7275
- ],
7276
- "type": "string"
7277
- },
7278
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7279
- "type": "array"
7280
- }
7281
- },
7282
- "type": "object"
7003
+ "$ref": "#/definitions/SnippetsImport%3C(%22import%22%7C%22_cc_mdx_unknown_export%22%7C%22_cc_mdx_unknown_export_expression%22%7C%22_cc_mdx_unknown_export_default%22%7C%22_cc_mdx_unknown_template%22%7C%22_cc_mdx_paired_unknown%22%7C%22_cc_mdx_unknown%22)%3E"
7283
7004
  }
7284
7005
  ],
7285
7006
  "description": "Default snippets for MDX-based content.",
@@ -7291,74 +7012,7 @@
7291
7012
  "type": "boolean"
7292
7013
  },
7293
7014
  {
7294
- "additionalProperties": false,
7295
- "properties": {
7296
- "exclude": {
7297
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7298
- "items": {
7299
- "enum": [
7300
- "python_markdown_abbreviation",
7301
- "python_markdown_admonition",
7302
- "python_markdown_arithmatex",
7303
- "python_markdown_attribute_list",
7304
- "python_markdown_code_block",
7305
- "python_markdown_collapsible_admonition",
7306
- "python_markdown_tabs",
7307
- "python_markdown_footnote",
7308
- "python_markdown_footnote_marker",
7309
- "python_markdown_icon",
7310
- "python_markdown_image",
7311
- "python_markdown_inline_arithmatex",
7312
- "python_markdown_inline_code",
7313
- "python_markdown_link",
7314
- "python_markdown_reference_image",
7315
- "python_markdown_reference_template_image",
7316
- "python_markdown_reference_link",
7317
- "python_markdown_reference",
7318
- "python_markdown_reference_template",
7319
- "python_markdown_block_snippet",
7320
- "_cc_python_markdown_unknown_snippet",
7321
- "_cc_python_markdown_unknown_markdown_in_html"
7322
- ],
7323
- "type": "string"
7324
- },
7325
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7326
- "type": "array"
7327
- },
7328
- "include": {
7329
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7330
- "items": {
7331
- "enum": [
7332
- "python_markdown_abbreviation",
7333
- "python_markdown_admonition",
7334
- "python_markdown_arithmatex",
7335
- "python_markdown_attribute_list",
7336
- "python_markdown_code_block",
7337
- "python_markdown_collapsible_admonition",
7338
- "python_markdown_tabs",
7339
- "python_markdown_footnote",
7340
- "python_markdown_footnote_marker",
7341
- "python_markdown_icon",
7342
- "python_markdown_image",
7343
- "python_markdown_inline_arithmatex",
7344
- "python_markdown_inline_code",
7345
- "python_markdown_link",
7346
- "python_markdown_reference_image",
7347
- "python_markdown_reference_template_image",
7348
- "python_markdown_reference_link",
7349
- "python_markdown_reference",
7350
- "python_markdown_reference_template",
7351
- "python_markdown_block_snippet",
7352
- "_cc_python_markdown_unknown_snippet",
7353
- "_cc_python_markdown_unknown_markdown_in_html"
7354
- ],
7355
- "type": "string"
7356
- },
7357
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7358
- "type": "array"
7359
- }
7360
- },
7361
- "type": "object"
7015
+ "$ref": "#/definitions/SnippetsImport%3C(%22python_markdown_abbreviation%22%7C%22python_markdown_admonition%22%7C%22python_markdown_arithmatex%22%7C%22python_markdown_attribute_list%22%7C%22python_markdown_code_block%22%7C%22python_markdown_collapsible_admonition%22%7C%22python_markdown_tabs%22%7C%22python_markdown_footnote%22%7C%22python_markdown_footnote_marker%22%7C%22python_markdown_icon%22%7C%22python_markdown_image%22%7C%22python_markdown_inline_arithmatex%22%7C%22python_markdown_inline_code%22%7C%22python_markdown_link%22%7C%22python_markdown_reference_image%22%7C%22python_markdown_reference_template_image%22%7C%22python_markdown_reference_link%22%7C%22python_markdown_reference%22%7C%22python_markdown_reference_template%22%7C%22python_markdown_block_snippet%22%7C%22_cc_python_markdown_unknown_snippet%22%7C%22_cc_python_markdown_unknown_markdown_in_html%22)%3E"
7362
7016
  }
7363
7017
  ],
7364
7018
  "description": "Default snippets for content using Python markdown extensions.",
@@ -7437,10 +7091,10 @@
7437
7091
  "type": "number"
7438
7092
  },
7439
7093
  "theme": {
7094
+ "$ref": "#/definitions/Theme",
7440
7095
  "default": "monokai",
7441
7096
  "description": "Changes the color scheme for syntax highlighting in the editor.",
7442
- "markdownDescription": "Changes the color scheme for syntax highlighting in the editor.",
7443
- "type": "string"
7097
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
7444
7098
  }
7445
7099
  },
7446
7100
  "type": "object"
@@ -7938,6 +7592,49 @@
7938
7592
  },
7939
7593
  "type": "object"
7940
7594
  },
7595
+ "Theme": {
7596
+ "enum": [
7597
+ "ambiance",
7598
+ "chaos",
7599
+ "chrome",
7600
+ "clouds",
7601
+ "clouds_midnight",
7602
+ "cobalt",
7603
+ "crimson_editor",
7604
+ "dawn",
7605
+ "dracula",
7606
+ "dreamweaver",
7607
+ "eclipse",
7608
+ "github",
7609
+ "gob",
7610
+ "gruvbox",
7611
+ "idle_fingers",
7612
+ "iplastic",
7613
+ "katzenmilch",
7614
+ "kr_theme",
7615
+ "kuroir",
7616
+ "merbivore",
7617
+ "merbivore_soft",
7618
+ "mono_industrial",
7619
+ "monokai",
7620
+ "nord_dark",
7621
+ "pastel_on_dark",
7622
+ "solarized_dark",
7623
+ "solarized_light",
7624
+ "sqlserver",
7625
+ "terminal",
7626
+ "textmate",
7627
+ "tomorrow",
7628
+ "tomorrow_night",
7629
+ "tomorrow_night_blue",
7630
+ "tomorrow_night_bright",
7631
+ "tomorrow_night_eighties",
7632
+ "twilight",
7633
+ "vibrant_ink",
7634
+ "xcode"
7635
+ ],
7636
+ "type": "string"
7637
+ },
7941
7638
  "Timezone": {
7942
7639
  "enum": [
7943
7640
  "Africa/Abidjan",