@cloudcannon/configuration-types 0.0.6 → 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,210 +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
- "icon": {
857
- "$ref": "#/definitions/Icon",
858
- "description": "Sets an icon to use alongside references to this collection.",
859
- "markdownDescription": "Sets an icon to use alongside references to this collection."
860
- },
861
- "name": {
862
- "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.",
863
- "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.",
864
- "type": "string"
865
- },
866
- "new_preview_url": {
867
- "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.",
868
- "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.",
869
- "type": "string"
870
- },
871
- "output": {
872
- "description": "Whether or not files in this collection produce files in the build output.",
873
- "markdownDescription": "Whether or not files in this collection produce files in the build output.",
874
- "type": "boolean"
875
- },
876
- "parser": {
877
- "description": "Overrides how each file in the collection is read. Detected automatically from file extension if unset.",
878
- "enum": [
879
- "csv",
880
- "front-matter",
881
- "json",
882
- "properties",
883
- "toml",
884
- "yaml"
885
- ],
886
- "markdownDescription": "Overrides how each file in the collection is read. Detected automatically from file extension\nif unset.",
887
- "type": "string"
888
- },
889
- "path": {
890
- "description": "The top-most folder where the files in this collection are stored. It is relative to source. Each collection must have a unique path.",
891
- "markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source.\nEach collection must have a unique path.",
892
- "type": "string"
893
- },
894
- "preview": {
895
- "$ref": "#/definitions/Preview",
896
- "description": "Changes the way items are previewed in the CMS.",
897
- "markdownDescription": "Changes the way items are previewed in the CMS."
898
- },
899
- "schema_key": {
900
- "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.",
901
- "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.",
902
- "type": "string"
903
- },
904
- "schemas": {
905
- "additionalProperties": {
906
- "$ref": "#/definitions/Schema"
907
- },
908
- "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.",
909
- "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.",
910
- "type": "object"
911
- },
912
- "singular_key": {
913
- "description": "Overrides the default singular input key of the collection. This is used for naming conventions for select and multiselect inputs.",
914
- "markdownDescription": "Overrides the default singular input key of the collection. This is used for naming conventions\nfor select and multiselect inputs.",
915
- "type": "string"
916
- },
917
- "singular_name": {
918
- "description": "Overrides the default singular display name of the collection. This is displayed in the collection add menu and file context menu.",
919
- "markdownDescription": "Overrides the default singular display name of the collection. This is displayed in the\ncollection add menu and file context menu.",
920
- "type": "string"
921
- },
922
- "sort": {
923
- "$ref": "#/definitions/Sort",
924
- "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.",
925
- "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."
926
- },
927
- "sort_options": {
928
- "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.",
929
- "items": {
930
- "$ref": "#/definitions/SortOption"
931
- },
932
- "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.",
933
- "type": "array"
934
- },
935
- "url": {
936
- "description": "Used to build the url field for items in the collection. Similar to permalink in many SSGs. Defaults to ''",
937
- "markdownDescription": "Used to build the url field for items in the collection. Similar to permalink in many SSGs.\nDefaults to ''",
938
- "type": "string"
748
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
939
749
  }
940
750
  },
941
751
  "type": "object"
@@ -1149,8 +959,8 @@
1149
959
  "type": "string"
1150
960
  },
1151
961
  "publish_to": {
1152
- "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.",
1153
- "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.",
1154
964
  "type": "string"
1155
965
  }
1156
966
  },
@@ -1163,7 +973,7 @@
1163
973
  "additionalProperties": false,
1164
974
  "properties": {
1165
975
  "parser": {
1166
- "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.",
1167
977
  "enum": [
1168
978
  "csv",
1169
979
  "front-matter",
@@ -1172,7 +982,7 @@
1172
982
  "toml",
1173
983
  "yaml"
1174
984
  ],
1175
- "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.",
1176
986
  "type": "string"
1177
987
  },
1178
988
  "path": {
@@ -1286,267 +1096,47 @@
1286
1096
  },
1287
1097
  "type": "object"
1288
1098
  },
