@cloudcannon/configuration-types 0.0.7 → 0.0.8

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "$ref": "#/definitions/DefaultConfiguration",
2
+ "$ref": "#/definitions/ReaderConfiguration",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "definitions": {
5
5
  "AddOption": {
@@ -289,8 +289,18 @@
289
289
  "type": "string"
290
290
  },
291
291
  "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.",
292
+ "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
293
+ "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
294
+ "type": "boolean"
295
+ },
296
+ "code_block": {
297
+ "description": "Enables a control to insert a code block.",
298
+ "markdownDescription": "Enables a control to insert a code block.",
299
+ "type": "boolean"
300
+ },
301
+ "code_inline": {
302
+ "description": "Enables a control to create an inline code element, containing any selected text.",
303
+ "markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
294
304
  "type": "boolean"
295
305
  },
296
306
  "copyformatting": {
@@ -732,225 +742,10 @@
732
742
  "type": "number"
733
743
  },
734
744
  "theme": {
745
+ "$ref": "#/definitions/Theme",
735
746
  "default": "monokai",
736
747
  "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"
739
- }
740
- },
741
- "type": "object"
742
- },
743
- "CollectionConfig": {
744
- "additionalProperties": false,
745
- "properties": {
746
- "_array_structures": {
747
- "additionalProperties": {},
748
- "description": "[DEPRECATED] Now known as _structures.",
749
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
750
- "type": "object"
751
- },
752
- "_comments": {
753
- "additionalProperties": {
754
- "type": "string"
755
- },
756
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
757
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
758
- "type": "object"
759
- },
760
- "_editables": {
761
- "$ref": "#/definitions/Editables",
762
- "description": "Contains input options for Editable Regions and the Content Editor.",
763
- "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
764
- },
765
- "_enabled_editors": {
766
- "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.",
767
- "items": {
768
- "$ref": "#/definitions/EditorKey"
769
- },
770
- "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.",
771
- "type": "array"
772
- },
773
- "_inputs": {
774
- "additionalProperties": {
775
- "$ref": "#/definitions/Input"
776
- },
777
- "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
778
- "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
779
- "type": "object"
780
- },
781
- "_options": {
782
- "additionalProperties": {
783
- "additionalProperties": {},
784
- "type": "object"
785
- },
786
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
787
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
788
- "type": "object"
789
- },
790
- "_select_data": {
791
- "additionalProperties": {
792
- "$ref": "#/definitions/SelectValues"
793
- },
794
- "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
795
- "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
796
- "type": "object"
797
- },
798
- "_structures": {
799
- "additionalProperties": {
800
- "$ref": "#/definitions/Structure"
801
- },
802
- "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.",
803
- "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.",
804
- "type": "object"
805
- },
806
- "add_options": {
807
- "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.",
808
- "items": {
809
- "$ref": "#/definitions/AddOption"
810
- },
811
- "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.",
812
- "type": "array"
813
- },
814
- "create": {
815
- "$ref": "#/definitions/Create",
816
- "description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
817
- "markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
818
- },
819
- "description": {
820
- "description": "Text or Markdown to show above the collection file list.",
821
- "markdownDescription": "Text or Markdown to show above the collection file list.",
822
- "type": "string"
823
- },
824
- "disable_add": {
825
- "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.",
826
- "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.",
827
- "type": "boolean"
828
- },
829
- "disable_add_folder": {
830
- "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.",
831
- "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.",
832
- "type": "boolean"
833
- },
834
- "disable_file_actions": {
835
- "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.",
836
- "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.",
837
- "type": "boolean"
838
- },
839
- "documentation": {
840
- "$ref": "#/definitions/Documentation",
841
- "description": "Provides a custom link for documentation for editors shown above the collection file list.",
842
- "markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
843
- },
844
- "filter": {
845
- "anyOf": [
846
- {
847
- "$ref": "#/definitions/Filter"
848
- },
849
- {
850
- "$ref": "#/definitions/FilterBase"
851
- }
852
- ],
853
- "description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
854
- "markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
855
- },
856
- "glob": {
857
- "anyOf": [
858
- {
859
- "type": "string"
860
- },
861
- {
862
- "items": {
863
- "type": "string"
864
- },
865
- "type": "array"
866
- }
867
- ],
868
- "description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
869
- "markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
870
- },
871
- "icon": {
872
- "$ref": "#/definitions/Icon",
873
- "description": "Sets an icon to use alongside references to this collection.",
874
- "markdownDescription": "Sets an icon to use alongside references to this collection."
875
- },
876
- "name": {
877
- "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.",
878
- "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.",
879
- "type": "string"
880
- },
881
- "new_preview_url": {
882
- "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.",
883
- "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.",
884
- "type": "string"
885
- },
886
- "output": {
887
- "description": "Whether or not files in this collection produce files in the build output.",
888
- "markdownDescription": "Whether or not files in this collection produce files in the build output.",
889
- "type": "boolean"
890
- },
891
- "parser": {
892
- "description": "Overrides how each file in the collection is read. Detected automatically from file extension if unset.",
893
- "enum": [
894
- "csv",
895
- "front-matter",
896
- "json",
897
- "properties",
898
- "toml",
899
- "yaml"
900
- ],
901
- "markdownDescription": "Overrides how each file in the collection is read. Detected automatically from file extension\nif unset.",
902
- "type": "string"
903
- },
904
- "path": {
905
- "description": "The top-most folder where the files in this collection are stored. It is relative to source.",
906
- "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
907
- "type": "string"
908
- },
909
- "preview": {
910
- "$ref": "#/definitions/Preview",
911
- "description": "Changes the way items are previewed in the CMS.",
912
- "markdownDescription": "Changes the way items are previewed in the CMS."
913
- },
914
- "schema_key": {
915
- "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.",
916
- "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.",
917
- "type": "string"
918
- },
919
- "schemas": {
920
- "additionalProperties": {
921
- "$ref": "#/definitions/Schema"
922
- },
923
- "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.",
924
- "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.",
925
- "type": "object"
926
- },
927
- "singular_key": {
928
- "description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
929
- "markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
930
- "type": "string"
931
- },
932
- "singular_name": {
933
- "description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
934
- "markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
935
- "type": "string"
936
- },
937
- "sort": {
938
- "$ref": "#/definitions/Sort",
939
- "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.",
940
- "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."
941
- },
942
- "sort_options": {
943
- "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.",
944
- "items": {
945
- "$ref": "#/definitions/SortOption"
946
- },
947
- "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.",
948
- "type": "array"
949
- },
950
- "url": {
951
- "description": "Used to build the url field for items in the collection. Similar to permalink in many SSGs. Defaults to ''",
952
- "markdownDescription": "Used to build the url field for items in the collection. Similar to permalink in many SSGs.\nDefaults to ''",
953
- "type": "string"
748
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
954
749
  }
955
750
  },
956
751
  "type": "object"
@@ -1164,8 +959,8 @@
1164
959
  "type": "string"
1165
960
  },
1166
961
  "publish_to": {
1167
- "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.",
1168
- "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.",
962
+ "description": "Defines a target collection when publishing. When a file is published, the target collection's create definition is used instead.",
963
+ "markdownDescription": "Defines a target collection when publishing. When a file is published, the target collection's\ncreate definition is used instead.",
1169
964
  "type": "string"
1170
965
  }
1171
966
  },
@@ -1178,7 +973,7 @@
1178
973
  "additionalProperties": false,
1179
974
  "properties": {
1180
975
  "parser": {
1181
- "description": "Overrides how each file in the dataset is read. Detected automatically from file extension if unset.",
976
+ "description": "Overrides the format files are read. Detected automatically from file extension if unset.",
1182
977
  "enum": [
1183
978
  "csv",
1184
979
  "front-matter",
@@ -1187,7 +982,7 @@
1187
982
  "toml",
1188
983
  "yaml"
1189
984
  ],
1190
- "markdownDescription": "Overrides how each file in the dataset is read. Detected automatically from file extension if\nunset.",
985
+ "markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
1191
986
  "type": "string"
1192
987
  },
1193
988
  "path": {
@@ -1301,270 +1096,42 @@
1301
1096
  },
1302
1097
  "type": "object"
1303
1098
  },