1289
- "DefaultConfiguration": {
1099
+ "Documentation": {
1290
1100
  "additionalProperties": false,
1291
1101
  "properties": {
1292
- "_array_structures": {
1293
- "additionalProperties": {},
1294
- "description": "[DEPRECATED] Now known as _structures.",
1295
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
1296
- "type": "object"
1297
- },
1298
- "_comments": {
1299
- "additionalProperties": {
1300
- "type": "string"
1301
- },
1302
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
1303
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.comment.",
1304
- "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."
1305
1106
  },
1306
- "_editables": {
1307
- "$ref": "#/definitions/Editables",
1308
- "description": "Contains input options for Editable Regions and the Content Editor.",
1309
- "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
1107
+ "text": {
1108
+ "description": "The visible text used in the link.",
1109
+ "markdownDescription": "The visible text used in the link.",
1110
+ "type": "string"
1310
1111
  },
1311
- "_enabled_editors": {
1312
- "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.",
1313
- "items": {
1314
- "$ref": "#/definitions/EditorKey"
1315
- },
1316
- "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.",
1317
- "type": "array"
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."
1318
1130
  },
1319
- "_inputs": {
1320
- "additionalProperties": {
1321
- "$ref": "#/definitions/Input"
1322
- },
1323
- "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1324
- "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1325
- "type": "object"
1131
+ "content": {
1132
+ "$ref": "#/definitions/BlockEditable",
1133
+ "description": "Contains input options for the Content Editor.",
1134
+ "markdownDescription": "Contains input options for the Content Editor."
1326
1135
  },
1327
- "_options": {
1328
- "additionalProperties": {
1329
- "additionalProperties": {},
1330
- "type": "object"
1331
- },
1332
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
1333
- "markdownDescription": "[DEPRECATED] Now part of _inputs.*.options.",
1334
- "type": "object"
1335
- },
1336
- "_select_data": {
1337
- "additionalProperties": {
1338
- "$ref": "#/definitions/SelectValues"
1339
- },
1340
- "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
1341
- "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
1342
- "type": "object"
1343
- },
1344
- "_snippets": {
1345
- "additionalProperties": {
1346
- "$ref": "#/definitions/SnippetConfig"
1347
- },
1348
- "description": "Configuration for custom snippets.",
1349
- "markdownDescription": "Configuration for custom snippets.",
1350
- "type": "object"
1351
- },
1352
- "_snippets_definitions": {
1353
- "additionalProperties": {
1354
- "$ref": "#/definitions/SnippetConfig"
1355
- },
1356
- "description": "Extended option used when creating more complex custom snippets.",
1357
- "markdownDescription": "Extended option used when creating more complex custom snippets.",
1358
- "type": "object"
1359
- },
1360
- "_snippets_imports": {
1361
- "$ref": "#/definitions/SnippetsImports",
1362
- "description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
1363
- "markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
1364
- },
1365
- "_snippets_templates": {
1366
- "additionalProperties": {
1367
- "$ref": "#/definitions/SnippetConfig"
1368
- },
1369
- "description": "Extended option used when creating more complex custom snippets.",
1370
- "markdownDescription": "Extended option used when creating more complex custom snippets.",
1371
- "type": "object"
1372
- },
1373
- "_structures": {
1374
- "additionalProperties": {
1375
- "$ref": "#/definitions/Structure"
1376
- },
1377
- "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.",
1378
- "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.",
1379
- "type": "object"
1380
- },
1381
- "base_url": {
1382
- "description": "The subpath where your output files are hosted.",
1383
- "markdownDescription": "The subpath where your output files are hosted.",
1384
- "type": "string"
1385
- },
1386
- "collection_groups": {
1387
- "description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
1388
- "items": {
1389
- "$ref": "#/definitions/CollectionGroup"
1390
- },
1391
- "markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
1392
- "type": "array"
1393
- },
1394
- "collections_config": {
1395
- "additionalProperties": {
1396
- "$ref": "#/definitions/CollectionConfig"
1397
- },
1398
- "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.",
1399
- "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.",
1400
- "type": "object"
1401
- },
1402
- "commit_templates": {
1403
- "items": {
1404
- "$ref": "#/definitions/CommitTemplate"
1405
- },
1406
- "type": "array"
1407
- },
1408
- "data_config": {
1409
- "additionalProperties": {
1410
- "$ref": "#/definitions/DataConfigEntry"
1411
- },
1412
- "description": "Controls what data sets are available to populate select and multiselect inputs.",
1413
- "markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
1414
- "type": "object"
1415
- },
1416
- "editor": {
1417
- "$ref": "#/definitions/Editor",
1418
- "description": "Contains settings for the default editor actions on your site.",
1419
- "markdownDescription": "Contains settings for the default editor actions on your site."
1420
- },
1421
- "generator": {
1422
- "additionalProperties": false,
1423
- "description": "Contains settings for various Markdown engines.",
1424
- "markdownDescription": "Contains settings for various Markdown engines.",
1425
- "properties": {
1426
- "metadata": {
1427
- "additionalProperties": false,
1428
- "description": "Settings for various Markdown engines.",
1429
- "markdownDescription": "Settings for various Markdown engines.",
1430
- "properties": {
1431
- "commonmark": {
1432
- "description": "Markdown options specific used when markdown is set to \"commonmark\".",
1433
- "markdownDescription": "Markdown options specific used when markdown is set to \"commonmark\".",
1434
- "type": "object"
1435
- },
1436
- "commonmarkghpages": {
1437
- "description": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
1438
- "markdownDescription": "Markdown options specific used when markdown is set to \"commonmarkghpages\".",
1439
- "type": "object"
1440
- },
1441
- "goldmark": {
1442
- "description": "Markdown options specific used when markdown is set to \"goldmark\".",
1443
- "markdownDescription": "Markdown options specific used when markdown is set to \"goldmark\".",
1444
- "type": "object"
1445
- },
1446
- "kramdown": {
1447
- "description": "Markdown options specific used when markdown is set to \"kramdown\".",
1448
- "markdownDescription": "Markdown options specific used when markdown is set to \"kramdown\".",
1449
- "type": "object"
1450
- },
1451
- "markdown": {
1452
- "description": "The Markdown engine used on your site.",
1453
- "enum": [
1454
- "kramdown",
1455
- "commonmark",
1456
- "commonmarkghpages",
1457
- "goldmark",
1458
- "markdown-it"
1459
- ],
1460
- "markdownDescription": "The Markdown engine used on your site.",
1461
- "type": "string"
1462
- },
1463
- "markdown-it": {
1464
- "description": "Markdown options specific used when markdown is set to \"markdown-it\".",
1465
- "markdownDescription": "Markdown options specific used when markdown is set to \"markdown-it\".",
1466
- "type": "object"
1467
- }
1468
- },
1469
- "required": [
1470
- "markdown"
1471
- ],
1472
- "type": "object"
1473
- }
1474
- },
1475
- "type": "object"
1476
- },
1477
- "output": {
1478
- "description": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy. Defaults to the root folder.",
1479
- "markdownDescription": "Generates the integration file in another folder. Not applicable to Jekyll, Hugo, and Eleventy.\nDefaults to the root folder.",
1480
- "type": "string"
1481
- },
1482
- "paths": {
1483
- "$ref": "#/definitions/Paths",
1484
- "description": "Global paths to common folders.",
1485
- "markdownDescription": "Global paths to common folders."
1486
- },
1487
- "source": {
1488
- "description": "Base path to your site source files, relative to the root folder.",
1489
- "markdownDescription": "Base path to your site source files, relative to the root folder.",
1490
- "type": "string"
1491
- },
1492
- "source_editor": {
1493
- "$ref": "#/definitions/SourceEditor",
1494
- "description": "Settings for the behavior and appearance of the Source Editor.",
1495
- "markdownDescription": "Settings for the behavior and appearance of the Source Editor."
1496
- },
1497
- "ssg": {
1498
- "$ref": "#/definitions/SsgKey"
1499
- },
1500
- "timezone": {
1501
- "$ref": "#/definitions/Timezone",
1502
- "default": "Etc/UTC",
1503
- "description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
1504
- "markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
1505
- }
1506
- },
1507
- "type": "object"
1508
- },
1509
- "Documentation": {
1510
- "additionalProperties": false,
1511
- "properties": {
1512
- "icon": {
1513
- "$ref": "#/definitions/Icon",
1514
- "description": "The icon displayed next to the link.",
1515
- "markdownDescription": "The icon displayed next to the link."
1516
- },
1517
- "text": {
1518
- "description": "The visible text used in the link.",
1519
- "markdownDescription": "The visible text used in the link.",
1520
- "type": "string"
1521
- },
1522
- "url": {
1523
- "description": "The \"href\" value of the link.",
1524
- "markdownDescription": "The \"href\" value of the link.",
1525
- "type": "string"
1526
- }
1527
- },
1528
- "required": [
1529
- "url"
1530
- ],
1531
- "type": "object"
1532
- },
1533
- "Editables": {
1534
- "additionalProperties": false,
1535
- "properties": {
1536
- "block": {
1537
- "$ref": "#/definitions/BlockEditable",
1538
- "description": "Contains input options for block Editable Regions.",
1539
- "markdownDescription": "Contains input options for block Editable Regions."
1540
- },
1541
- "content": {
1542
- "$ref": "#/definitions/BlockEditable",
1543
- "description": "Contains input options for the Content Editor.",
1544
- "markdownDescription": "Contains input options for the Content Editor."
1545
- },
1546
- "image": {
1547
- "$ref": "#/definitions/ImageEditable",
1548
- "description": "Contains input options for image Editable Regions.",
1549
- "markdownDescription": "Contains input options for image Editable Regions."
1136
+ "image": {
1137
+ "$ref": "#/definitions/ImageEditable",
1138
+ "description": "Contains input options for image Editable Regions.",
1139
+ "markdownDescription": "Contains input options for image Editable Regions."
1550
1140
  },
1551
1141
  "link": {
1552
1142
  "$ref": "#/definitions/LinkEditable",
@@ -1612,50 +1202,137 @@
1612
1202
  ],
1613
1203
  "type": "string"
1614
1204
  },
1615
- "FileInput": {
1205
+ "FileConfigEntry": {
1616
1206
  "additionalProperties": false,
1617
1207
  "properties": {
1618
- "cascade": {
1619
- "default": true,
1620
- "description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
1621
- "markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
1622
- "type": "boolean"
1623
- },
1624
- "comment": {
1625
- "description": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.",
1626
- "markdownDescription": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown:\nlinks, bold, italic, subscript, superscript, and inline code elements are allowed.",
1627
- "type": "string"
1208
+ "_array_structures": {
1209
+ "additionalProperties": {},
1210
+ "deprecated": "Use _structures instead.",
1211
+ "description": "Now known as _structures.",
1212
+ "markdownDescription": "Now known as _structures.",
1213
+ "type": "object"
1628
1214
  },
1629
- "context": {
1630
- "additionalProperties": false,
1631
- "description": "Adds an expandable section of rich text below the input.",
1632
- "markdownDescription": "Adds an expandable section of rich text below the input.",
1633
- "properties": {
1634
- "content": {
1635
- "description": "The rich text content shown when opened. Supports a limited set of Markdown.",
1636
- "markdownDescription": "The rich text content shown when opened. Supports a limited set of Markdown.",
1637
- "type": "string"
1638
- },
1639
- "icon": {
1640
- "$ref": "#/definitions/Icon",
1641
- "description": "The icon shown when not open.",
1642
- "markdownDescription": "The icon shown when not open."
1643
- },
1644
- "open": {
1645
- "description": "Makes the content visible initially.",
1646
- "markdownDescription": "Makes the content visible initially.",
1647
- "type": "boolean"
1648
- },
1649
- "title": {
1650
- "description": "The text shown when not open. Defaults to \"Context\" if unset.",
1651
- "markdownDescription": "The text shown when not open. Defaults to \"Context\" if unset.",
1652
- "type": "string"
1653
- }
1215
+ "_comments": {
1216
+ "additionalProperties": {
1217
+ "type": "string"
1654
1218
  },
1219
+ "deprecated": "Use _inputs instead.",
1220
+ "description": "Now part of _inputs.*.comment.",
1221
+ "markdownDescription": "Now part of _inputs.*.comment.",
1655
1222
  "type": "object"
1656
1223
  },
1657
- "documentation": {
1658
- "$ref": "#/definitions/Documentation",
1224
+ "_editables": {
1225
+ "$ref": "#/definitions/Editables",
1226
+ "description": "Contains input options for Editable Regions and the Content Editor.",
1227
+ "markdownDescription": "Contains input options for Editable Regions and the Content Editor."
1228
+ },
1229
+ "_enabled_editors": {
1230
+ "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.",
1231
+ "items": {
1232
+ "$ref": "#/definitions/EditorKey"
1233
+ },
1234
+ "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.",
1235
+ "type": "array"
1236
+ },
1237
+ "_inputs": {
1238
+ "additionalProperties": {
1239
+ "$ref": "#/definitions/Input"
1240
+ },
1241
+ "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1242
+ "markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
1243
+ "type": "object"
1244
+ },
1245
+ "_options": {
1246
+ "additionalProperties": {
1247
+ "additionalProperties": {},
1248
+ "type": "object"
1249
+ },
1250
+ "deprecated": "Use _inputs instead.",
1251
+ "description": "Now part of _inputs.*.options.",
1252
+ "markdownDescription": "Now part of _inputs.*.options.",
1253
+ "type": "object"
1254
+ },
1255
+ "_select_data": {
1256
+ "additionalProperties": {
1257
+ "$ref": "#/definitions/SelectValues"
1258
+ },
1259
+ "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
1260
+ "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
1261
+ "type": "object"
1262
+ },
1263
+ "_structures": {
1264
+ "additionalProperties": {
1265
+ "$ref": "#/definitions/Structure"
1266
+ },
1267
+ "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.",
1268
+ "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.",
1269
+ "type": "object"
1270
+ },
1271
+ "glob": {
1272
+ "anyOf": [
1273
+ {
1274
+ "items": {
1275
+ "type": "string"
1276
+ },
1277
+ "type": "array"
1278
+ },
1279
+ {
1280
+ "type": "string"
1281
+ }
1282
+ ],
1283
+ "description": "The glob pattern(s) targeting a path to one or more files.",
1284
+ "markdownDescription": "The glob pattern(s) targeting a path to one or more files."
1285
+ }
1286
+ },
1287
+ "required": [
1288
+ "glob"
1289
+ ],
1290
+ "type": "object"
1291
+ },
1292
+ "FileInput": {
1293
+ "additionalProperties": false,
1294
+ "properties": {
1295
+ "cascade": {
1296
+ "default": true,
1297
+ "description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
1298
+ "markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
1299
+ "type": "boolean"
1300
+ },
1301
+ "comment": {
1302
+ "description": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.",
1303
+ "markdownDescription": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown:\nlinks, bold, italic, subscript, superscript, and inline code elements are allowed.",
1304
+ "type": "string"
1305
+ },
1306
+ "context": {
1307
+ "additionalProperties": false,
1308
+ "description": "Adds an expandable section of rich text below the input.",
1309
+ "markdownDescription": "Adds an expandable section of rich text below the input.",
1310
+ "properties": {
1311
+ "content": {
1312
+ "description": "The rich text content shown when opened. Supports a limited set of Markdown.",
1313
+ "markdownDescription": "The rich text content shown when opened. Supports a limited set of Markdown.",
1314
+ "type": "string"
1315
+ },
1316
+ "icon": {
1317
+ "$ref": "#/definitions/Icon",
1318
+ "description": "The icon shown when not open.",
1319
+ "markdownDescription": "The icon shown when not open."
1320
+ },
1321
+ "open": {
1322
+ "description": "Makes the content visible initially.",
1323
+ "markdownDescription": "Makes the content visible initially.",
1324
+ "type": "boolean"
1325
+ },
1326
+ "title": {
1327
+ "description": "The text shown when not open. Defaults to \"Context\" if unset.",
1328
+ "markdownDescription": "The text shown when not open. Defaults to \"Context\" if unset.",
1329
+ "type": "string"
1330
+ }
1331
+ },
1332
+ "type": "object"
1333
+ },
1334
+ "documentation": {
1335
+ "$ref": "#/definitions/Documentation",
1659
1336
  "description": "Provides a custom link for documentation for editors shown above input.",
1660
1337
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
1661
1338
  },
@@ -5283,158 +4960,22 @@
5283
4960
  "additionalProperties": false,
5284
4961
  "properties": {
5285
4962
  "icon": {
5286
- "anyOf": [
5287
- {
5288
- "items": {
5289
- "anyOf": [
5290
- {
5291
- "additionalProperties": false,
5292
- "properties": {
5293
- "key": {
5294
- "description": "The key used to access the value used for the preview.",
5295
- "markdownDescription": "The key used to access the value used for the preview.",
5296
- "type": "string"
5297
- }
5298
- },
5299
- "required": [
5300
- "key"
5301
- ],
5302
- "type": "object"
5303
- },
5304
- {
5305
- "type": "string"
5306
- },
5307
- {
5308
- "type": "boolean"
5309
- }
5310
- ]
5311
- },
5312
- "type": "array"
5313
- },
5314
- {
5315
- "type": "string"
5316
- },
5317
- {
5318
- "type": "boolean"
5319
- }
5320
- ],
4963
+ "$ref": "#/definitions/PreviewEntry",
5321
4964
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5322
4965
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5323
4966
  },
5324
4967
  "image": {
5325
- "anyOf": [
5326
- {
5327
- "items": {
5328
- "anyOf": [
5329
- {
5330
- "additionalProperties": false,
5331
- "properties": {
5332
- "key": {
5333
- "description": "The key used to access the value used for the preview.",
5334
- "markdownDescription": "The key used to access the value used for the preview.",
5335
- "type": "string"
5336
- }
5337
- },
5338
- "required": [
5339
- "key"
5340
- ],
5341
- "type": "object"
5342
- },
5343
- {
5344
- "type": "string"
5345
- },
5346
- {
5347
- "type": "boolean"
5348
- }
5349
- ]
5350
- },
5351
- "type": "array"
5352
- },
5353
- {
5354
- "type": "string"
5355
- },
5356
- {
5357
- "type": "boolean"
5358
- }
5359
- ],
4968
+ "$ref": "#/definitions/PreviewEntry",
5360
4969
  "description": "Controls the image shown per item.",
5361
4970
  "markdownDescription": "Controls the image shown per item."
5362
4971
  },
5363
4972
  "subtext": {
5364
- "anyOf": [
5365
- {
5366
- "items": {
5367
- "anyOf": [
5368
- {
5369
- "additionalProperties": false,
5370
- "properties": {
5371
- "key": {
5372
- "description": "The key used to access the value used for the preview.",
5373
- "markdownDescription": "The key used to access the value used for the preview.",
5374
- "type": "string"
5375
- }
5376
- },
5377
- "required": [
5378
- "key"
5379
- ],
5380
- "type": "object"
5381
- },
5382
- {
5383
- "type": "string"
5384
- },
5385
- {
5386
- "type": "boolean"
5387
- }
5388
- ]
5389
- },
5390
- "type": "array"
5391
- },
5392
- {
5393
- "type": "string"
5394
- },
5395
- {
5396
- "type": "boolean"
5397
- }
5398
- ],
4973
+ "$ref": "#/definitions/PreviewEntry",
5399
4974
  "description": "Controls the supporting text shown per item.",
5400
4975
  "markdownDescription": "Controls the supporting text shown per item."
5401
4976
  },
5402
4977
  "text": {
5403
- "anyOf": [
5404
- {
5405
- "items": {
5406
- "anyOf": [
5407
- {
5408
- "additionalProperties": false,
5409
- "properties": {
5410
- "key": {
5411
- "description": "The key used to access the value used for the preview.",
5412
- "markdownDescription": "The key used to access the value used for the preview.",
5413
- "type": "string"
5414
- }
5415
- },
5416
- "required": [
5417
- "key"
5418
- ],
5419
- "type": "object"
5420
- },
5421
- {
5422
- "type": "string"
5423
- },
5424
- {
5425
- "type": "boolean"
5426
- }
5427
- ]
5428
- },
5429
- "type": "array"
5430
- },
5431
- {
5432
- "type": "string"
5433
- },
5434
- {
5435
- "type": "boolean"
5436
- }
5437
- ],
4978
+ "$ref": "#/definitions/PreviewEntry",
5438
4979
  "description": "Controls the main text shown per item.",
5439
4980
  "markdownDescription": "Controls the main text shown per item."
5440
4981
  }
@@ -5445,7 +4986,6 @@
5445
4986
  "additionalProperties": false,
5446
4987
  "properties": {
5447
4988
  "collections": {
5448
- "default": "",
5449
4989
  "description": "Parent folder of all collections.",
5450
4990
  "markdownDescription": "Parent folder of all collections.",
5451
4991
  "type": "string"
@@ -5515,41 +5055,7 @@
5515
5055
  "markdownDescription": "Details for large image/icon preview per item."
5516
5056
  },
5517
5057
  "icon": {
5518
- "anyOf": [
5519
- {
5520
- "items": {
5521
- "anyOf": [
5522
- {
5523
- "additionalProperties": false,
5524
- "properties": {
5525
- "key": {
5526
- "description": "The key used to access the value used for the preview.",
5527
- "markdownDescription": "The key used to access the value used for the preview.",
5528
- "type": "string"
5529
- }
5530
- },
5531
- "required": [
5532
- "key"
5533
- ],
5534
- "type": "object"
5535
- },
5536
- {
5537
- "type": "string"
5538
- },
5539
- {
5540
- "type": "boolean"
5541
- }
5542
- ]
5543
- },
5544
- "type": "array"
5545
- },
5546
- {
5547
- "type": "string"
5548
- },
5549
- {
5550
- "type": "boolean"
5551
- }
5552
- ],
5058
+ "$ref": "#/definitions/PreviewEntry",
5553
5059
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5554
5060
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5555
5061
  },
@@ -5559,41 +5065,7 @@
5559
5065
  "type": "string"
5560
5066
  },
5561
5067
  "image": {
5562
- "anyOf": [
5563
- {
5564
- "items": {
5565
- "anyOf": [
5566
- {
5567
- "additionalProperties": false,
5568
- "properties": {
5569
- "key": {
5570
- "description": "The key used to access the value used for the preview.",
5571
- "markdownDescription": "The key used to access the value used for the preview.",
5572
- "type": "string"
5573
- }
5574
- },
5575
- "required": [
5576
- "key"
5577
- ],
5578
- "type": "object"
5579
- },
5580
- {
5581
- "type": "string"
5582
- },
5583
- {
5584
- "type": "boolean"
5585
- }
5586
- ]
5587
- },
5588
- "type": "array"
5589
- },
5590
- {
5591
- "type": "string"
5592
- },
5593
- {
5594
- "type": "boolean"
5595
- }
5596
- ],
5068
+ "$ref": "#/definitions/PreviewEntry",
5597
5069
  "description": "Controls the image shown per item.",
5598
5070
  "markdownDescription": "Controls the image shown per item."
5599
5071
  },
@@ -5606,86 +5078,44 @@
5606
5078
  "type": "array"
5607
5079
  },
5608
5080
  "subtext": {
5609
- "anyOf": [
5610
- {
5611
- "items": {
5612
- "anyOf": [
5613
- {
5614
- "additionalProperties": false,
5615
- "properties": {
5616
- "key": {
5617
- "description": "The key used to access the value used for the preview.",
5618
- "markdownDescription": "The key used to access the value used for the preview.",
5619
- "type": "string"
5620
- }
5621
- },
5622
- "required": [
5623
- "key"
5624
- ],
5625
- "type": "object"
5626
- },
5627
- {
5628
- "type": "string"
5629
- },
5630
- {
5631
- "type": "boolean"
5632
- }
5633
- ]
5634
- },
5635
- "type": "array"
5636
- },
5637
- {
5638
- "type": "string"
5639
- },
5640
- {
5641
- "type": "boolean"
5642
- }
5643
- ],
5081
+ "$ref": "#/definitions/PreviewEntry",
5644
5082
  "description": "Controls the supporting text shown per item.",
5645
5083
  "markdownDescription": "Controls the supporting text shown per item."
5646
5084
  },
5647
5085
  "text": {
5648
- "anyOf": [
5649
- {
5650
- "items": {
5651
- "anyOf": [
5652
- {
5653
- "additionalProperties": false,
5654
- "properties": {
5655
- "key": {
5656
- "description": "The key used to access the value used for the preview.",
5657
- "markdownDescription": "The key used to access the value used for the preview.",
5658
- "type": "string"
5659
- }
5660
- },
5661
- "required": [
5662
- "key"
5663
- ],
5664
- "type": "object"
5665
- },
5666
- {
5667
- "type": "string"
5668
- },
5669
- {
5670
- "type": "boolean"
5671
- }
5672
- ]
5673
- },
5674
- "type": "array"
5675
- },
5676
- {
5677
- "type": "string"
5678
- },
5679
- {
5680
- "type": "boolean"
5681
- }
5682
- ],
5086
+ "$ref": "#/definitions/PreviewEntry",
5683
5087
  "description": "Controls the main text shown per item.",
5684
5088
  "markdownDescription": "Controls the main text shown per item."
5685
5089
  }
5686
5090
  },
5687
5091
  "type": "object"
5688
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
+ },
5689
5119
  "PreviewGallery": {
5690
5120
  "additionalProperties": false,
5691
5121
  "properties": {
@@ -5701,41 +5131,7 @@
5701
5131
  "type": "string"
5702
5132
  },
5703
5133
  "icon": {
5704
- "anyOf": [
5705
- {
5706
- "items": {
5707
- "anyOf": [
5708
- {
5709
- "additionalProperties": false,
5710
- "properties": {
5711
- "key": {
5712
- "description": "The key used to access the value used for the preview.",
5713
- "markdownDescription": "The key used to access the value used for the preview.",
5714
- "type": "string"
5715
- }
5716
- },
5717
- "required": [
5718
- "key"
5719
- ],
5720
- "type": "object"
5721
- },
5722
- {
5723
- "type": "string"
5724
- },
5725
- {
5726
- "type": "boolean"
5727
- }
5728
- ]
5729
- },
5730
- "type": "array"
5731
- },
5732
- {
5733
- "type": "string"
5734
- },
5735
- {
5736
- "type": "boolean"
5737
- }
5738
- ],
5134
+ "$ref": "#/definitions/PreviewEntry",
5739
5135
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5740
5136
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5741
5137
  },
@@ -5745,125 +5141,37 @@
5745
5141
  "type": "string"
5746
5142
  },
5747
5143
  "image": {
5748
- "anyOf": [
5749
- {
5750
- "items": {
5751
- "anyOf": [
5752
- {
5753
- "additionalProperties": false,
5754
- "properties": {
5755
- "key": {
5756
- "description": "The key used to access the value used for the preview.",
5757
- "markdownDescription": "The key used to access the value used for the preview.",
5758
- "type": "string"
5759
- }
5760
- },
5761
- "required": [
5762
- "key"
5763
- ],
5764
- "type": "object"
5765
- },
5766
- {
5767
- "type": "string"
5768
- },
5769
- {
5770
- "type": "boolean"
5771
- }
5772
- ]
5773
- },
5774
- "type": "array"
5775
- },
5776
- {
5777
- "type": "string"
5778
- },
5779
- {
5780
- "type": "boolean"
5781
- }
5782
- ],
5144
+ "$ref": "#/definitions/PreviewEntry",
5783
5145
  "description": "Controls the image shown per item.",
5784
5146
  "markdownDescription": "Controls the image shown per item."
5785
5147
  },
5786
5148
  "text": {
5787
- "anyOf": [
5788
- {
5789
- "items": {
5790
- "anyOf": [
5791
- {
5792
- "additionalProperties": false,
5793
- "properties": {
5794
- "key": {
5795
- "description": "The key used to access the value used for the preview.",
5796
- "markdownDescription": "The key used to access the value used for the preview.",
5797
- "type": "string"
5798
- }
5799
- },
5800
- "required": [
5801
- "key"
5802
- ],
5803
- "type": "object"
5804
- },
5805
- {
5806
- "type": "string"
5807
- },
5808
- {
5809
- "type": "boolean"
5810
- }
5811
- ]
5812
- },
5813
- "type": "array"
5814
- },
5815
- {
5816
- "type": "string"
5817
- },
5818
- {
5819
- "type": "boolean"
5820
- }
5821
- ],
5149
+ "$ref": "#/definitions/PreviewEntry",
5822
5150
  "description": "Controls the main text shown per item.",
5823
5151
  "markdownDescription": "Controls the main text shown per item."
5824
5152
  }
5825
5153
  },
5826
5154
  "type": "object"
5827
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
+ },
5828
5170
  "PreviewMetadata": {
5829
5171
  "additionalProperties": false,
5830
5172
  "properties": {
5831
5173
  "icon": {
5832
- "anyOf": [
5833
- {
5834
- "items": {
5835
- "anyOf": [
5836
- {
5837
- "additionalProperties": false,
5838
- "properties": {
5839
- "key": {
5840
- "description": "The key used to access the value used for the preview.",
5841
- "markdownDescription": "The key used to access the value used for the preview.",
5842
- "type": "string"
5843
- }
5844
- },
5845
- "required": [
5846
- "key"
5847
- ],
5848
- "type": "object"
5849
- },
5850
- {
5851
- "type": "string"
5852
- },
5853
- {
5854
- "type": "boolean"
5855
- }
5856
- ]
5857
- },
5858
- "type": "array"
5859
- },
5860
- {
5861
- "type": "string"
5862
- },
5863
- {
5864
- "type": "boolean"
5865
- }
5866
- ],
5174
+ "$ref": "#/definitions/PreviewEntry",
5867
5175
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
5868
5176
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
5869
5177
  },
@@ -5873,80 +5181,12 @@
5873
5181
  "type": "string"
5874
5182
  },
5875
5183
  "image": {
5876
- "anyOf": [
5877
- {
5878
- "items": {
5879
- "anyOf": [
5880
- {
5881
- "additionalProperties": false,
5882
- "properties": {
5883
- "key": {
5884
- "description": "The key used to access the value used for the preview.",
5885
- "markdownDescription": "The key used to access the value used for the preview.",
5886
- "type": "string"
5887
- }
5888
- },
5889
- "required": [
5890
- "key"
5891
- ],
5892
- "type": "object"
5893
- },
5894
- {
5895
- "type": "string"
5896
- },
5897
- {
5898
- "type": "boolean"
5899
- }
5900
- ]
5901
- },
5902
- "type": "array"
5903
- },
5904
- {
5905
- "type": "string"
5906
- },
5907
- {
5908
- "type": "boolean"
5909
- }
5910
- ],
5184
+ "$ref": "#/definitions/PreviewEntry",
5911
5185
  "description": "Controls the image shown per item.",
5912
5186
  "markdownDescription": "Controls the image shown per item."
5913
5187
  },
5914
5188
  "text": {
5915
- "anyOf": [
5916
- {
5917
- "items": {
5918
- "anyOf": [
5919
- {
5920
- "additionalProperties": false,
5921
- "properties": {
5922
- "key": {
5923
- "description": "The key used to access the value used for the preview.",
5924
- "markdownDescription": "The key used to access the value used for the preview.",
5925
- "type": "string"
5926
- }
5927
- },
5928
- "required": [
5929
- "key"
5930
- ],
5931
- "type": "object"
5932
- },
5933
- {
5934
- "type": "string"
5935
- },
5936
- {
5937
- "type": "boolean"
5938
- }
5939
- ]
5940
- },
5941
- "type": "array"
5942
- },
5943
- {
5944
- "type": "string"
5945
- },
5946
- {
5947
- "type": "boolean"
5948
- }
5949
- ],
5189
+ "$ref": "#/definitions/PreviewEntry",
5950
5190
  "description": "Controls the main text shown per item.",
5951
5191
  "markdownDescription": "Controls the main text shown per item."
5952
5192
  }
@@ -6052,17 +5292,469 @@
6052
5292
  "markdownDescription": "The lowest value in the range of permitted values.",
6053
5293
  "type": "number"
6054
5294
  },
6055
- "step": {
6056
- "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`.",
6057
- "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`.",
6058
- "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."
6059
5756
  }
6060
5757
  },
6061
- "required": [
6062
- "min",
6063
- "max",
6064
- "step"
6065
- ],
6066
5758
  "type": "object"
6067
5759
  },
6068
5760
  "ReducedPaths": {
@@ -6235,8 +5927,18 @@
6235
5927
  "type": "string"
6236
5928
  },
6237
5929
  "code": {
6238
- "description": "Enables a control to set selected text to inline code, and unselected blocks of text to code blocks.",
6239
- "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.",
6240
5942
  "type": "boolean"
6241
5943
  },
6242
5944
  "copyformatting": {
@@ -6461,16 +6163,18 @@
6461
6163
  "properties": {
6462
6164
  "_array_structures": {
6463
6165
  "additionalProperties": {},
6464
- "description": "[DEPRECATED] Now known as _structures.",
6465
- "markdownDescription": "[DEPRECATED] Now known as _structures.",
6166
+ "deprecated": "Use _structures instead.",
6167
+ "description": "Now known as _structures.",
6168
+ "markdownDescription": "Now known as _structures.",
6466
6169
  "type": "object"
6467
6170
  },
6468
6171
  "_comments": {
6469
6172
  "additionalProperties": {
6470
6173
  "type": "string"
6471
6174
  },
6472
- "description": "[DEPRECATED] Now part of _inputs.*.comment.",
6473
- "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.",
6474
6178
  "type": "object"
6475
6179
  },
6476
6180
  "_editables": {
@@ -6499,8 +6203,9 @@
6499
6203
  "additionalProperties": {},
6500
6204
  "type": "object"
6501
6205
  },
6502
- "description": "[DEPRECATED] Now part of _inputs.*.options.",
6503
- "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.",
6504
6209
  "type": "object"
6505
6210
  },
6506
6211
  "_select_data": {
@@ -6698,80 +6403,12 @@
6698
6403
  "additionalProperties": false,
6699
6404
  "properties": {
6700
6405
  "icon": {
6701
- "anyOf": [
6702
- {
6703
- "items": {
6704
- "anyOf": [
6705
- {
6706
- "additionalProperties": false,
6707
- "properties": {
6708
- "key": {
6709
- "description": "The key used to access the value used for the preview.",
6710
- "markdownDescription": "The key used to access the value used for the preview.",
6711
- "type": "string"
6712
- }
6713
- },
6714
- "required": [
6715
- "key"
6716
- ],
6717
- "type": "object"
6718
- },
6719
- {
6720
- "type": "string"
6721
- },
6722
- {
6723
- "type": "boolean"
6724
- }
6725
- ]
6726
- },
6727
- "type": "array"
6728
- },
6729
- {
6730
- "type": "string"
6731
- },
6732
- {
6733
- "type": "boolean"
6734
- }
6735
- ],
6406
+ "$ref": "#/definitions/PreviewEntry",
6736
6407
  "description": "Controls the icon shown per item. Must result in a Material Icon name.",
6737
6408
  "markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
6738
6409
  },
6739
6410
  "text": {
6740
- "anyOf": [
6741
- {
6742
- "items": {
6743
- "anyOf": [
6744
- {
6745
- "additionalProperties": false,
6746
- "properties": {
6747
- "key": {
6748
- "description": "The key used to access the value used for the preview.",
6749
- "markdownDescription": "The key used to access the value used for the preview.",
6750
- "type": "string"
6751
- }
6752
- },
6753
- "required": [
6754
- "key"
6755
- ],
6756
- "type": "object"
6757
- },
6758
- {
6759
- "type": "string"
6760
- },
6761
- {
6762
- "type": "boolean"
6763
- }
6764
- ]
6765
- },
6766
- "type": "array"
6767
- },
6768
- {
6769
- "type": "string"
6770
- },
6771
- {
6772
- "type": "boolean"
6773
- }
6774
- ],
6411
+ "$ref": "#/definitions/PreviewEntry",
6775
6412
  "description": "Controls the main text shown per item.",
6776
6413
  "markdownDescription": "Controls the main text shown per item."
6777
6414
  }
@@ -6881,6 +6518,354 @@
6881
6518
  },
6882
6519
  "type": "object"
6883
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
+ },
6884
6869
  "SnippetsImports": {
6885
6870
  "additionalProperties": false,
6886
6871
  "properties": {
@@ -6890,38 +6875,7 @@
6890
6875
  "type": "boolean"
6891
6876
  },
6892
6877
  {
6893
- "additionalProperties": false,
6894
- "properties": {
6895
- "exclude": {
6896
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6897
- "items": {
6898
- "enum": [
6899
- "docusaurus_mdx_admonition",
6900
- "docusaurus_mdx_tabs",
6901
- "docusaurus_mdx_truncate",
6902
- "docusaurus_mdx_codeblock"
6903
- ],
6904
- "type": "string"
6905
- },
6906
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6907
- "type": "array"
6908
- },
6909
- "include": {
6910
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6911
- "items": {
6912
- "enum": [
6913
- "docusaurus_mdx_admonition",
6914
- "docusaurus_mdx_tabs",
6915
- "docusaurus_mdx_truncate",
6916
- "docusaurus_mdx_codeblock"
6917
- ],
6918
- "type": "string"
6919
- },
6920
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6921
- "type": "array"
6922
- }
6923
- },
6924
- "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"
6925
6879
  }
6926
6880
  ],
6927
6881
  "description": "Default snippets for Docusaurus SSG.",
@@ -6933,38 +6887,7 @@
6933
6887
  "type": "boolean"
6934
6888
  },
6935
6889
  {
6936
- "additionalProperties": false,
6937
- "properties": {
6938
- "exclude": {
6939
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6940
- "items": {
6941
- "enum": [
6942
- "eleventy_liquid_raw",
6943
- "_cc_eleventy_liquid_unknown_paired_shortcode",
6944
- "_cc_eleventy_liquid_unknown_shortcode",
6945
- "_cc_eleventy_liquid_template"
6946
- ],
6947
- "type": "string"
6948
- },
6949
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6950
- "type": "array"
6951
- },
6952
- "include": {
6953
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6954
- "items": {
6955
- "enum": [
6956
- "eleventy_liquid_raw",
6957
- "_cc_eleventy_liquid_unknown_paired_shortcode",
6958
- "_cc_eleventy_liquid_unknown_shortcode",
6959
- "_cc_eleventy_liquid_template"
6960
- ],
6961
- "type": "string"
6962
- },
6963
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6964
- "type": "array"
6965
- }
6966
- },
6967
- "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"
6968
6891
  }
6969
6892
  ],
6970
6893
  "description": "Default snippets for Eleventy SSG Liquid files.",
@@ -6976,40 +6899,7 @@
6976
6899
  "type": "boolean"
6977
6900
  },
6978
6901
  {
6979
- "additionalProperties": false,
6980
- "properties": {
6981
- "exclude": {
6982
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6983
- "items": {
6984
- "enum": [
6985
- "eleventy_nunjucks_raw",
6986
- "eleventy_nunjucks_verbatim",
6987
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
6988
- "_cc_eleventy_nunjucks_unknown_shortcode",
6989
- "_cc_eleventy_nunjucks_template"
6990
- ],
6991
- "type": "string"
6992
- },
6993
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
6994
- "type": "array"
6995
- },
6996
- "include": {
6997
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
6998
- "items": {
6999
- "enum": [
7000
- "eleventy_nunjucks_raw",
7001
- "eleventy_nunjucks_verbatim",
7002
- "_cc_eleventy_nunjucks_unknown_paired_shortcode",
7003
- "_cc_eleventy_nunjucks_unknown_shortcode",
7004
- "_cc_eleventy_nunjucks_template"
7005
- ],
7006
- "type": "string"
7007
- },
7008
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7009
- "type": "array"
7010
- }
7011
- },
7012
- "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"
7013
6903
  }
7014
6904
  ],
7015
6905
  "description": "Default snippets for Eleventy SSG Nunjucks files.",
@@ -7021,60 +6911,7 @@
7021
6911
  "type": "boolean"
7022
6912
  },
7023
6913
  {
7024
- "additionalProperties": false,
7025
- "properties": {
7026
- "exclude": {
7027
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7028
- "items": {
7029
- "enum": [
7030
- "hugo_summary_divider",
7031
- "hugo_highlight",
7032
- "hugo_figure",
7033
- "hugo_gist",
7034
- "hugo_instagram",
7035
- "hugo_param",
7036
- "hugo_ref",
7037
- "hugo_relref",
7038
- "hugo_tweet",
7039
- "hugo_vimeo",
7040
- "hugo_youtube",
7041
- "_cc_hugo_unknown_paired",
7042
- "_cc_hugo_unknown",
7043
- "_cc_hugo_unknown_paired_processed",
7044
- "_cc_hugo_unknown_processed"
7045
- ],
7046
- "type": "string"
7047
- },
7048
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7049
- "type": "array"
7050
- },
7051
- "include": {
7052
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7053
- "items": {
7054
- "enum": [
7055
- "hugo_summary_divider",
7056
- "hugo_highlight",
7057
- "hugo_figure",
7058
- "hugo_gist",
7059
- "hugo_instagram",
7060
- "hugo_param",
7061
- "hugo_ref",
7062
- "hugo_relref",
7063
- "hugo_tweet",
7064
- "hugo_vimeo",
7065
- "hugo_youtube",
7066
- "_cc_hugo_unknown_paired",
7067
- "_cc_hugo_unknown",
7068
- "_cc_hugo_unknown_paired_processed",
7069
- "_cc_hugo_unknown_processed"
7070
- ],
7071
- "type": "string"
7072
- },
7073
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7074
- "type": "array"
7075
- }
7076
- },
7077
- "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"
7078
6915
  }
7079
6916
  ],
7080
6917
  "description": "Default snippets for Hugo SSG.",
@@ -7086,44 +6923,7 @@
7086
6923
  "type": "boolean"
7087
6924
  },
7088
6925
  {
7089
- "additionalProperties": false,
7090
- "properties": {
7091
- "exclude": {
7092
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7093
- "items": {
7094
- "enum": [
7095
- "_cc_jekyll_unknown_paired_tag",
7096
- "_cc_jekyll_unknown_tag",
7097
- "jekyll_highlight",
7098
- "_cc_jekyll_template",
7099
- "jekyll_raw",
7100
- "jekyll_link",
7101
- "jekyll_post_url"
7102
- ],
7103
- "type": "string"
7104
- },
7105
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7106
- "type": "array"
7107
- },
7108
- "include": {
7109
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7110
- "items": {
7111
- "enum": [
7112
- "_cc_jekyll_unknown_paired_tag",
7113
- "_cc_jekyll_unknown_tag",
7114
- "jekyll_highlight",
7115
- "_cc_jekyll_template",
7116
- "jekyll_raw",
7117
- "jekyll_link",
7118
- "jekyll_post_url"
7119
- ],
7120
- "type": "string"
7121
- },
7122
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7123
- "type": "array"
7124
- }
7125
- },
7126
- "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"
7127
6927
  }
7128
6928
  ],
7129
6929
  "description": "Default snippets for Jekyll SSG.",
@@ -7135,42 +6935,7 @@
7135
6935
  "type": "boolean"