1304
- "DefaultConfiguration": {
1099
+ "Documentation": {
1305
1100
  "additionalProperties": false,
1306
1101
  "properties": {
1307
- "_array_structures": {
1308
- "additionalProperties": {},
1309
- "description": "[DEPRECATED] Now known as _structures.",
1310
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1311
- "type": "object"
1102
+ "icon": {
1103
+ "$ref": "#/definitions/Icon",
1104
+ "description": "The icon displayed next to the link.",
1105
+ "markdownDescription": "The icon displayed next to the link."
1312
1106
  },
1313
- "_comments": {
1314
- "additionalProperties": {
1315
- "type": "string"
1316
- },
1317
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1318
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1319
- "type": "object"
1107
+ "text": {
1108
+ "description": "The visible text used in the link.",
1109
+ "markdownDescription": "The visible text used in the link.",
1110
+ "type": "string"
1320
1111
  },
1321
- "_editables": {
1322
- "$ref": "#/definitions/Editables",
1323
- "description": "Contains input options for Editable Regions and the Content Editor.",
1324
- "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
1112
+ "url": {
1113
+ "description": "The \"href\" value of the link.",
1114
+ "markdownDescription": "The \"href\" value of the link.",
1115
+ "type": "string"
1116
+ }
1117
+ },
1118
+ "required": [
1119
+ "url"
1120
+ ],
1121
+ "type": "object"
1122
+ },
1123
+ "Editables": {
1124
+ "additionalProperties": false,
1125
+ "properties": {
1126
+ "block": {
1127
+ "$ref": "#/definitions/BlockEditable",
1128
+ "description": "Contains input options for block Editable Regions.",
1129
+ "markdownDescription": "Contains input options for block Editable Regions."
1325
1130
  },
1326
- "_enabled_editors": {
1327
- "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.",
1328
- "items": {
1329
- "$ref": "#/definitions/EditorKey"
1330
- },
1331
- "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.",
1332
- "type": "array"
1333
- },
1334
- "_inputs": {
1335
- "additionalProperties": {
1336
- "$ref": "#/definitions/Input"
1337
- },
1338
- "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1339
- "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1340
- "type": "object"
1341
- },
1342
- "_options": {
1343
- "additionalProperties": {
1344
- "additionalProperties": {},
1345
- "type": "object"
1346
- },
1347
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1348
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1349
- "type": "object"
1350
- },
1351
- "_select_data": {
1352
- "additionalProperties": {
1353
- "$ref": "#/definitions/SelectValues"
1354
- },
1355
- "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
1356
- "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
1357
- "type": "object"
1358
- },
1359
- "_snippets": {
1360
- "additionalProperties": {
1361
- "$ref": "#/definitions/SnippetConfig"
1362
- },
1363
- "description": "Configuration for custom snippets.",
1364
- "markdownDescription": "Configuration for custom snippets.",
1365
- "type": "object"
1366
- },
1367
- "_snippets_definitions": {
1368
- "additionalProperties": {
1369
- "$ref": "#/definitions/SnippetConfig"
1370
- },
1371
- "description": "Extended option used when creating more complex custom snippets.",
1372
- "markdownDescription": "Extended option used when creating more complex custom snippets.",
1373
- "type": "object"
1374
- },
1375
- "_snippets_imports": {
1376
- "$ref": "#/definitions/SnippetsImports",
1377
- "description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
1378
- "markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
1379
- },
1380
- "_snippets_templates": {
1381
- "additionalProperties": {
1382
- "$ref": "#/definitions/SnippetConfig"
1383
- },
1384
- "description": "Extended option used when creating more complex custom snippets.",
1385
- "markdownDescription": "Extended option used when creating more complex custom snippets.",
1386
- "type": "object"
1387
- },
1388
- "_structures": {
1389
- "additionalProperties": {
1390
- "$ref": "#/definitions/Structure"
1391
- },
1392
- "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.",
1393
- "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.",
1394
- "type": "object"
1395
- },
1396
- "base_url": {
1397
- "description": "The subpath where your output files are hosted.",
1398
- "markdownDescription": "The subpath where your output files are hosted.",
1399
- "type": "string"
1400
- },
1401
- "collection_groups": {
1402
- "description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
1403
- "items": {
1404
- "$ref": "#/definitions/CollectionGroup"
1405
- },
1406
- "markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
1407
- "type": "array"
1408
- },
1409
- "collections_config": {
1410
- "additionalProperties": {
1411
- "$ref": "#/definitions/CollectionConfig"
1412
- },
1413
- "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.",
1414
- "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.",
1415
- "type": "object"
1416
- },
1417
- "commit_templates": {
1418
- "items": {
1419
- "$ref": "#/definitions/CommitTemplate"
1420
- },
1421
- "type": "array"
1422
- },
1423
- "data_config": {
1424
- "additionalProperties": {
1425
- "$ref": "#/definitions/DataConfigEntry"
1426
- },
1427
- "description": "Controls what data sets are available to populate select and multiselect inputs.",
1428
- "markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
1429
- "type": "object"
1430
- },
1431
- "editor": {
1432
- "$ref": "#/definitions/Editor",
1433
- "description": "Contains settings for the default editor actions on your site.",
1434
- "markdownDescription": "Contains settings for the default editor actions on your site."
1435
- },
1436
- "file_config": {
1437
- "additionalProperties": {
1438
- "$ref": "#/definitions/FileConfigEntry"
1439
- },
1440
- "description": "Provides scope to configure at a file level, without adding configuration to files.",
1441
- "markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
1442
- "type": "object"
1443
- },
1444
- "generator": {
1445
- "additionalProperties": false,
1446
- "description": "Contains settings for various Markdown engines.",
1447
- "markdownDescription": "Contains settings for various Markdown engines.",
1448
- "properties": {
1449
- "metadata": {
1450
- "additionalProperties": false,
1451
- "description": "Settings for various Markdown engines.",
1452
- "markdownDescription": "Settings for various Markdown engines.",
1453
- "properties": {
1454
- "commonmark": {
1455
- "description": "Markdown options specific used when markdown is set to \"commonmark\".",
1456
- "markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
1457
- "type": "object"
1458
- },
1459
- "commonmarkghpages": {
1460
- "description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
1461
- "markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
1462
- "type": "object"
1463
- },
1464
- "goldmark": {
1465
- "description": "Markdown options specific used when markdown is set to \"goldmark\".",
1466
- "markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
1467
- "type": "object"
1468
- },
1469
- "kramdown": {
1470
- "description": "Markdown options specific used when markdown is set to \"kramdown\".",
1471
- "markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
1472
- "type": "object"
1473
- },
1474
- "markdown": {
1475
- "description": "The Markdown engine used on your site.",
1476
- "enum": [
1477
- "kramdown",
1478
- "commonmark",
1479
- "commonmarkghpages",
1480
- "goldmark",
1481
- "markdown-it"
1482
- ],
1483
- "markdownDescription": "The Markdown engine used on your site.",
1484
- "type": "string"
1485
- },
1486
- "markdown-it": {
1487
- "description": "Markdown options specific used when markdown is set to \"markdown-it\".",
1488
- "markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
1489
- "type": "object"
1490
- }
1491
- },
1492
- "required": [
1493
- "markdown"
1494
- ],
1495
- "type": "object"
1496
- }
1497
- },
1498
- "type": "object"
1499
- },
1500
- "output": {
1501
- "description": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy. Defaults to the root folder.",
1502
- "markdownDescription": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy.\nDefaults to the root folder.",
1503
- "type": "string"
1504
- },
1505
- "paths": {
1506
- "$ref": "#/definitions/Paths",
1507
- "description": "Global paths to common folders.",
1508
- "markdownDescription": "Global paths to common folders."
1509
- },
1510
- "source": {
1511
- "description": "Base path to your site source files, relative to the root folder.",
1512
- "markdownDescription": "Base path to your site source files, relative to the root folder.",
1513
- "type": "string"
1514
- },
1515
- "source_editor": {
1516
- "$ref": "#/definitions/SourceEditor",
1517
- "description": "Settings for the behavior and appearance of the Source Editor.",
1518
- "markdownDescription": "Settings for the behavior and appearance of the Source Editor."
1519
- },
1520
- "ssg": {
1521
- "$ref": "#/definitions/SsgKey"
1522
- },
1523
- "timezone": {
1524
- "$ref": "#/definitions/Timezone",
1525
- "default": "Etc/UTC",
1526
- "description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
1527
- "markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
1528
- }
1529
- },
1530
- "type": "object"
1531
- },
1532
- "Documentation": {
1533
- "additionalProperties": false,
1534
- "properties": {
1535
- "icon": {
1536
- "$ref": "#/definitions/Icon",
1537
- "description": "The icon displayed next to the link.",
1538
- "markdownDescription": "The icon displayed next to the link."
1539
- },
1540
- "text": {
1541
- "description": "The visible text used in the link.",
1542
- "markdownDescription": "The visible text used in the link.",
1543
- "type": "string"
1544
- },
1545
- "url": {
1546
- "description": "The \"href\" value of the link.",
1547
- "markdownDescription": "The \"href\" value of the link.",
1548
- "type": "string"
1549
- }
1550
- },
1551
- "required": [
1552
- "url"
1553
- ],
1554
- "type": "object"
1555
- },
1556
- "Editables": {
1557
- "additionalProperties": false,
1558
- "properties": {
1559
- "block": {
1560
- "$ref": "#/definitions/BlockEditable",
1561
- "description": "Contains input options for block Editable Regions.",
1562
- "markdownDescription": "Contains input options for block Editable Regions."
1563
- },
1564
- "content": {
1565
- "$ref": "#/definitions/BlockEditable",
1566
- "description": "Contains input options for the Content Editor.",
1567
- "markdownDescription": "Contains input options for the Content Editor."
1131
+ "content": {
1132
+ "$ref": "#/definitions/BlockEditable",
1133
+ "description": "Contains input options for the Content Editor.",
1134
+ "markdownDescription": "Contains input options for the Content Editor."
1568
1135
  },
1569
1136
  "image": {
1570
1137
  "$ref": "#/definitions/ImageEditable",
@@ -1640,16 +1207,18 @@
1640
1207
  "properties": {
1641
1208
  "_array_structures": {
1642
1209
  "additionalProperties": {},
1643
- "description": "[DEPRECATED] Now known as _structures.",
1644
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1210
+ "deprecated": "Use _structures instead.",
1211
+ "description": "Now known as _structures.",
1212
+ "markdownDescription": "Now known as _structures.",
1645
1213
  "type": "object"
1646
1214
  },
1647
1215
  "_comments": {
1648
1216
  "additionalProperties": {
1649
1217
  "type": "string"
1650
1218
  },
1651
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1652
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1219
+ "deprecated": "Use _inputs instead.",
1220
+ "description": "Now part of _inputs.*.comment.",
1221
+ "markdownDescription": "Now part of _inputs.*.comment.",
1653
1222
  "type": "object"
1654
1223
  },
1655
1224
  "_editables": {
@@ -1678,8 +1247,9 @@
1678
1247
  "additionalProperties": {},
1679
1248
  "type": "object"
1680
1249
  },
1681
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1682
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1250
+ "deprecated": "Use _inputs instead.",
1251
+ "description": "Now part of _inputs.*.options.",
1252
+ "markdownDescription": "Now part of _inputs.*.options.",
1683
1253
  "type": "object"
1684
1254
  },
1685
1255
  "_select_data": {
@@ -1700,14 +1270,14 @@
1700
1270
  },
1701
1271
  "glob": {
1702
1272
  "anyOf": [
1703
- {
1704
- "type": "string"
1705
- },
1706
1273
  {
1707
1274
  "items": {
1708
1275
  "type": "string"
1709
1276
  },
1710
1277
  "type": "array"
1278
+ },
1279
+ {
1280
+ "type": "string"
1711
1281
  }
1712
1282
  ],
1713
1283
  "description": "The glob pattern(s) targeting a path to one or more files.",
@@ -5390,158 +4960,22 @@
5390
4960
  "additionalProperties": false,
5391
4961
  "properties": {
5392
4962
  "icon": {
5393
- "anyOf": [
5394
- {
5395
- "items": {
5396
- "anyOf": [
5397
- {
5398
- "additionalProperties": false,
5399
- "properties": {
5400
- "key": {
5401
- "description": "The key used to access the value used for the preview.",
5402
- "markdownDescription": "The key used to access the value used for the preview.",
5403
- "type": "string"
5404
- }
5405
- },
5406
- "required": [
5407
- "key"
5408
- ],
5409
- "type": "object"
5410
- },
5411
- {
5412
- "type": "string"
5413
- },
5414
- {
5415
- "type": "boolean"
5416
- }
5417
- ]
5418
- },
5419
- "type": "array"
5420
- },
5421
- {
5422
- "type": "string"
5423
- },
5424
- {
5425
- "type": "boolean"
5426
- }
5427
- ],
4963
+ "$ref": "#/definitions/PreviewEntry",
5428
4964
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5429
4965
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5430
4966
  },
5431
4967
  "image": {
5432
- "anyOf": [
5433
- {
5434
- "items": {
5435
- "anyOf": [
5436
- {
5437
- "additionalProperties": false,
5438
- "properties": {
5439
- "key": {
5440
- "description": "The key used to access the value used for the preview.",
5441
- "markdownDescription": "The key used to access the value used for the preview.",
5442
- "type": "string"
5443
- }
5444
- },
5445
- "required": [
5446
- "key"
5447
- ],
5448
- "type": "object"
5449
- },
5450
- {
5451
- "type": "string"
5452
- },
5453
- {
5454
- "type": "boolean"
5455
- }
5456
- ]
5457
- },
5458
- "type": "array"
5459
- },
5460
- {
5461
- "type": "string"
5462
- },
5463
- {
5464
- "type": "boolean"
5465
- }
5466
- ],
4968
+ "$ref": "#/definitions/PreviewEntry",
5467
4969
  "description": "Controls the image shown per item.",
5468
4970
  "markdownDescription": "Controls the image shown per item."
5469
4971
  },
5470
4972
  "subtext": {
5471
- "anyOf": [
5472
- {
5473
- "items": {
5474
- "anyOf": [
5475
- {
5476
- "additionalProperties": false,
5477
- "properties": {
5478
- "key": {
5479
- "description": "The key used to access the value used for the preview.",
5480
- "markdownDescription": "The key used to access the value used for the preview.",
5481
- "type": "string"
5482
- }
5483
- },
5484
- "required": [
5485
- "key"
5486
- ],
5487
- "type": "object"
5488
- },
5489
- {
5490
- "type": "string"
5491
- },
5492
- {
5493
- "type": "boolean"
5494
- }
5495
- ]
5496
- },
5497
- "type": "array"
5498
- },
5499
- {
5500
- "type": "string"
5501
- },
5502
- {
5503
- "type": "boolean"
5504
- }
5505
- ],
4973
+ "$ref": "#/definitions/PreviewEntry",
5506
4974
  "description": "Controls the supporting text shown per item.",
5507
4975
  "markdownDescription": "Controls the supporting text shown per item."
5508
4976
  },
5509
4977
  "text": {
5510
- "anyOf": [
5511
- {
5512
- "items": {
5513
- "anyOf": [
5514
- {
5515
- "additionalProperties": false,
5516
- "properties": {
5517
- "key": {
5518
- "description": "The key used to access the value used for the preview.",
5519
- "markdownDescription": "The key used to access the value used for the preview.",
5520
- "type": "string"
5521
- }
5522
- },
5523
- "required": [
5524
- "key"
5525
- ],
5526
- "type": "object"
5527
- },
5528
- {
5529
- "type": "string"
5530
- },
5531
- {
5532
- "type": "boolean"
5533
- }
5534
- ]
5535
- },
5536
- "type": "array"
5537
- },
5538
- {
5539
- "type": "string"
5540
- },
5541
- {
5542
- "type": "boolean"
5543
- }
5544
- ],
4978
+ "$ref": "#/definitions/PreviewEntry",
5545
4979
  "description": "Controls the main text shown per item.",
5546
4980
  "markdownDescription": "Controls the main text shown per item."
5547
4981
  }
@@ -5552,7 +4986,6 @@
5552
4986
  "additionalProperties": false,
5553
4987
  "properties": {
5554
4988
  "collections": {
5555
- "default": "",
5556
4989
  "description": "Parent folder of all collections.",
5557
4990
  "markdownDescription": "Parent folder of all collections.",
5558
4991
  "type": "string"
@@ -5622,41 +5055,7 @@
5622
5055
  "markdownDescription": "Details for large image/icon preview per item."
5623
5056
  },
5624
5057
  "icon": {
5625
- "anyOf": [
5626
- {
5627
- "items": {
5628
- "anyOf": [
5629
- {
5630
- "additionalProperties": false,
5631
- "properties": {
5632
- "key": {
5633
- "description": "The key used to access the value used for the preview.",
5634
- "markdownDescription": "The key used to access the value used for the preview.",
5635
- "type": "string"
5636
- }
5637
- },
5638
- "required": [
5639
- "key"
5640
- ],
5641
- "type": "object"
5642
- },
5643
- {
5644
- "type": "string"
5645
- },
5646
- {
5647
- "type": "boolean"
5648
- }
5649
- ]
5650
- },
5651
- "type": "array"
5652
- },
5653
- {
5654
- "type": "string"
5655
- },
5656
- {
5657
- "type": "boolean"
5658
- }
5659
- ],
5058
+ "$ref": "#/definitions/PreviewEntry",
5660
5059
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5661
5060
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5662
5061
  },
@@ -5666,41 +5065,7 @@
5666
5065
  "type": "string"
5667
5066
  },
5668
5067
  "image": {
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
- ],
5068
+ "$ref": "#/definitions/PreviewEntry",
5704
5069
  "description": "Controls the image shown per item.",
5705
5070
  "markdownDescription": "Controls the image shown per item."
5706
5071
  },
@@ -5713,86 +5078,44 @@
5713
5078
  "type": "array"
5714
5079
  },
5715
5080
  "subtext": {
5716
- "anyOf": [
5717
- {
5718
- "items": {
5719
- "anyOf": [
5720
- {
5721
- "additionalProperties": false,
5722
- "properties": {
5723
- "key": {
5724
- "description": "The key used to access the value used for the preview.",
5725
- "markdownDescription": "The key used to access the value used for the preview.",
5726
- "type": "string"
5727
- }
5728
- },
5729
- "required": [
5730
- "key"
5731
- ],
5732
- "type": "object"
5733
- },
5734
- {
5735
- "type": "string"
5736
- },
5737
- {
5738
- "type": "boolean"
5739
- }
5740
- ]
5741
- },
5742
- "type": "array"
5743
- },
5744
- {
5745
- "type": "string"
5746
- },
5747
- {
5748
- "type": "boolean"
5749
- }
5750
- ],
5081
+ "$ref": "#/definitions/PreviewEntry",
5751
5082
  "description": "Controls the supporting text shown per item.",
5752
5083
  "markdownDescription": "Controls the supporting text shown per item."
5753
5084
  },
5754
5085
  "text": {
5755
- "anyOf": [
5756
- {
5757
- "items": {
5758
- "anyOf": [
5759
- {
5760
- "additionalProperties": false,
5761
- "properties": {
5762
- "key": {
5763
- "description": "The key used to access the value used for the preview.",
5764
- "markdownDescription": "The key used to access the value used for the preview.",
5765
- "type": "string"
5766
- }
5767
- },
5768
- "required": [
5769
- "key"
5770
- ],
5771
- "type": "object"
5772
- },
5773
- {
5774
- "type": "string"
5775
- },
5776
- {
5777
- "type": "boolean"
5778
- }
5779
- ]
5780
- },
5781
- "type": "array"
5782
- },
5783
- {
5784
- "type": "string"
5785
- },
5786
- {
5787
- "type": "boolean"
5788
- }
5789
- ],
5086
+ "$ref": "#/definitions/PreviewEntry",
5790
5087
  "description": "Controls the main text shown per item.",
5791
5088
  "markdownDescription": "Controls the main text shown per item."
5792
5089
  }
5793
5090
  },
5794
5091
  "type": "object"
5795
5092
  },
5093
+ "PreviewEntry": {
5094
+ "anyOf": [
5095
+ {
5096
+ "items": {
5097
+ "anyOf": [
5098
+ {
5099
+ "$ref": "#/definitions/PreviewKeyEntry"
5100
+ },
5101
+ {
5102
+ "type": "string"
5103
+ },
5104
+ {
5105
+ "type": "boolean"
5106
+ }
5107
+ ]
5108
+ },
5109
+ "type": "array"
5110
+ },
5111
+ {
5112
+ "type": "string"
5113
+ },
5114
+ {
5115
+ "type": "boolean"
5116
+ }
5117
+ ]
5118
+ },
5796
5119
  "PreviewGallery": {
5797
5120
  "additionalProperties": false,
5798
5121
  "properties": {
@@ -5808,41 +5131,7 @@
5808
5131
  "type": "string"
5809
5132
  },
5810
5133
  "icon": {
5811
- "anyOf": [
5812
- {
5813
- "items": {
5814
- "anyOf": [
5815
- {
5816
- "additionalProperties": false,
5817
- "properties": {
5818
- "key": {
5819
- "description": "The key used to access the value used for the preview.",
5820
- "markdownDescription": "The key used to access the value used for the preview.",
5821
- "type": "string"
5822
- }
5823
- },
5824
- "required": [
5825
- "key"
5826
- ],
5827
- "type": "object"
5828
- },
5829
- {
5830
- "type": "string"
5831
- },
5832
- {
5833
- "type": "boolean"
5834
- }
5835
- ]
5836
- },
5837
- "type": "array"
5838
- },
5839
- {
5840
- "type": "string"
5841
- },
5842
- {
5843
- "type": "boolean"
5844
- }
5845
- ],
5134
+ "$ref": "#/definitions/PreviewEntry",
5846
5135
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5847
5136
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5848
5137
  },
@@ -5852,125 +5141,37 @@
5852
5141
  "type": "string"
5853
5142
  },
5854
5143
  "image": {
5855
- "anyOf": [
5856
- {
5857
- "items": {
5858
- "anyOf": [
5859
- {
5860
- "additionalProperties": false,
5861
- "properties": {
5862
- "key": {
5863
- "description": "The key used to access the value used for the preview.",
5864
- "markdownDescription": "The key used to access the value used for the preview.",
5865
- "type": "string"
5866
- }
5867
- },
5868
- "required": [
5869
- "key"
5870
- ],
5871
- "type": "object"
5872
- },
5873
- {
5874
- "type": "string"
5875
- },
5876
- {
5877
- "type": "boolean"
5878
- }
5879
- ]
5880
- },
5881
- "type": "array"
5882
- },
5883
- {
5884
- "type": "string"
5885
- },
5886
- {
5887
- "type": "boolean"
5888
- }
5889
- ],
5144
+ "$ref": "#/definitions/PreviewEntry",
5890
5145
  "description": "Controls the image shown per item.",
5891
5146
  "markdownDescription": "Controls the image shown per item."
5892
5147
  },
5893
5148
  "text": {
5894
- "anyOf": [
5895
- {
5896
- "items": {
5897
- "anyOf": [
5898
- {
5899
- "additionalProperties": false,
5900
- "properties": {
5901
- "key": {
5902
- "description": "The key used to access the value used for the preview.",
5903
- "markdownDescription": "The key used to access the value used for the preview.",
5904
- "type": "string"
5905
- }
5906
- },
5907
- "required": [
5908
- "key"
5909
- ],
5910
- "type": "object"
5911
- },
5912
- {
5913
- "type": "string"
5914
- },
5915
- {
5916
- "type": "boolean"
5917
- }
5918
- ]
5919
- },
5920
- "type": "array"
5921
- },
5922
- {
5923
- "type": "string"
5924
- },
5925
- {
5926
- "type": "boolean"
5927
- }
5928
- ],
5149
+ "$ref": "#/definitions/PreviewEntry",
5929
5150
  "description": "Controls the main text shown per item.",
5930
5151
  "markdownDescription": "Controls the main text shown per item."
5931
5152
  }
5932
5153
  },
5933
5154
  "type": "object"
5934
5155
  },
5156
+ "PreviewKeyEntry": {
5157
+ "additionalProperties": false,
5158
+ "properties": {
5159
+ "key": {
5160
+ "description": "The key used to access the value used for the preview.",
5161
+ "markdownDescription": "The key used to access the value used for the preview.",
5162
+ "type": "string"
5163
+ }
5164
+ },
5165
+ "required": [
5166
+ "key"
5167
+ ],
5168
+ "type": "object"
5169
+ },
5935
5170
  "PreviewMetadata": {
5936
5171
  "additionalProperties": false,
5937
5172
  "properties": {
5938
5173
  "icon": {
5939
- "anyOf": [
5940
- {
5941
- "items": {
5942
- "anyOf": [
5943
- {
5944
- "additionalProperties": false,
5945
- "properties": {
5946
- "key": {
5947
- "description": "The key used to access the value used for the preview.",
5948
- "markdownDescription": "The key used to access the value used for the preview.",
5949
- "type": "string"
5950
- }
5951
- },
5952
- "required": [
5953
- "key"
5954
- ],
5955
- "type": "object"
5956
- },
5957
- {
5958
- "type": "string"
5959
- },
5960
- {
5961
- "type": "boolean"
5962
- }
5963
- ]
5964
- },
5965
- "type": "array"
5966
- },
5967
- {
5968
- "type": "string"
5969
- },
5970
- {
5971
- "type": "boolean"
5972
- }
5973
- ],
5174
+ "$ref": "#/definitions/PreviewEntry",
5974
5175
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5975
5176
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5976
5177
  },
@@ -5980,80 +5181,12 @@
5980
5181
  "type": "string"
5981
5182
  },
5982
5183
  "image": {
5983
- "anyOf": [
5984
- {
5985
- "items": {
5986
- "anyOf": [
5987
- {
5988
- "additionalProperties": false,
5989
- "properties": {
5990
- "key": {
5991
- "description": "The key used to access the value used for the preview.",
5992
- "markdownDescription": "The key used to access the value used for the preview.",
5993
- "type": "string"
5994
- }
5995
- },
5996
- "required": [
5997
- "key"
5998
- ],
5999
- "type": "object"
6000
- },
6001
- {
6002
- "type": "string"
6003
- },
6004
- {
6005
- "type": "boolean"
6006
- }
6007
- ]
6008
- },
6009
- "type": "array"
6010
- },
6011
- {
6012
- "type": "string"
6013
- },
6014
- {
6015
- "type": "boolean"
6016
- }
6017
- ],
5184
+ "$ref": "#/definitions/PreviewEntry",
6018
5185
  "description": "Controls the image shown per item.",
6019
5186
  "markdownDescription": "Controls the image shown per item."
6020
5187
  },
6021
5188
  "text": {
6022
- "anyOf": [
6023
- {
6024
- "items": {
6025
- "anyOf": [
6026
- {
6027
- "additionalProperties": false,
6028
- "properties": {
6029
- "key": {
6030
- "description": "The key used to access the value used for the preview.",
6031
- "markdownDescription": "The key used to access the value used for the preview.",
6032
- "type": "string"
6033
- }
6034
- },
6035
- "required": [
6036
- "key"
6037
- ],
6038
- "type": "object"
6039
- },
6040
- {
6041
- "type": "string"
6042
- },
6043
- {
6044
- "type": "boolean"
6045
- }
6046
- ]
6047
- },
6048
- "type": "array"
6049
- },
6050
- {
6051
- "type": "string"
6052
- },
6053
- {
6054
- "type": "boolean"
6055
- }
6056
- ],
5189
+ "$ref": "#/definitions/PreviewEntry",
6057
5190
  "description": "Controls the main text shown per item.",
6058
5191
  "markdownDescription": "Controls the main text shown per item."
6059
5192
  }
@@ -6159,17 +5292,469 @@
6159
5292
  "markdownDescription": "The lowest value in the range of permitted values.",
6160
5293
  "type": "number"
6161
5294
  },
6162
- "step": {
6163
- "description": "A number that specifies the granularity that the value must adhere to, or the special value any, which allows any decimal value between `max` and `min`.",
6164
- "markdownDescription": "A number that specifies the granularity that the value must adhere to, or the special value\nany, which allows any decimal value between `max` and `min`.",
6165
- "type": "number"
5295
+ "step": {
5296
+ "description": "A number that specifies the granularity that the value must adhere to, or the special value any, which allows any decimal value between `max` and `min`.",
5297
+ "markdownDescription": "A number that specifies the granularity that the value must adhere to, or the special value\nany, which allows any decimal value between `max` and `min`.",
5298
+ "type": "number"
5299
+ }
5300
+ },
5301
+ "required": [
5302
+ "min",
5303
+ "max",
5304
+ "step"
5305
+ ],
5306
+ "type": "object"
5307
+ },
5308
+ "ReaderCollectionConfig": {
5309
+ "additionalProperties": false,
5310
+ "description": "The `collections_config` entry format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
5311
+ "markdownDescription": "The `collections_config` entry format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
5312
+ "properties": {
5313
+ "_array_structures": {
5314
+ "additionalProperties": {},
5315
+ "deprecated": "Use _structures instead.",
5316
+ "description": "Now known as _structures.",
5317
+ "markdownDescription": "Now known as _structures.",
5318
+ "type": "object"
5319
+ },
5320
+ "_comments": {
5321
+ "additionalProperties": {
5322
+ "type": "string"
5323
+ },
5324
+ "deprecated": "Use _inputs instead.",
5325
+ "description": "Now part of _inputs.*.comment.",
5326
+ "markdownDescription": "Now part of _inputs.*.comment.",
5327
+ "type": "object"
5328
+ },
5329
+ "_editables": {
5330
+ "$ref": "#/definitions/Editables",
5331
+ "description": "Contains input options for Editable Regions and the Content Editor.",
5332
+ "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
5333
+ },
5334
+ "_enabled_editors": {
5335
+ "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.",
5336
+ "items": {
5337
+ "$ref": "#/definitions/EditorKey"
5338
+ },
5339
+ "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.",
5340
+ "type": "array"
5341
+ },
5342
+ "_inputs": {
5343
+ "additionalProperties": {
5344
+ "$ref": "#/definitions/Input"
5345
+ },
5346
+ "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
5347
+ "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
5348
+ "type": "object"
5349
+ },
5350
+ "_options": {
5351
+ "additionalProperties": {
5352
+ "additionalProperties": {},
5353
+ "type": "object"
5354
+ },
5355
+ "deprecated": "Use _inputs instead.",
5356
+ "description": "Now part of _inputs.*.options.",
5357
+ "markdownDescription": "Now part of _inputs.*.options.",
5358
+ "type": "object"
5359
+ },
5360
+ "_select_data": {
5361
+ "additionalProperties": {
5362
+ "$ref": "#/definitions/SelectValues"
5363
+ },
5364
+ "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
5365
+ "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
5366
+ "type": "object"
5367
+ },
5368
+ "_structures": {
5369
+ "additionalProperties": {
5370
+ "$ref": "#/definitions/Structure"
5371
+ },
5372
+ "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.",
5373
+ "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.",
5374
+ "type": "object"
5375
+ },
5376
+ "add_options": {
5377
+ "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.",
5378
+ "items": {
5379
+ "$ref": "#/definitions/AddOption"
5380
+ },
5381
+ "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.",
5382
+ "type": "array"
5383
+ },
5384
+ "create": {
5385
+ "$ref": "#/definitions/Create",
5386
+ "description": "The create path definition to control where new files are saved to inside this collection. Defaults to [relative_base_path]/{title|slugify}.md.",
5387
+ "markdownDescription": "The create path definition to control where new files are saved to inside this collection.\nDefaults to [relative_base_path]/{title|slugify}.md."
5388
+ },
5389
+ "description": {
5390
+ "description": "Text or Markdown to show above the collection file list.",
5391
+ "markdownDescription": "Text or Markdown to show above the collection file list.",
5392
+ "type": "string"
5393
+ },
5394
+ "disable_add": {
5395
+ "description": "Prevents users from adding new files in the collection file list if true.",
5396
+ "markdownDescription": "Prevents users from adding new files in the collection file list if true.",
5397
+ "type": "boolean"
5398
+ },
5399
+ "disable_add_folder": {
5400
+ "description": "Prevents users from adding new folders in the collection file list if true.",
5401
+ "markdownDescription": "Prevents users from adding new folders in the collection file list if true.",
5402
+ "type": "boolean"
5403
+ },
5404
+ "disable_file_actions": {
5405
+ "description": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
5406
+ "markdownDescription": "Prevents users from renaming, moving and deleting files in the collection file list if true.",
5407
+ "type": "boolean"
5408
+ },
5409
+ "documentation": {
5410
+ "$ref": "#/definitions/Documentation",
5411
+ "description": "Provides a custom link for documentation for editors shown above the collection file list.",
5412
+ "markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
5413
+ },
5414
+ "filter": {
5415
+ "anyOf": [
5416
+ {
5417
+ "$ref": "#/definitions/Filter"
5418
+ },
5419
+ {
5420
+ "$ref": "#/definitions/FilterBase"
5421
+ }
5422
+ ],
5423
+ "description": "Controls which files are displayed in the collection list. Does not change which files are assigned to this collection.",
5424
+ "markdownDescription": "Controls which files are displayed in the collection list. Does not change which files are\nassigned to this collection."
5425
+ },
5426
+ "glob": {
5427
+ "anyOf": [
5428
+ {
5429
+ "items": {
5430
+ "type": "string"
5431
+ },
5432
+ "type": "array"
5433
+ },
5434
+ {
5435
+ "type": "string"
5436
+ }
5437
+ ],
5438
+ "description": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`.",
5439
+ "markdownDescription": "Glob pattern(s) to include or exclude files from this collection. It is relative to `path`."
5440
+ },
5441
+ "icon": {
5442
+ "$ref": "#/definitions/Icon",
5443
+ "description": "Sets an icon to use alongside references to this collection.",
5444
+ "markdownDescription": "Sets an icon to use alongside references to this collection."
5445
+ },
5446
+ "name": {
5447
+ "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.",
5448
+ "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.",
5449
+ "type": "string"
5450
+ },
5451
+ "new_preview_url": {
5452
+ "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.",
5453
+ "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.",
5454
+ "type": "string"
5455
+ },
5456
+ "output": {
5457
+ "description": "Whether or not files in this collection produce files in the build output.",
5458
+ "markdownDescription": "Whether or not files in this collection produce files in the build output.",
5459
+ "type": "boolean"
5460
+ },
5461
+ "parser": {
5462
+ "description": "Overrides the format files are read. Detected automatically from file extension if unset.",
5463
+ "enum": [
5464
+ "csv",
5465
+ "front-matter",
5466
+ "json",
5467
+ "properties",
5468
+ "toml",
5469
+ "yaml"
5470
+ ],
5471
+ "markdownDescription": "Overrides the format files are read. Detected automatically from file extension if unset.",
5472
+ "type": "string"
5473
+ },
5474
+ "path": {
5475
+ "description": "The top-most folder where the files in this collection are stored. It is relative to source.",
5476
+ "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.",
5477
+ "type": "string"
5478
+ },
5479
+ "preview": {
5480
+ "$ref": "#/definitions/Preview",
5481
+ "description": "Changes the way items are previewed in the CMS.",
5482
+ "markdownDescription": "Changes the way items are previewed in the CMS."
5483
+ },
5484
+ "schema_key": {
5485
+ "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.",
5486
+ "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.",
5487
+ "type": "string"
5488
+ },
5489
+ "schemas": {
5490
+ "additionalProperties": {
5491
+ "$ref": "#/definitions/Schema"
5492
+ },
5493
+ "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.",
5494
+ "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.",
5495
+ "type": "object"
5496
+ },
5497
+ "singular_key": {
5498
+ "description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
5499
+ "markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
5500
+ "type": "string"
5501
+ },
5502
+ "singular_name": {
5503
+ "description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
5504
+ "markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
5505
+ "type": "string"
5506
+ },
5507
+ "sort": {
5508
+ "$ref": "#/definitions/Sort",
5509
+ "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.",
5510
+ "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."
5511
+ },
5512
+ "sort_options": {
5513
+ "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.",
5514
+ "items": {
5515
+ "$ref": "#/definitions/SortOption"
5516
+ },
5517
+ "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.",
5518
+ "type": "array"
5519
+ },
5520
+ "url": {
5521
+ "description": "Used to build the url field for items in the collection. Similar to permalink in many SSGs. Defaults to ''",
5522
+ "markdownDescription": "Used to build the url field for items in the collection. Similar to permalink in many SSGs.\nDefaults to ''",
5523
+ "type": "string"
5524
+ }
5525
+ },
5526
+ "type": "object"
5527
+ },
5528
+ "ReaderConfiguration": {
5529
+ "additionalProperties": false,
5530
+ "description": "The configuration format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
5531
+ "markdownDescription": "The configuration format for build-coupled non-Jekyll/Hugo/Eleventy sites.",
5532
+ "properties": {
5533
+ "_array_structures": {
5534
+ "additionalProperties": {},
5535
+ "deprecated": "Use _structures instead.",
5536
+ "description": "Now known as _structures.",
5537
+ "markdownDescription": "Now known as _structures.",
5538
+ "type": "object"
5539
+ },
5540
+ "_comments": {
5541
+ "additionalProperties": {
5542
+ "type": "string"
5543
+ },
5544
+ "deprecated": "Use _inputs instead.",
5545
+ "description": "Now part of _inputs.*.comment.",
5546
+ "markdownDescription": "Now part of _inputs.*.comment.",
5547
+ "type": "object"
5548
+ },
5549
+ "_editables": {
5550
+ "$ref": "#/definitions/Editables",
5551
+ "description": "Contains input options for Editable Regions and the Content Editor.",
5552
+ "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
5553
+ },
5554
+ "_enabled_editors": {
5555
+ "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.",
5556
+ "items": {
5557
+ "$ref": "#/definitions/EditorKey"
5558
+ },
5559
+ "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.",
5560
+ "type": "array"
5561
+ },
5562
+ "_inputs": {
5563
+ "additionalProperties": {
5564
+ "$ref": "#/definitions/Input"
5565
+ },
5566
+ "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
5567
+ "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
5568
+ "type": "object"
5569
+ },
5570
+ "_options": {
5571
+ "additionalProperties": {
5572
+ "additionalProperties": {},
5573
+ "type": "object"
5574
+ },
5575
+ "deprecated": "Use _inputs instead.",
5576
+ "description": "Now part of _inputs.*.options.",
5577
+ "markdownDescription": "Now part of _inputs.*.options.",
5578
+ "type": "object"
5579
+ },
5580
+ "_select_data": {
5581
+ "additionalProperties": {
5582
+ "$ref": "#/definitions/SelectValues"
5583
+ },
5584
+ "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
5585
+ "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
5586
+ "type": "object"
5587
+ },
5588
+ "_snippets": {
5589
+ "additionalProperties": {
5590
+ "$ref": "#/definitions/SnippetConfig"
5591
+ },
5592
+ "description": "Configuration for custom snippets.",
5593
+ "markdownDescription": "Configuration for custom snippets.",
5594
+ "type": "object"
5595
+ },
5596
+ "_snippets_definitions": {
5597
+ "additionalProperties": {
5598
+ "$ref": "#/definitions/SnippetConfig"
5599
+ },
5600
+ "description": "Extended option used when creating more complex custom snippets.",
5601
+ "markdownDescription": "Extended option used when creating more complex custom snippets.",
5602
+ "type": "object"
5603
+ },
5604
+ "_snippets_imports": {
5605
+ "$ref": "#/definitions/SnippetsImports",
5606
+ "description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
5607
+ "markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
5608
+ },
5609
+ "_snippets_templates": {
5610
+ "additionalProperties": {
5611
+ "$ref": "#/definitions/SnippetConfig"
5612
+ },
5613
+ "description": "Extended option used when creating more complex custom snippets.",
5614
+ "markdownDescription": "Extended option used when creating more complex custom snippets.",
5615
+ "type": "object"
5616
+ },
5617
+ "_structures": {
5618
+ "additionalProperties": {
5619
+ "$ref": "#/definitions/Structure"
5620
+ },
5621
+ "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.",
5622
+ "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.",
5623
+ "type": "object"
5624
+ },
5625
+ "base_url": {
5626
+ "description": "The subpath where your output files are hosted.",
5627
+ "markdownDescription": "The subpath where your output files are hosted.",
5628
+ "type": "string"
5629
+ },
5630
+ "collection_groups": {
5631
+ "description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
5632
+ "items": {
5633
+ "$ref": "#/definitions/CollectionGroup"
5634
+ },
5635
+ "markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
5636
+ "type": "array"
5637
+ },
5638
+ "collections_config": {
5639
+ "additionalProperties": {
5640
+ "$ref": "#/definitions/ReaderCollectionConfig"
5641
+ },
5642
+ "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.",
5643
+ "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.",
5644
+ "type": "object"
5645
+ },
5646
+ "commit_templates": {
5647
+ "description": "Templates for commit messages when saving changes.",
5648
+ "items": {
5649
+ "$ref": "#/definitions/CommitTemplate"
5650
+ },
5651
+ "markdownDescription": "Templates for commit messages when saving changes.",
5652
+ "type": "array"
5653
+ },
5654
+ "data_config": {
5655
+ "additionalProperties": {
5656
+ "$ref": "#/definitions/DataConfigEntry"
5657
+ },
5658
+ "description": "Controls what data sets are available to populate select and multiselect inputs.",
5659
+ "markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
5660
+ "type": "object"
5661
+ },
5662
+ "editor": {
5663
+ "$ref": "#/definitions/Editor",
5664
+ "description": "Contains settings for the default editor actions on your site.",
5665
+ "markdownDescription": "Contains settings for the default editor actions on your site."
5666
+ },
5667
+ "file_config": {
5668
+ "additionalProperties": {
5669
+ "$ref": "#/definitions/FileConfigEntry"
5670
+ },
5671
+ "description": "Provides scope to configure at a file level, without adding configuration to files.",
5672
+ "markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
5673
+ "type": "object"
5674
+ },
5675
+ "generator": {
5676
+ "additionalProperties": false,
5677
+ "description": "Contains settings for various Markdown engines.",
5678
+ "markdownDescription": "Contains settings for various Markdown engines.",
5679
+ "properties": {
5680
+ "metadata": {
5681
+ "additionalProperties": false,
5682
+ "description": "Settings for various Markdown engines.",
5683
+ "markdownDescription": "Settings for various Markdown engines.",
5684
+ "properties": {
5685
+ "commonmark": {
5686
+ "description": "Markdown options specific used when markdown is set to \"commonmark\".",
5687
+ "markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
5688
+ "type": "object"
5689
+ },
5690
+ "commonmarkghpages": {
5691
+ "description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
5692
+ "markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
5693
+ "type": "object"
5694
+ },
5695
+ "goldmark": {
5696
+ "description": "Markdown options specific used when markdown is set to \"goldmark\".",
5697
+ "markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
5698
+ "type": "object"
5699
+ },
5700
+ "kramdown": {
5701
+ "description": "Markdown options specific used when markdown is set to \"kramdown\".",
5702
+ "markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
5703
+ "type": "object"
5704
+ },
5705
+ "markdown": {
5706
+ "description": "The Markdown engine used on your site.",
5707
+ "enum": [
5708
+ "kramdown",
5709
+ "commonmark",
5710
+ "commonmarkghpages",
5711
+ "goldmark",
5712
+ "markdown-it"
5713
+ ],
5714
+ "markdownDescription": "The Markdown engine used on your site.",
5715
+ "type": "string"
5716
+ },
5717
+ "markdown-it": {
5718
+ "description": "Markdown options specific used when markdown is set to \"markdown-it\".",
5719
+ "markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
5720
+ "type": "object"
5721
+ }
5722
+ },
5723
+ "required": [
5724
+ "markdown"
5725
+ ],
5726
+ "type": "object"
5727
+ }
5728
+ },
5729
+ "type": "object"
5730
+ },
5731
+ "output": {
5732
+ "description": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy. Defaults to the root folder.",
5733
+ "markdownDescription": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy.\nDefaults to the root folder.",
5734
+ "type": "string"
5735
+ },
5736
+ "paths": {
5737
+ "$ref": "#/definitions/Paths",
5738
+ "description": "Global paths to common folders.",
5739
+ "markdownDescription": "Global paths to common folders."
5740
+ },
5741
+ "source": {
5742
+ "description": "Base path to your site source files, relative to the root folder.",
5743
+ "markdownDescription": "Base path to your site source files, relative to the root folder.",
5744
+ "type": "string"
5745
+ },
5746
+ "source_editor": {
5747
+ "$ref": "#/definitions/SourceEditor",
5748
+ "description": "Settings for the behavior and appearance of the Source Editor.",
5749
+ "markdownDescription": "Settings for the behavior and appearance of the Source Editor."
5750
+ },
5751
+ "timezone": {
5752
+ "$ref": "#/definitions/Timezone",
5753
+ "default": "Etc/UTC",
5754
+ "description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
5755
+ "markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
6166
5756
  }
6167
5757
  },
6168
- "required": [
6169
- "min",
6170
- "max",
6171
- "step"
6172
- ],
6173
5758
  "type": "object"
6174
5759
  },
6175
5760
  "ReducedPaths": {
@@ -6342,8 +5927,18 @@
6342
5927
  "type": "string"
6343
5928
  },
6344
5929
  "code": {
6345
- "description": "Enables a control to set selected text to inline code, and unselected blocks of text to code blocks.",
6346
- "markdownDescription": "Enables a control to set selected text to inline code, and unselected blocks of text to code\nblocks.",
5930
+ "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5931
+ "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5932
+ "type": "boolean"
5933
+ },
5934
+ "code_block": {
5935
+ "description": "Enables a control to insert a code block.",
5936
+ "markdownDescription": "Enables a control to insert a code block.",
5937
+ "type": "boolean"
5938
+ },
5939
+ "code_inline": {
5940
+ "description": "Enables a control to create an inline code element, containing any selected text.",
5941
+ "markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
6347
5942
  "type": "boolean"
6348
5943
  },
6349
5944
  "copyformatting": {
@@ -6568,16 +6163,18 @@
6568
6163
  "properties": {
6569
6164
  "_array_structures": {
6570
6165
  "additionalProperties": {},
6571
- "description": "[DEPRECATED] Now known as _structures.",
6572
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
6166
+ "deprecated": "Use _structures instead.",
6167
+ "description": "Now known as _structures.",
6168
+ "markdownDescription": "Now known as _structures.",
6573
6169
  "type": "object"
6574
6170
  },
6575
6171
  "_comments": {
6576
6172
  "additionalProperties": {
6577
6173
  "type": "string"
6578
6174
  },
6579
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
6580
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
6175
+ "deprecated": "Use _inputs instead.",
6176
+ "description": "Now part of _inputs.*.comment.",
6177
+ "markdownDescription": "Now part of _inputs.*.comment.",
6581
6178
  "type": "object"
6582
6179
  },
6583
6180
  "_editables": {
@@ -6606,8 +6203,9 @@
6606
6203
  "additionalProperties": {},
6607
6204
  "type": "object"
6608
6205
  },
6609
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
6610
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
6206
+ "deprecated": "Use _inputs instead.",
6207
+ "description": "Now part of _inputs.*.options.",
6208
+ "markdownDescription": "Now part of _inputs.*.options.",
6611
6209
  "type": "object"
6612
6210
  },
6613
6211
  "_select_data": {
@@ -6805,80 +6403,12 @@
6805
6403
  "additionalProperties": false,
6806
6404
  "properties": {
6807
6405
  "icon": {
6808
- "anyOf": [
6809
- {
6810
- "items": {
6811
- "anyOf": [
6812
- {
6813
- "additionalProperties": false,
6814
- "properties": {
6815
- "key": {
6816
- "description": "The key used to access the value used for the preview.",
6817
- "markdownDescription": "The key used to access the value used for the preview.",
6818
- "type": "string"
6819
- }
6820
- },
6821
- "required": [
6822
- "key"
6823
- ],
6824
- "type": "object"
6825
- },
6826
- {
6827
- "type": "string"
6828
- },
6829
- {
6830
- "type": "boolean"
6831
- }
6832
- ]
6833
- },
6834
- "type": "array"
6835
- },
6836
- {
6837
- "type": "string"
6838
- },
6839
- {
6840
- "type": "boolean"
6841
- }
6842
- ],
6406
+ "$ref": "#/definitions/PreviewEntry",
6843
6407
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
6844
6408
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
6845
6409
  },
6846
6410
  "text": {
6847
- "anyOf": [
6848
- {
6849
- "items": {
6850
- "anyOf": [
6851
- {
6852
- "additionalProperties": false,
6853
- "properties": {
6854
- "key": {
6855
- "description": "The key used to access the value used for the preview.",
6856
- "markdownDescription": "The key used to access the value used for the preview.",
6857
- "type": "string"
6858
- }
6859
- },
6860
- "required": [
6861
- "key"
6862
- ],
6863
- "type": "object"
6864
- },
6865
- {
6866
- "type": "string"
6867
- },
6868
- {
6869
- "type": "boolean"
6870
- }
6871
- ]
6872
- },
6873
- "type": "array"
6874
- },
6875
- {
6876
- "type": "string"
6877
- },
6878
- {
6879
- "type": "boolean"
6880
- }
6881
- ],
6411
+ "$ref": "#/definitions/PreviewEntry",
6882
6412
  "description": "Controls the main text shown per item.",
6883
6413
  "markdownDescription": "Controls the main text shown per item."
6884
6414
  }
@@ -6988,6 +6518,354 @@
6988
6518
  },
6989
6519
  "type": "object"
6990
6520
  },
6521
+ "SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
6522
+ "additionalProperties": false,
6523
+ "properties": {
6524
+ "exclude": {
6525
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6526
+ "items": {
6527
+ "enum": [
6528
+ "_cc_jekyll_unknown_paired_tag",
6529
+ "_cc_jekyll_unknown_tag",
6530
+ "jekyll_highlight",
6531
+ "_cc_jekyll_template",
6532
+ "jekyll_raw",
6533
+ "jekyll_link",
6534
+ "jekyll_post_url"
6535
+ ],
6536
+ "type": "string"
6537
+ },
6538
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6539
+ "type": "array"
6540
+ },
6541
+ "include": {
6542
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6543
+ "items": {
6544
+ "enum": [
6545
+ "_cc_jekyll_unknown_paired_tag",
6546
+ "_cc_jekyll_unknown_tag",
6547
+ "jekyll_highlight",
6548
+ "_cc_jekyll_template",
6549
+ "jekyll_raw",
6550
+ "jekyll_link",
6551
+ "jekyll_post_url"
6552
+ ],
6553
+ "type": "string"
6554
+ },
6555
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6556
+ "type": "array"
6557
+ }
6558
+ },
6559
+ "type": "object"
6560
+ },
6561
+ "SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
6562
+ "additionalProperties": false,
6563
+ "properties": {
6564
+ "exclude": {
6565
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6566
+ "items": {
6567
+ "enum": [
6568
+ "docusaurus_mdx_admonition",
6569
+ "docusaurus_mdx_tabs",
6570
+ "docusaurus_mdx_truncate",
6571
+ "docusaurus_mdx_codeblock"
6572
+ ],
6573
+ "type": "string"
6574
+ },
6575
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6576
+ "type": "array"
6577
+ },
6578
+ "include": {
6579
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6580
+ "items": {
6581
+ "enum": [
6582
+ "docusaurus_mdx_admonition",
6583
+ "docusaurus_mdx_tabs",
6584
+ "docusaurus_mdx_truncate",
6585
+ "docusaurus_mdx_codeblock"
6586
+ ],
6587
+ "type": "string"
6588
+ },
6589
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6590
+ "type": "array"
6591
+ }
6592
+ },
6593
+ "type": "object"
6594
+ },
6595
+ "SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
6596
+ "additionalProperties": false,
6597
+ "properties": {
6598
+ "exclude": {
6599
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6600
+ "items": {
6601
+ "enum": [
6602
+ "eleventy_liquid_raw",
6603
+ "_cc_eleventy_liquid_unknown_paired_shortcode",
6604
+ "_cc_eleventy_liquid_unknown_shortcode",
6605
+ "_cc_eleventy_liquid_template"
6606
+ ],
6607
+ "type": "string"
6608
+ },
6609
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6610
+ "type": "array"
6611
+ },
6612
+ "include": {
6613
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6614
+ "items": {
6615
+ "enum": [
6616
+ "eleventy_liquid_raw",
6617
+ "_cc_eleventy_liquid_unknown_paired_shortcode",
6618
+ "_cc_eleventy_liquid_unknown_shortcode",
6619
+ "_cc_eleventy_liquid_template"
6620
+ ],
6621
+ "type": "string"
6622
+ },
6623
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6624
+ "type": "array"
6625
+ }
6626
+ },
6627
+ "type": "object"
6628
+ },
6629
+ "SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
6630
+ "additionalProperties": false,
6631
+ "properties": {
6632
+ "exclude": {
6633
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6634
+ "items": {
6635
+ "enum": [
6636
+ "eleventy_nunjucks_raw",
6637
+ "eleventy_nunjucks_verbatim",
6638
+ "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6639
+ "_cc_eleventy_nunjucks_unknown_shortcode",
6640
+ "_cc_eleventy_nunjucks_template"
6641
+ ],
6642
+ "type": "string"
6643
+ },
6644
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6645
+ "type": "array"
6646
+ },
6647
+ "include": {
6648
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6649
+ "items": {
6650
+ "enum": [
6651
+ "eleventy_nunjucks_raw",
6652
+ "eleventy_nunjucks_verbatim",
6653
+ "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6654
+ "_cc_eleventy_nunjucks_unknown_shortcode",
6655
+ "_cc_eleventy_nunjucks_template"
6656
+ ],
6657
+ "type": "string"
6658
+ },
6659
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6660
+ "type": "array"
6661
+ }
6662
+ },
6663
+ "type": "object"
6664
+ },
6665
+ "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\")>": {
6666
+ "additionalProperties": false,
6667
+ "properties": {
6668
+ "exclude": {
6669
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6670
+ "items": {
6671
+ "enum": [
6672
+ "hugo_summary_divider",
6673
+ "hugo_highlight",
6674
+ "hugo_figure",
6675
+ "hugo_gist",
6676
+ "hugo_instagram",
6677
+ "hugo_param",
6678
+ "hugo_ref",
6679
+ "hugo_relref",
6680
+ "hugo_tweet",
6681
+ "hugo_vimeo",
6682
+ "hugo_youtube",
6683
+ "_cc_hugo_unknown_paired",
6684
+ "_cc_hugo_unknown",
6685
+ "_cc_hugo_unknown_paired_processed",
6686
+ "_cc_hugo_unknown_processed"
6687
+ ],
6688
+ "type": "string"
6689
+ },
6690
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6691
+ "type": "array"
6692
+ },
6693
+ "include": {
6694
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6695
+ "items": {
6696
+ "enum": [
6697
+ "hugo_summary_divider",
6698
+ "hugo_highlight",
6699
+ "hugo_figure",
6700
+ "hugo_gist",
6701
+ "hugo_instagram",
6702
+ "hugo_param",
6703
+ "hugo_ref",
6704
+ "hugo_relref",
6705
+ "hugo_tweet",
6706
+ "hugo_vimeo",
6707
+ "hugo_youtube",
6708
+ "_cc_hugo_unknown_paired",
6709
+ "_cc_hugo_unknown",
6710
+ "_cc_hugo_unknown_paired_processed",
6711
+ "_cc_hugo_unknown_processed"
6712
+ ],
6713
+ "type": "string"
6714
+ },
6715
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6716
+ "type": "array"
6717
+ }
6718
+ },
6719
+ "type": "object"
6720
+ },
6721
+ "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\")>": {
6722
+ "additionalProperties": false,
6723
+ "properties": {
6724
+ "exclude": {
6725
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6726
+ "items": {
6727
+ "enum": [
6728
+ "import",
6729
+ "_cc_mdx_unknown_export",
6730
+ "_cc_mdx_unknown_export_expression",
6731
+ "_cc_mdx_unknown_export_default",
6732
+ "_cc_mdx_unknown_template",
6733
+ "_cc_mdx_paired_unknown",
6734
+ "_cc_mdx_unknown"
6735
+ ],
6736
+ "type": "string"
6737
+ },
6738
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6739
+ "type": "array"
6740
+ },
6741
+ "include": {
6742
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6743
+ "items": {
6744
+ "enum": [
6745
+ "import",
6746
+ "_cc_mdx_unknown_export",
6747
+ "_cc_mdx_unknown_export_expression",
6748
+ "_cc_mdx_unknown_export_default",
6749
+ "_cc_mdx_unknown_template",
6750
+ "_cc_mdx_paired_unknown",
6751
+ "_cc_mdx_unknown"
6752
+ ],
6753
+ "type": "string"
6754
+ },
6755
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6756
+ "type": "array"
6757
+ }
6758
+ },
6759
+ "type": "object"
6760
+ },
6761
+ "SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
6762
+ "additionalProperties": false,
6763
+ "properties": {
6764
+ "exclude": {
6765
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6766
+ "items": {
6767
+ "enum": [
6768
+ "markdoc_id_annotation",
6769
+ "markdoc_class_annotation",
6770
+ "markdoc_table",
6771
+ "_cc_markdoc_unknown_tag",
6772
+ "_cc_markdoc_unknown_paired_tag",
6773
+ "_cc_markdoc_unknown_template"
6774
+ ],
6775
+ "type": "string"
6776
+ },
6777
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6778
+ "type": "array"
6779
+ },
6780
+ "include": {
6781
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6782
+ "items": {
6783
+ "enum": [
6784
+ "markdoc_id_annotation",
6785
+ "markdoc_class_annotation",
6786
+ "markdoc_table",
6787
+ "_cc_markdoc_unknown_tag",
6788
+ "_cc_markdoc_unknown_paired_tag",
6789
+ "_cc_markdoc_unknown_template"
6790
+ ],
6791
+ "type": "string"
6792
+ },
6793
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6794
+ "type": "array"
6795
+ }
6796
+ },
6797
+ "type": "object"
6798
+ },
6799
+ "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\")>": {
6800
+ "additionalProperties": false,
6801
+ "properties": {
6802
+ "exclude": {
6803
+ "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6804
+ "items": {
6805
+ "enum": [
6806
+ "python_markdown_abbreviation",
6807
+ "python_markdown_admonition",
6808
+ "python_markdown_arithmatex",
6809
+ "python_markdown_attribute_list",
6810
+ "python_markdown_code_block",
6811
+ "python_markdown_collapsible_admonition",
6812
+ "python_markdown_tabs",
6813
+ "python_markdown_footnote",
6814
+ "python_markdown_footnote_marker",
6815
+ "python_markdown_icon",
6816
+ "python_markdown_image",
6817
+ "python_markdown_inline_arithmatex",
6818
+ "python_markdown_inline_code",
6819
+ "python_markdown_link",
6820
+ "python_markdown_reference_image",
6821
+ "python_markdown_reference_template_image",
6822
+ "python_markdown_reference_link",
6823
+ "python_markdown_reference",
6824
+ "python_markdown_reference_template",
6825
+ "python_markdown_block_snippet",
6826
+ "_cc_python_markdown_unknown_snippet",
6827
+ "_cc_python_markdown_unknown_markdown_in_html"
6828
+ ],
6829
+ "type": "string"
6830
+ },
6831
+ "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6832
+ "type": "array"
6833
+ },
6834
+ "include": {
6835
+ "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6836
+ "items": {
6837
+ "enum": [
6838
+ "python_markdown_abbreviation",
6839
+ "python_markdown_admonition",
6840
+ "python_markdown_arithmatex",
6841
+ "python_markdown_attribute_list",
6842
+ "python_markdown_code_block",
6843
+ "python_markdown_collapsible_admonition",
6844
+ "python_markdown_tabs",
6845
+ "python_markdown_footnote",
6846
+ "python_markdown_footnote_marker",
6847
+ "python_markdown_icon",
6848
+ "python_markdown_image",
6849
+ "python_markdown_inline_arithmatex",
6850
+ "python_markdown_inline_code",
6851
+ "python_markdown_link",
6852
+ "python_markdown_reference_image",
6853
+ "python_markdown_reference_template_image",
6854
+ "python_markdown_reference_link",
6855
+ "python_markdown_reference",
6856
+ "python_markdown_reference_template",
6857
+ "python_markdown_block_snippet",
6858
+ "_cc_python_markdown_unknown_snippet",
6859
+ "_cc_python_markdown_unknown_markdown_in_html"
6860
+ ],
6861
+ "type": "string"
6862
+ },
6863
+ "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6864
+ "type": "array"
6865
+ }
6866
+ },
6867
+ "type": "object"
6868
+ },
6991
6869
  "SnippetsImports": {
6992
6870
  "additionalProperties": false,
6993
6871
  "properties": {
@@ -6997,38 +6875,7 @@
6997
6875
  "type": "boolean"
6998
6876
  },
6999
6877
  {
7000
- "additionalProperties": false,
7001
- "properties": {
7002
- "exclude": {
7003
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7004
- "items": {
7005
- "enum": [
7006
- "docusaurus_mdx_admonition",
7007
- "docusaurus_mdx_tabs",
7008
- "docusaurus_mdx_truncate",
7009
- "docusaurus_mdx_codeblock"
7010
- ],
7011
- "type": "string"
7012
- },
7013
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7014
- "type": "array"
7015
- },
7016
- "include": {
7017
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7018
- "items": {
7019
- "enum": [
7020
- "docusaurus_mdx_admonition",
7021
- "docusaurus_mdx_tabs",
7022
- "docusaurus_mdx_truncate",
7023
- "docusaurus_mdx_codeblock"
7024
- ],
7025
- "type": "string"
7026
- },
7027
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7028
- "type": "array"
7029
- }
7030
- },
7031
- "type": "object"
6878
+ "$ref": "#/definitions/SnippetsImport%3C(%22docusaurus_mdx_admonition%22%7C%22docusaurus_mdx_tabs%22%7C%22docusaurus_mdx_truncate%22%7C%22docusaurus_mdx_codeblock%22)%3E"
7032
6879
  }
7033
6880
  ],
7034
6881
  "description": "Default snippets for Docusaurus SSG.",
@@ -7040,38 +6887,7 @@
7040
6887
  "type": "boolean"
7041
6888
  },
7042
6889
  {
7043
- "additionalProperties": false,
7044
- "properties": {
7045
- "exclude": {
7046
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7047
- "items": {
7048
- "enum": [
7049
- "eleventy_liquid_raw",
7050
- "_cc_eleventy_liquid_unknown_paired_shortcode",
7051
- "_cc_eleventy_liquid_unknown_shortcode",
7052
- "_cc_eleventy_liquid_template"
7053
- ],
7054
- "type": "string"
7055
- },
7056
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7057
- "type": "array"
7058
- },
7059
- "include": {
7060
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7061
- "items": {
7062
- "enum": [
7063
- "eleventy_liquid_raw",
7064
- "_cc_eleventy_liquid_unknown_paired_shortcode",
7065
- "_cc_eleventy_liquid_unknown_shortcode",
7066
- "_cc_eleventy_liquid_template"
7067
- ],
7068
- "type": "string"
7069
- },
7070
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7071
- "type": "array"
7072
- }
7073
- },
7074
- "type": "object"
6890
+ "$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"
7075
6891
  }
7076
6892
  ],
7077
6893
  "description": "Default snippets for Eleventy SSG Liquid files.",
@@ -7083,40 +6899,7 @@
7083
6899
  "type": "boolean"
7084
6900
  },
7085
6901
  {
7086
- "additionalProperties": false,
7087
- "properties": {
7088
- "exclude": {
7089
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7090
- "items": {
7091
- "enum": [
7092
- "eleventy_nunjucks_raw",
7093
- "eleventy_nunjucks_verbatim",
7094
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
7095
- "_cc_eleventy_nunjucks_unknown_shortcode",
7096
- "_cc_eleventy_nunjucks_template"
7097
- ],
7098
- "type": "string"
7099
- },
7100
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7101
- "type": "array"
7102
- },
7103
- "include": {
7104
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7105
- "items": {
7106
- "enum": [
7107
- "eleventy_nunjucks_raw",
7108
- "eleventy_nunjucks_verbatim",
7109
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
7110
- "_cc_eleventy_nunjucks_unknown_shortcode",
7111
- "_cc_eleventy_nunjucks_template"
7112
- ],
7113
- "type": "string"
7114
- },
7115
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7116
- "type": "array"
7117
- }
7118
- },
7119
- "type": "object"
6902
+ "$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"
7120
6903
  }
7121
6904
  ],
7122
6905
  "description": "Default snippets for Eleventy SSG Nunjucks files.",
@@ -7128,60 +6911,7 @@
7128
6911
  "type": "boolean"
7129
6912
  },
7130
6913
  {
7131
- "additionalProperties": false,
7132
- "properties": {
7133
- "exclude": {
7134
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7135
- "items": {
7136
- "enum": [
7137
- "hugo_summary_divider",
7138
- "hugo_highlight",
7139
- "hugo_figure",
7140
- "hugo_gist",
7141
- "hugo_instagram",
7142
- "hugo_param",
7143
- "hugo_ref",
7144
- "hugo_relref",
7145
- "hugo_tweet",
7146
- "hugo_vimeo",
7147
- "hugo_youtube",
7148
- "_cc_hugo_unknown_paired",
7149
- "_cc_hugo_unknown",
7150
- "_cc_hugo_unknown_paired_processed",
7151
- "_cc_hugo_unknown_processed"
7152
- ],
7153
- "type": "string"
7154
- },
7155
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7156
- "type": "array"
7157
- },
7158
- "include": {
7159
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7160
- "items": {
7161
- "enum": [
7162
- "hugo_summary_divider",
7163
- "hugo_highlight",
7164
- "hugo_figure",
7165
- "hugo_gist",
7166
- "hugo_instagram",
7167
- "hugo_param",
7168
- "hugo_ref",
7169
- "hugo_relref",
7170
- "hugo_tweet",
7171
- "hugo_vimeo",
7172
- "hugo_youtube",
7173
- "_cc_hugo_unknown_paired",
7174
- "_cc_hugo_unknown",
7175
- "_cc_hugo_unknown_paired_processed",
7176
- "_cc_hugo_unknown_processed"
7177
- ],
7178
- "type": "string"
7179
- },
7180
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7181
- "type": "array"
7182
- }
7183
- },
7184
- "type": "object"
6914
+ "$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"
7185
6915
  }
7186
6916
  ],
7187
6917
  "description": "Default snippets for Hugo SSG.",
@@ -7193,44 +6923,7 @@
7193
6923
  "type": "boolean"
7194
6924
  },
7195
6925
  {
7196
- "additionalProperties": false,
7197
- "properties": {
7198
- "exclude": {
7199
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7200
- "items": {
7201
- "enum": [
7202
- "_cc_jekyll_unknown_paired_tag",
7203
- "_cc_jekyll_unknown_tag",
7204
- "jekyll_highlight",
7205
- "_cc_jekyll_template",
7206
- "jekyll_raw",
7207
- "jekyll_link",
7208
- "jekyll_post_url"
7209
- ],
7210
- "type": "string"
7211
- },
7212
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7213
- "type": "array"
7214
- },
7215
- "include": {
7216
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7217
- "items": {
7218
- "enum": [
7219
- "_cc_jekyll_unknown_paired_tag",
7220
- "_cc_jekyll_unknown_tag",
7221
- "jekyll_highlight",
7222
- "_cc_jekyll_template",
7223
- "jekyll_raw",
7224
- "jekyll_link",
7225
- "jekyll_post_url"
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"
6926
+ "$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"
7234
6927
  }
7235
6928
  ],
7236
6929
  "description": "Default snippets for Jekyll SSG.",
@@ -7242,42 +6935,7 @@
7242
6935
  "type": "boolean"
7243
6936
  },
7244
6937
  {
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
- "markdoc_id_annotation",
7252
- "markdoc_class_annotation",
7253
- "markdoc_table",
7254
- "_cc_markdoc_unknown_tag",
7255
- "_cc_markdoc_unknown_paired_tag",
7256
- "_cc_markdoc_unknown_template"
7257
- ],
7258
- "type": "string"
7259
- },
7260
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7261
- "type": "array"
7262
- },
7263
- "include": {
7264
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7265
- "items": {
7266
- "enum": [
7267
- "markdoc_id_annotation",
7268
- "markdoc_class_annotation",
7269
- "markdoc_table",
7270
- "_cc_markdoc_unknown_tag",
7271
- "_cc_markdoc_unknown_paired_tag",
7272
- "_cc_markdoc_unknown_template"
7273
- ],
7274
- "type": "string"
7275
- },
7276
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7277
- "type": "array"
7278
- }
7279
- },
7280
- "type": "object"
6938
+ "$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"
7281
6939
  }
7282
6940
  ],
7283
6941
  "description": "Default snippets for Markdoc-based content.",
@@ -7289,44 +6947,7 @@
7289
6947
  "type": "boolean"
7290
6948
  },
7291
6949
  {
7292
- "additionalProperties": false,
7293
- "properties": {
7294
- "exclude": {
7295
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7296
- "items": {
7297
- "enum": [
7298
- "import",
7299
- "_cc_mdx_unknown_export",
7300
- "_cc_mdx_unknown_export_expression",
7301
- "_cc_mdx_unknown_export_default",
7302
- "_cc_mdx_unknown_template",
7303
- "_cc_mdx_paired_unknown",
7304
- "_cc_mdx_unknown"
7305
- ],
7306
- "type": "string"
7307
- },
7308
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7309
- "type": "array"
7310
- },
7311
- "include": {
7312
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7313
- "items": {
7314
- "enum": [
7315
- "import",
7316
- "_cc_mdx_unknown_export",
7317
- "_cc_mdx_unknown_export_expression",
7318
- "_cc_mdx_unknown_export_default",
7319
- "_cc_mdx_unknown_template",
7320
- "_cc_mdx_paired_unknown",
7321
- "_cc_mdx_unknown"
7322
- ],
7323
- "type": "string"
7324
- },
7325
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7326
- "type": "array"
7327
- }
7328
- },
7329
- "type": "object"
6950
+ "$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"
7330
6951
  }
7331
6952
  ],
7332
6953
  "description": "Default snippets for MDX-based content.",
@@ -7338,74 +6959,7 @@
7338
6959
  "type": "boolean"
7339
6960
  },
7340
6961
  {
7341
- "additionalProperties": false,
7342
- "properties": {
7343
- "exclude": {
7344
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7345
- "items": {
7346
- "enum": [
7347
- "python_markdown_abbreviation",
7348
- "python_markdown_admonition",
7349
- "python_markdown_arithmatex",
7350
- "python_markdown_attribute_list",
7351
- "python_markdown_code_block",
7352
- "python_markdown_collapsible_admonition",
7353
- "python_markdown_tabs",
7354
- "python_markdown_footnote",
7355
- "python_markdown_footnote_marker",
7356
- "python_markdown_icon",
7357
- "python_markdown_image",
7358
- "python_markdown_inline_arithmatex",
7359
- "python_markdown_inline_code",
7360
- "python_markdown_link",
7361
- "python_markdown_reference_image",
7362
- "python_markdown_reference_template_image",
7363
- "python_markdown_reference_link",
7364
- "python_markdown_reference",
7365
- "python_markdown_reference_template",
7366
- "python_markdown_block_snippet",
7367
- "_cc_python_markdown_unknown_snippet",
7368
- "_cc_python_markdown_unknown_markdown_in_html"
7369
- ],
7370
- "type": "string"
7371
- },
7372
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7373
- "type": "array"
7374
- },
7375
- "include": {
7376
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7377
- "items": {
7378
- "enum": [
7379
- "python_markdown_abbreviation",
7380
- "python_markdown_admonition",
7381
- "python_markdown_arithmatex",
7382
- "python_markdown_attribute_list",
7383
- "python_markdown_code_block",
7384
- "python_markdown_collapsible_admonition",
7385
- "python_markdown_tabs",
7386
- "python_markdown_footnote",
7387
- "python_markdown_footnote_marker",
7388
- "python_markdown_icon",
7389
- "python_markdown_image",
7390
- "python_markdown_inline_arithmatex",
7391
- "python_markdown_inline_code",
7392
- "python_markdown_link",
7393
- "python_markdown_reference_image",
7394
- "python_markdown_reference_template_image",
7395
- "python_markdown_reference_link",
7396
- "python_markdown_reference",
7397
- "python_markdown_reference_template",
7398
- "python_markdown_block_snippet",
7399
- "_cc_python_markdown_unknown_snippet",
7400
- "_cc_python_markdown_unknown_markdown_in_html"
7401
- ],
7402
- "type": "string"
7403
- },
7404
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7405
- "type": "array"
7406
- }
7407
- },
7408
- "type": "object"
6962
+ "$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"
7409
6963
  }
7410
6964
  ],
7411
6965
  "description": "Default snippets for content using Python markdown extensions.",
@@ -7484,37 +7038,14 @@
7484
7038
  "type": "number"
7485
7039
  },
7486
7040
  "theme": {
7041
+ "$ref": "#/definitions/Theme",
7487
7042
  "default": "monokai",
7488
7043
  "description": "Changes the color scheme for syntax highlighting in the editor.",
7489
- "markdownDescription": "Changes the color scheme for syntax highlighting in the editor.",
7490
- "type": "string"
7044
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
7491
7045
  }
7492
7046
  },
7493
7047
  "type": "object"
7494
7048
  },
7495
- "SsgKey": {
7496
- "enum": [
7497
- "hugo",
7498
- "jekyll",
7499
- "eleventy",
7500
- "astro",
7501
- "lume",
7502
- "mkdocs",
7503
- "nextjs",
7504
- "sveltekit",
7505
- "bridgetown",
7506
- "docusaurus",
7507
- "gatsby",
7508
- "hexo",
7509
- "nuxtjs",
7510
- "sphinx",
7511
- "static",
7512
- "other",
7513
- "legacy",
7514
- "unknown"
7515
- ],
7516
- "type": "string"
7517
- },
7518
7049
  "Structure": {
7519
7050
  "additionalProperties": false,
7520
7051
  "properties": {
@@ -8008,6 +7539,49 @@
8008
7539
  },
8009
7540
  "type": "object"
8010
7541
  },
7542
+ "Theme": {
7543
+ "enum": [
7544
+ "ambiance",
7545
+ "chaos",
7546
+ "chrome",
7547
+ "clouds",
7548
+ "clouds_midnight",
7549
+ "cobalt",
7550
+ "crimson_editor",
7551
+ "dawn",
7552
+ "dracula",
7553
+ "dreamweaver",
7554
+ "eclipse",
7555
+ "github",
7556
+ "gob",
7557
+ "gruvbox",
7558
+ "idle_fingers",
7559
+ "iplastic",
7560
+ "katzenmilch",
7561
+ "kr_theme",
7562
+ "kuroir",
7563
+ "merbivore",
7564
+ "merbivore_soft",
7565
+ "mono_industrial",
7566
+ "monokai",
7567
+ "nord_dark",
7568
+ "pastel_on_dark",
7569
+ "solarized_dark",
7570
+ "solarized_light",
7571
+ "sqlserver",
7572
+ "terminal",
7573
+ "textmate",
7574
+ "tomorrow",
7575
+ "tomorrow_night",
7576
+ "tomorrow_night_blue",
7577
+ "tomorrow_night_bright",
7578
+ "tomorrow_night_eighties",
7579
+ "twilight",
7580
+ "vibrant_ink",
7581
+ "xcode"
7582
+ ],
7583
+ "type": "string"
7584
+ },
8011
7585
  "Timezone": {
8012
7586
  "enum": [
8013
7587
  "Africa/Abidjan",