7136
6936
  },
7137
6937
  {
7138
- "additionalProperties": false,
7139
- "properties": {
7140
- "exclude": {
7141
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7142
- "items": {
7143
- "enum": [
7144
- "markdoc_id_annotation",
7145
- "markdoc_class_annotation",
7146
- "markdoc_table",
7147
- "_cc_markdoc_unknown_tag",
7148
- "_cc_markdoc_unknown_paired_tag",
7149
- "_cc_markdoc_unknown_template"
7150
- ],
7151
- "type": "string"
7152
- },
7153
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7154
- "type": "array"
7155
- },
7156
- "include": {
7157
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7158
- "items": {
7159
- "enum": [
7160
- "markdoc_id_annotation",
7161
- "markdoc_class_annotation",
7162
- "markdoc_table",
7163
- "_cc_markdoc_unknown_tag",
7164
- "_cc_markdoc_unknown_paired_tag",
7165
- "_cc_markdoc_unknown_template"
7166
- ],
7167
- "type": "string"
7168
- },
7169
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7170
- "type": "array"
7171
- }
7172
- },
7173
- "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"
7174
6939
  }
7175
6940
  ],
7176
6941
  "description": "Default snippets for Markdoc-based content.",
@@ -7182,44 +6947,7 @@
7182
6947
  "type": "boolean"
7183
6948
  },
7184
6949
  {
7185
- "additionalProperties": false,
7186
- "properties": {
7187
- "exclude": {
7188
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7189
- "items": {
7190
- "enum": [
7191
- "import",
7192
- "_cc_mdx_unknown_export",
7193
- "_cc_mdx_unknown_export_expression",
7194
- "_cc_mdx_unknown_export_default",
7195
- "_cc_mdx_unknown_template",
7196
- "_cc_mdx_paired_unknown",
7197
- "_cc_mdx_unknown"
7198
- ],
7199
- "type": "string"
7200
- },
7201
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7202
- "type": "array"
7203
- },
7204
- "include": {
7205
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7206
- "items": {
7207
- "enum": [
7208
- "import",
7209
- "_cc_mdx_unknown_export",
7210
- "_cc_mdx_unknown_export_expression",
7211
- "_cc_mdx_unknown_export_default",
7212
- "_cc_mdx_unknown_template",
7213
- "_cc_mdx_paired_unknown",
7214
- "_cc_mdx_unknown"
7215
- ],
7216
- "type": "string"
7217
- },
7218
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7219
- "type": "array"
7220
- }
7221
- },
7222
- "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"
7223
6951
  }
7224
6952
  ],
7225
6953
  "description": "Default snippets for MDX-based content.",
@@ -7231,74 +6959,7 @@
7231
6959
  "type": "boolean"
7232
6960
  },
7233
6961
  {
7234
- "additionalProperties": false,
7235
- "properties": {
7236
- "exclude": {
7237
- "description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7238
- "items": {
7239
- "enum": [
7240
- "python_markdown_abbreviation",
7241
- "python_markdown_admonition",
7242
- "python_markdown_arithmatex",
7243
- "python_markdown_attribute_list",
7244
- "python_markdown_code_block",
7245
- "python_markdown_collapsible_admonition",
7246
- "python_markdown_tabs",
7247
- "python_markdown_footnote",
7248
- "python_markdown_footnote_marker",
7249
- "python_markdown_icon",
7250
- "python_markdown_image",
7251
- "python_markdown_inline_arithmatex",
7252
- "python_markdown_inline_code",
7253
- "python_markdown_link",
7254
- "python_markdown_reference_image",
7255
- "python_markdown_reference_template_image",
7256
- "python_markdown_reference_link",
7257
- "python_markdown_reference",
7258
- "python_markdown_reference_template",
7259
- "python_markdown_block_snippet",
7260
- "_cc_python_markdown_unknown_snippet",
7261
- "_cc_python_markdown_unknown_markdown_in_html"
7262
- ],
7263
- "type": "string"
7264
- },
7265
- "markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
7266
- "type": "array"
7267
- },
7268
- "include": {
7269
- "description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7270
- "items": {
7271
- "enum": [
7272
- "python_markdown_abbreviation",
7273
- "python_markdown_admonition",
7274
- "python_markdown_arithmatex",
7275
- "python_markdown_attribute_list",
7276
- "python_markdown_code_block",
7277
- "python_markdown_collapsible_admonition",
7278
- "python_markdown_tabs",
7279
- "python_markdown_footnote",
7280
- "python_markdown_footnote_marker",
7281
- "python_markdown_icon",
7282
- "python_markdown_image",
7283
- "python_markdown_inline_arithmatex",
7284
- "python_markdown_inline_code",
7285
- "python_markdown_link",
7286
- "python_markdown_reference_image",
7287
- "python_markdown_reference_template_image",
7288
- "python_markdown_reference_link",
7289
- "python_markdown_reference",
7290
- "python_markdown_reference_template",
7291
- "python_markdown_block_snippet",
7292
- "_cc_python_markdown_unknown_snippet",
7293
- "_cc_python_markdown_unknown_markdown_in_html"
7294
- ],
7295
- "type": "string"
7296
- },
7297
- "markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
7298
- "type": "array"
7299
- }
7300
- },
7301
- "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"
7302
6963
  }
7303
6964
  ],
7304
6965
  "description": "Default snippets for content using Python markdown extensions.",
@@ -7377,37 +7038,14 @@
7377
7038
  "type": "number"
7378
7039
  },
7379
7040
  "theme": {
7041
+ "$ref": "#/definitions/Theme",
7380
7042
  "default": "monokai",
7381
7043
  "description": "Changes the color scheme for syntax highlighting in the editor.",
7382
- "markdownDescription": "Changes the color scheme for syntax highlighting in the editor.",
7383
- "type": "string"
7044
+ "markdownDescription": "Changes the color scheme for syntax highlighting in the editor."
7384
7045
  }
7385
7046
  },
7386
7047
  "type": "object"
7387
7048
  },
7388
- "SsgKey": {
7389
- "enum": [
7390
- "hugo",
7391
- "jekyll",
7392
- "eleventy",
7393
- "astro",
7394
- "lume",
7395
- "mkdocs",
7396
- "nextjs",
7397
- "sveltekit",
7398
- "bridgetown",
7399
- "docusaurus",
7400
- "gatsby",
7401
- "hexo",
7402
- "nuxtjs",
7403
- "sphinx",
7404
- "static",
7405
- "other",
7406
- "legacy",
7407
- "unknown"
7408
- ],
7409
- "type": "string"
7410
- },
7411
7049
  "Structure": {
7412
7050
  "additionalProperties": false,
7413
7051
  "properties": {
@@ -7901,6 +7539,49 @@
7901
7539
  },
7902
7540
  "type": "object"
7903
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
+ },
7904
7585
  "Timezone": {
7905
7586
  "enum": [
7906
7587
  "Africa/Abidjan",