@cloudcannon/configuration-types 0.0.15 → 0.0.17
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.
- package/README.md +7 -37
- package/{build/cloudcannon-config.json → dist/cloudcannon-config.schema.json} +1056 -1208
- package/package.json +13 -14
- package/src/build-coupled.d.ts +6 -6
- package/src/configuration.d.ts +330 -244
- package/src/markdown.d.ts +98 -0
- package/build/cloudcannon-config-eleventy.json +0 -8734
- package/build/cloudcannon-config-hugo.json +0 -8736
- package/build/cloudcannon-config-jekyll.json +0 -8729
- package/build/cloudcannon-config-reader.json +0 -8775
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$
|
|
2
|
+
"$id": "https://schema.cloudcannon.com/cloudcannon-config.schema.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
+
"additionalProperties": false,
|
|
4
5
|
"definitions": {
|
|
5
6
|
"AddOption": {
|
|
6
7
|
"additionalProperties": false,
|
|
@@ -137,11 +138,6 @@
|
|
|
137
138
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
138
139
|
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
139
140
|
},
|
|
140
|
-
"preview": {
|
|
141
|
-
"$ref": "#/definitions/ObjectPreview",
|
|
142
|
-
"description": "The preview definition for changing the way data within an array input's items are previewed before being expanded. If the input has structures, the preview from the structure value is used instead.",
|
|
143
|
-
"markdownDescription": "The preview definition for changing the way data within an array input's items are previewed\nbefore being expanded. If the input has structures, the preview from the structure value is\nused instead."
|
|
144
|
-
},
|
|
145
141
|
"structures": {
|
|
146
142
|
"anyOf": [
|
|
147
143
|
{
|
|
@@ -234,11 +230,6 @@
|
|
|
234
230
|
"markdownDescription": "Optionally changes the text above this input.",
|
|
235
231
|
"type": "string"
|
|
236
232
|
},
|
|
237
|
-
"options": {
|
|
238
|
-
"$ref": "#/definitions/BaseInputOptions",
|
|
239
|
-
"description": "Options that are specific to this `type` of input.",
|
|
240
|
-
"markdownDescription": "Options that are specific to this `type` of input."
|
|
241
|
-
},
|
|
242
233
|
"type": {
|
|
243
234
|
"anyOf": [
|
|
244
235
|
{
|
|
@@ -252,17 +243,6 @@
|
|
|
252
243
|
},
|
|
253
244
|
"type": "object"
|
|
254
245
|
},
|
|
255
|
-
"BaseInputOptions": {
|
|
256
|
-
"additionalProperties": false,
|
|
257
|
-
"properties": {
|
|
258
|
-
"empty_type": {
|
|
259
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
260
|
-
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
261
|
-
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
262
|
-
}
|
|
263
|
-
},
|
|
264
|
-
"type": "object"
|
|
265
|
-
},
|
|
266
246
|
"BlockEditable": {
|
|
267
247
|
"additionalProperties": false,
|
|
268
248
|
"properties": {
|
|
@@ -583,9 +563,72 @@
|
|
|
583
563
|
"type": "string"
|
|
584
564
|
},
|
|
585
565
|
"options": {
|
|
586
|
-
"
|
|
566
|
+
"additionalProperties": false,
|
|
587
567
|
"description": "Options that are specific to this `type` of input.",
|
|
588
|
-
"markdownDescription": "Options that are specific to this `type` of input."
|
|
568
|
+
"markdownDescription": "Options that are specific to this `type` of input.",
|
|
569
|
+
"properties": {
|
|
570
|
+
"allow_empty": {
|
|
571
|
+
"default": true,
|
|
572
|
+
"description": "Provides an empty option alongside the options provided by values.",
|
|
573
|
+
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
574
|
+
"type": "boolean"
|
|
575
|
+
},
|
|
576
|
+
"empty_type": {
|
|
577
|
+
"$ref": "#/definitions/EmptyTypeText",
|
|
578
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
579
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
580
|
+
},
|
|
581
|
+
"picker_preview": {
|
|
582
|
+
"$ref": "#/definitions/Preview",
|
|
583
|
+
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
584
|
+
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
585
|
+
},
|
|
586
|
+
"picker_view": {
|
|
587
|
+
"description": "Controls how selectable options are rendered.",
|
|
588
|
+
"enum": [
|
|
589
|
+
"card",
|
|
590
|
+
"text",
|
|
591
|
+
"gallery",
|
|
592
|
+
"gallery-left"
|
|
593
|
+
],
|
|
594
|
+
"markdownDescription": "Controls how selectable options are rendered.",
|
|
595
|
+
"type": "string"
|
|
596
|
+
},
|
|
597
|
+
"preview": {
|
|
598
|
+
"$ref": "#/definitions/Preview",
|
|
599
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
600
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
601
|
+
},
|
|
602
|
+
"value_key": {
|
|
603
|
+
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
604
|
+
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
605
|
+
"type": "string"
|
|
606
|
+
},
|
|
607
|
+
"values": {
|
|
608
|
+
"anyOf": [
|
|
609
|
+
{
|
|
610
|
+
"type": "string"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"$ref": "#/definitions/SelectValues"
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
617
|
+
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
618
|
+
},
|
|
619
|
+
"view": {
|
|
620
|
+
"description": "Controls how selected items are rendered.",
|
|
621
|
+
"enum": [
|
|
622
|
+
"card",
|
|
623
|
+
"text",
|
|
624
|
+
"gallery",
|
|
625
|
+
"gallery-left"
|
|
626
|
+
],
|
|
627
|
+
"markdownDescription": "Controls how selected items are rendered.",
|
|
628
|
+
"type": "string"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"type": "object"
|
|
589
632
|
},
|
|
590
633
|
"type": {
|
|
591
634
|
"const": "choice",
|
|
@@ -597,38 +640,6 @@
|
|
|
597
640
|
],
|
|
598
641
|
"type": "object"
|
|
599
642
|
},
|
|
600
|
-
"ChoiceInputOptions": {
|
|
601
|
-
"additionalProperties": false,
|
|
602
|
-
"properties": {
|
|
603
|
-
"allow_empty": {
|
|
604
|
-
"default": true,
|
|
605
|
-
"description": "Provides an empty option alongside the options provided by values.",
|
|
606
|
-
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
607
|
-
"type": "boolean"
|
|
608
|
-
},
|
|
609
|
-
"empty_type": {
|
|
610
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
611
|
-
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
612
|
-
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
613
|
-
},
|
|
614
|
-
"preview": {
|
|
615
|
-
"$ref": "#/definitions/SelectPreview",
|
|
616
|
-
"description": "The preview definition for changing the way selected and available options are displayed.",
|
|
617
|
-
"markdownDescription": "The preview definition for changing the way selected and available options are displayed."
|
|
618
|
-
},
|
|
619
|
-
"value_key": {
|
|
620
|
-
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
621
|
-
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
622
|
-
"type": "string"
|
|
623
|
-
},
|
|
624
|
-
"values": {
|
|
625
|
-
"$ref": "#/definitions/SelectValues",
|
|
626
|
-
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
627
|
-
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
628
|
-
}
|
|
629
|
-
},
|
|
630
|
-
"type": "object"
|
|
631
|
-
},
|
|
632
643
|
"CodeInput": {
|
|
633
644
|
"additionalProperties": false,
|
|
634
645
|
"properties": {
|
|
@@ -786,7 +797,8 @@
|
|
|
786
797
|
"$ref": "#/definitions/EditorKey"
|
|
787
798
|
},
|
|
788
799
|
"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.",
|
|
789
|
-
"type": "array"
|
|
800
|
+
"type": "array",
|
|
801
|
+
"uniqueItems": true
|
|
790
802
|
},
|
|
791
803
|
"_inputs": {
|
|
792
804
|
"additionalProperties": {
|
|
@@ -1117,180 +1129,6 @@
|
|
|
1117
1129
|
},
|
|
1118
1130
|
"type": "object"
|
|
1119
1131
|
},
|
|
1120
|
-
"Configuration": {
|
|
1121
|
-
"additionalProperties": false,
|
|
1122
|
-
"properties": {
|
|
1123
|
-
"_array_structures": {
|
|
1124
|
-
"additionalProperties": {},
|
|
1125
|
-
"deprecated": "Use _structures instead.",
|
|
1126
|
-
"description": "Now known as _structures.",
|
|
1127
|
-
"markdownDescription": "Now known as _structures.",
|
|
1128
|
-
"type": "object"
|
|
1129
|
-
},
|
|
1130
|
-
"_comments": {
|
|
1131
|
-
"additionalProperties": {
|
|
1132
|
-
"type": "string"
|
|
1133
|
-
},
|
|
1134
|
-
"deprecated": "Use _inputs instead.",
|
|
1135
|
-
"description": "Now part of _inputs.*.comment.",
|
|
1136
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1137
|
-
"type": "object"
|
|
1138
|
-
},
|
|
1139
|
-
"_editables": {
|
|
1140
|
-
"$ref": "#/definitions/Editables",
|
|
1141
|
-
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
1142
|
-
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
1143
|
-
},
|
|
1144
|
-
"_enabled_editors": {
|
|
1145
|
-
"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.",
|
|
1146
|
-
"items": {
|
|
1147
|
-
"$ref": "#/definitions/EditorKey"
|
|
1148
|
-
},
|
|
1149
|
-
"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.",
|
|
1150
|
-
"type": "array"
|
|
1151
|
-
},
|
|
1152
|
-
"_inputs": {
|
|
1153
|
-
"additionalProperties": {
|
|
1154
|
-
"$ref": "#/definitions/Input"
|
|
1155
|
-
},
|
|
1156
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1157
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1158
|
-
"type": "object"
|
|
1159
|
-
},
|
|
1160
|
-
"_options": {
|
|
1161
|
-
"additionalProperties": {
|
|
1162
|
-
"additionalProperties": {},
|
|
1163
|
-
"type": "object"
|
|
1164
|
-
},
|
|
1165
|
-
"deprecated": "Use _inputs instead.",
|
|
1166
|
-
"description": "Now part of _inputs.*.options.",
|
|
1167
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
1168
|
-
"type": "object"
|
|
1169
|
-
},
|
|
1170
|
-
"_select_data": {
|
|
1171
|
-
"additionalProperties": {
|
|
1172
|
-
"$ref": "#/definitions/SelectValues"
|
|
1173
|
-
},
|
|
1174
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
1175
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
1176
|
-
"type": "object"
|
|
1177
|
-
},
|
|
1178
|
-
"_snippets": {
|
|
1179
|
-
"additionalProperties": {
|
|
1180
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1181
|
-
},
|
|
1182
|
-
"description": "Configuration for custom snippets.",
|
|
1183
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
1184
|
-
"type": "object"
|
|
1185
|
-
},
|
|
1186
|
-
"_snippets_definitions": {
|
|
1187
|
-
"additionalProperties": {
|
|
1188
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1189
|
-
},
|
|
1190
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1191
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1192
|
-
"type": "object"
|
|
1193
|
-
},
|
|
1194
|
-
"_snippets_imports": {
|
|
1195
|
-
"$ref": "#/definitions/SnippetsImports",
|
|
1196
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
1197
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
1198
|
-
},
|
|
1199
|
-
"_snippets_templates": {
|
|
1200
|
-
"additionalProperties": {
|
|
1201
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
1202
|
-
},
|
|
1203
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
1204
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
1205
|
-
"type": "object"
|
|
1206
|
-
},
|
|
1207
|
-
"_structures": {
|
|
1208
|
-
"additionalProperties": {
|
|
1209
|
-
"$ref": "#/definitions/Structure"
|
|
1210
|
-
},
|
|
1211
|
-
"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.",
|
|
1212
|
-
"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.",
|
|
1213
|
-
"type": "object"
|
|
1214
|
-
},
|
|
1215
|
-
"base_url": {
|
|
1216
|
-
"description": "The subpath where your output files are hosted.",
|
|
1217
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
1218
|
-
"type": "string"
|
|
1219
|
-
},
|
|
1220
|
-
"collection_groups": {
|
|
1221
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
1222
|
-
"items": {
|
|
1223
|
-
"$ref": "#/definitions/CollectionGroup"
|
|
1224
|
-
},
|
|
1225
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
1226
|
-
"type": "array"
|
|
1227
|
-
},
|
|
1228
|
-
"collections_config": {
|
|
1229
|
-
"additionalProperties": {
|
|
1230
|
-
"$ref": "#/definitions/CollectionConfig"
|
|
1231
|
-
},
|
|
1232
|
-
"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.",
|
|
1233
|
-
"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.",
|
|
1234
|
-
"type": "object"
|
|
1235
|
-
},
|
|
1236
|
-
"commit_templates": {
|
|
1237
|
-
"description": "Templates for commit messages when saving changes.",
|
|
1238
|
-
"items": {
|
|
1239
|
-
"$ref": "#/definitions/CommitTemplate"
|
|
1240
|
-
},
|
|
1241
|
-
"markdownDescription": "Templates for commit messages when saving changes.",
|
|
1242
|
-
"type": "array"
|
|
1243
|
-
},
|
|
1244
|
-
"data_config": {
|
|
1245
|
-
"additionalProperties": {
|
|
1246
|
-
"$ref": "#/definitions/DataConfigEntry"
|
|
1247
|
-
},
|
|
1248
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1249
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
1250
|
-
"type": "object"
|
|
1251
|
-
},
|
|
1252
|
-
"editor": {
|
|
1253
|
-
"$ref": "#/definitions/Editor",
|
|
1254
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
1255
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
1256
|
-
},
|
|
1257
|
-
"file_config": {
|
|
1258
|
-
"additionalProperties": {
|
|
1259
|
-
"$ref": "#/definitions/FileConfigEntry"
|
|
1260
|
-
},
|
|
1261
|
-
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1262
|
-
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
1263
|
-
"type": "object"
|
|
1264
|
-
},
|
|
1265
|
-
"markdown": {
|
|
1266
|
-
"$ref": "#/definitions/MarkdownSettings",
|
|
1267
|
-
"description": "Contains settings for various Markdown engines.",
|
|
1268
|
-
"markdownDescription": "Contains settings for various Markdown engines."
|
|
1269
|
-
},
|
|
1270
|
-
"paths": {
|
|
1271
|
-
"$ref": "#/definitions/Paths",
|
|
1272
|
-
"description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
|
|
1273
|
-
"markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
|
|
1274
|
-
},
|
|
1275
|
-
"source": {
|
|
1276
|
-
"description": "Base path to your site source files, relative to the root folder.",
|
|
1277
|
-
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
1278
|
-
"type": "string"
|
|
1279
|
-
},
|
|
1280
|
-
"source_editor": {
|
|
1281
|
-
"$ref": "#/definitions/SourceEditor",
|
|
1282
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
1283
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
1284
|
-
},
|
|
1285
|
-
"timezone": {
|
|
1286
|
-
"$ref": "#/definitions/Timezone",
|
|
1287
|
-
"default": "Etc/UTC",
|
|
1288
|
-
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
1289
|
-
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
1290
|
-
}
|
|
1291
|
-
},
|
|
1292
|
-
"type": "object"
|
|
1293
|
-
},
|
|
1294
1132
|
"Create": {
|
|
1295
1133
|
"additionalProperties": false,
|
|
1296
1134
|
"properties": {
|
|
@@ -1589,7 +1427,8 @@
|
|
|
1589
1427
|
"$ref": "#/definitions/EditorKey"
|
|
1590
1428
|
},
|
|
1591
1429
|
"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.",
|
|
1592
|
-
"type": "array"
|
|
1430
|
+
"type": "array",
|
|
1431
|
+
"uniqueItems": true
|
|
1593
1432
|
},
|
|
1594
1433
|
"_inputs": {
|
|
1595
1434
|
"additionalProperties": {
|
|
@@ -4298,362 +4137,28 @@
|
|
|
4298
4137
|
"type": "object"
|
|
4299
4138
|
},
|
|
4300
4139
|
"MarkdownAttributeElementOptions": {
|
|
4301
|
-
"additionalProperties":
|
|
4140
|
+
"additionalProperties": {
|
|
4141
|
+
"$ref": "#/definitions/AttributeListPosition"
|
|
4142
|
+
},
|
|
4302
4143
|
"properties": {
|
|
4303
|
-
"a": {
|
|
4304
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4305
|
-
},
|
|
4306
|
-
"abbr": {
|
|
4307
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4308
|
-
},
|
|
4309
|
-
"address": {
|
|
4310
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4311
|
-
},
|
|
4312
|
-
"area": {
|
|
4313
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4314
|
-
},
|
|
4315
|
-
"article": {
|
|
4316
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4317
|
-
},
|
|
4318
|
-
"aside": {
|
|
4319
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4320
|
-
},
|
|
4321
|
-
"audio": {
|
|
4322
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4323
|
-
},
|
|
4324
|
-
"b": {
|
|
4325
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4326
|
-
},
|
|
4327
|
-
"base": {
|
|
4328
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4329
|
-
},
|
|
4330
|
-
"bdi": {
|
|
4331
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4332
|
-
},
|
|
4333
|
-
"bdo": {
|
|
4334
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4335
|
-
},
|
|
4336
4144
|
"block": {
|
|
4337
4145
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4338
4146
|
},
|
|
4339
|
-
"
|
|
4340
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4341
|
-
},
|
|
4342
|
-
"body": {
|
|
4343
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4344
|
-
},
|
|
4345
|
-
"br": {
|
|
4346
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4347
|
-
},
|
|
4348
|
-
"button": {
|
|
4349
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4350
|
-
},
|
|
4351
|
-
"canvas": {
|
|
4352
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4353
|
-
},
|
|
4354
|
-
"caption": {
|
|
4355
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4356
|
-
},
|
|
4357
|
-
"cite": {
|
|
4358
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4359
|
-
},
|
|
4360
|
-
"code": {
|
|
4361
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4362
|
-
},
|
|
4363
|
-
"col": {
|
|
4364
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4365
|
-
},
|
|
4366
|
-
"colgroup": {
|
|
4367
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4368
|
-
},
|
|
4369
|
-
"data": {
|
|
4370
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4371
|
-
},
|
|
4372
|
-
"datalist": {
|
|
4373
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4374
|
-
},
|
|
4375
|
-
"dd": {
|
|
4376
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4377
|
-
},
|
|
4378
|
-
"del": {
|
|
4379
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4380
|
-
},
|
|
4381
|
-
"details": {
|
|
4382
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4383
|
-
},
|
|
4384
|
-
"dfn": {
|
|
4147
|
+
"inline": {
|
|
4385
4148
|
"$ref": "#/definitions/AttributeListPosition"
|
|
4386
|
-
}
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
"
|
|
4394
|
-
"
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
"em": {
|
|
4400
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4401
|
-
},
|
|
4402
|
-
"embed": {
|
|
4403
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4404
|
-
},
|
|
4405
|
-
"fieldset": {
|
|
4406
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4407
|
-
},
|
|
4408
|
-
"figcaption": {
|
|
4409
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4410
|
-
},
|
|
4411
|
-
"figure": {
|
|
4412
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4413
|
-
},
|
|
4414
|
-
"footer": {
|
|
4415
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4416
|
-
},
|
|
4417
|
-
"form": {
|
|
4418
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4419
|
-
},
|
|
4420
|
-
"h1": {
|
|
4421
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4422
|
-
},
|
|
4423
|
-
"h2": {
|
|
4424
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4425
|
-
},
|
|
4426
|
-
"h3": {
|
|
4427
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4428
|
-
},
|
|
4429
|
-
"h4": {
|
|
4430
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4431
|
-
},
|
|
4432
|
-
"h5": {
|
|
4433
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4434
|
-
},
|
|
4435
|
-
"h6": {
|
|
4436
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4437
|
-
},
|
|
4438
|
-
"head": {
|
|
4439
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4440
|
-
},
|
|
4441
|
-
"header": {
|
|
4442
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4443
|
-
},
|
|
4444
|
-
"hgroup": {
|
|
4445
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4446
|
-
},
|
|
4447
|
-
"hr": {
|
|
4448
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4449
|
-
},
|
|
4450
|
-
"html": {
|
|
4451
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4452
|
-
},
|
|
4453
|
-
"i": {
|
|
4454
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4455
|
-
},
|
|
4456
|
-
"iframe": {
|
|
4457
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4458
|
-
},
|
|
4459
|
-
"img": {
|
|
4460
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4461
|
-
},
|
|
4462
|
-
"inline": {
|
|
4463
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4464
|
-
},
|
|
4465
|
-
"input": {
|
|
4466
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4467
|
-
},
|
|
4468
|
-
"ins": {
|
|
4469
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4470
|
-
},
|
|
4471
|
-
"kbd": {
|
|
4472
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4473
|
-
},
|
|
4474
|
-
"label": {
|
|
4475
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4476
|
-
},
|
|
4477
|
-
"legend": {
|
|
4478
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4479
|
-
},
|
|
4480
|
-
"li": {
|
|
4481
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4482
|
-
},
|
|
4483
|
-
"link": {
|
|
4484
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4485
|
-
},
|
|
4486
|
-
"main": {
|
|
4487
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4488
|
-
},
|
|
4489
|
-
"map": {
|
|
4490
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4491
|
-
},
|
|
4492
|
-
"mark": {
|
|
4493
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4494
|
-
},
|
|
4495
|
-
"menu": {
|
|
4496
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4497
|
-
},
|
|
4498
|
-
"meta": {
|
|
4499
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4500
|
-
},
|
|
4501
|
-
"meter": {
|
|
4502
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4503
|
-
},
|
|
4504
|
-
"nav": {
|
|
4505
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4506
|
-
},
|
|
4507
|
-
"noscript": {
|
|
4508
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4509
|
-
},
|
|
4510
|
-
"object": {
|
|
4511
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4512
|
-
},
|
|
4513
|
-
"ol": {
|
|
4514
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4515
|
-
},
|
|
4516
|
-
"optgroup": {
|
|
4517
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4518
|
-
},
|
|
4519
|
-
"option": {
|
|
4520
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4521
|
-
},
|
|
4522
|
-
"output": {
|
|
4523
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4524
|
-
},
|
|
4525
|
-
"p": {
|
|
4526
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4527
|
-
},
|
|
4528
|
-
"picture": {
|
|
4529
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4530
|
-
},
|
|
4531
|
-
"pre": {
|
|
4532
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4533
|
-
},
|
|
4534
|
-
"progress": {
|
|
4535
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4536
|
-
},
|
|
4537
|
-
"q": {
|
|
4538
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4539
|
-
},
|
|
4540
|
-
"rp": {
|
|
4541
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4542
|
-
},
|
|
4543
|
-
"rt": {
|
|
4544
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4545
|
-
},
|
|
4546
|
-
"ruby": {
|
|
4547
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4548
|
-
},
|
|
4549
|
-
"s": {
|
|
4550
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4551
|
-
},
|
|
4552
|
-
"samp": {
|
|
4553
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4554
|
-
},
|
|
4555
|
-
"script": {
|
|
4556
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4557
|
-
},
|
|
4558
|
-
"search": {
|
|
4559
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4560
|
-
},
|
|
4561
|
-
"section": {
|
|
4562
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4563
|
-
},
|
|
4564
|
-
"select": {
|
|
4565
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4566
|
-
},
|
|
4567
|
-
"slot": {
|
|
4568
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4569
|
-
},
|
|
4570
|
-
"small": {
|
|
4571
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4572
|
-
},
|
|
4573
|
-
"source": {
|
|
4574
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4575
|
-
},
|
|
4576
|
-
"span": {
|
|
4577
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4578
|
-
},
|
|
4579
|
-
"strong": {
|
|
4580
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4581
|
-
},
|
|
4582
|
-
"style": {
|
|
4583
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4584
|
-
},
|
|
4585
|
-
"sub": {
|
|
4586
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4587
|
-
},
|
|
4588
|
-
"summary": {
|
|
4589
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4590
|
-
},
|
|
4591
|
-
"sup": {
|
|
4592
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4593
|
-
},
|
|
4594
|
-
"table": {
|
|
4595
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4596
|
-
},
|
|
4597
|
-
"tbody": {
|
|
4598
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4599
|
-
},
|
|
4600
|
-
"td": {
|
|
4601
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4602
|
-
},
|
|
4603
|
-
"template": {
|
|
4604
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4605
|
-
},
|
|
4606
|
-
"textarea": {
|
|
4607
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4608
|
-
},
|
|
4609
|
-
"tfoot": {
|
|
4610
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4611
|
-
},
|
|
4612
|
-
"th": {
|
|
4613
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4614
|
-
},
|
|
4615
|
-
"thead": {
|
|
4616
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4617
|
-
},
|
|
4618
|
-
"time": {
|
|
4619
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4620
|
-
},
|
|
4621
|
-
"title": {
|
|
4622
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4623
|
-
},
|
|
4624
|
-
"tr": {
|
|
4625
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4626
|
-
},
|
|
4627
|
-
"track": {
|
|
4628
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4629
|
-
},
|
|
4630
|
-
"u": {
|
|
4631
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4632
|
-
},
|
|
4633
|
-
"ul": {
|
|
4634
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4635
|
-
},
|
|
4636
|
-
"var": {
|
|
4637
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4638
|
-
},
|
|
4639
|
-
"video": {
|
|
4640
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4641
|
-
},
|
|
4642
|
-
"wbr": {
|
|
4643
|
-
"$ref": "#/definitions/AttributeListPosition"
|
|
4644
|
-
}
|
|
4645
|
-
},
|
|
4646
|
-
"type": "object"
|
|
4647
|
-
},
|
|
4648
|
-
"MarkdownSettings": {
|
|
4649
|
-
"additionalProperties": false,
|
|
4650
|
-
"properties": {
|
|
4651
|
-
"engine": {
|
|
4652
|
-
"enum": [
|
|
4653
|
-
"commonmark",
|
|
4654
|
-
"kramdown"
|
|
4655
|
-
],
|
|
4656
|
-
"type": "string"
|
|
4149
|
+
}
|
|
4150
|
+
},
|
|
4151
|
+
"type": "object"
|
|
4152
|
+
},
|
|
4153
|
+
"MarkdownSettings": {
|
|
4154
|
+
"additionalProperties": false,
|
|
4155
|
+
"properties": {
|
|
4156
|
+
"engine": {
|
|
4157
|
+
"enum": [
|
|
4158
|
+
"commonmark",
|
|
4159
|
+
"kramdown"
|
|
4160
|
+
],
|
|
4161
|
+
"type": "string"
|
|
4657
4162
|
},
|
|
4658
4163
|
"options": {
|
|
4659
4164
|
"additionalProperties": false,
|
|
@@ -5272,9 +4777,72 @@
|
|
|
5272
4777
|
"type": "string"
|
|
5273
4778
|
},
|
|
5274
4779
|
"options": {
|
|
5275
|
-
"
|
|
4780
|
+
"additionalProperties": false,
|
|
5276
4781
|
"description": "Options that are specific to this `type` of input.",
|
|
5277
|
-
"markdownDescription": "Options that are specific to this `type` of input."
|
|
4782
|
+
"markdownDescription": "Options that are specific to this `type` of input.",
|
|
4783
|
+
"properties": {
|
|
4784
|
+
"allow_empty": {
|
|
4785
|
+
"default": true,
|
|
4786
|
+
"description": "Provides an empty option alongside the options provided by values.",
|
|
4787
|
+
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
4788
|
+
"type": "boolean"
|
|
4789
|
+
},
|
|
4790
|
+
"empty_type": {
|
|
4791
|
+
"$ref": "#/definitions/EmptyTypeArray",
|
|
4792
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4793
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
4794
|
+
},
|
|
4795
|
+
"picker_preview": {
|
|
4796
|
+
"$ref": "#/definitions/Preview",
|
|
4797
|
+
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
4798
|
+
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
4799
|
+
},
|
|
4800
|
+
"picker_view": {
|
|
4801
|
+
"description": "Controls how selectable options are rendered.",
|
|
4802
|
+
"enum": [
|
|
4803
|
+
"card",
|
|
4804
|
+
"text",
|
|
4805
|
+
"gallery",
|
|
4806
|
+
"gallery-left"
|
|
4807
|
+
],
|
|
4808
|
+
"markdownDescription": "Controls how selectable options are rendered.",
|
|
4809
|
+
"type": "string"
|
|
4810
|
+
},
|
|
4811
|
+
"preview": {
|
|
4812
|
+
"$ref": "#/definitions/Preview",
|
|
4813
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
4814
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
4815
|
+
},
|
|
4816
|
+
"value_key": {
|
|
4817
|
+
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
4818
|
+
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
4819
|
+
"type": "string"
|
|
4820
|
+
},
|
|
4821
|
+
"values": {
|
|
4822
|
+
"anyOf": [
|
|
4823
|
+
{
|
|
4824
|
+
"type": "string"
|
|
4825
|
+
},
|
|
4826
|
+
{
|
|
4827
|
+
"$ref": "#/definitions/SelectValues"
|
|
4828
|
+
}
|
|
4829
|
+
],
|
|
4830
|
+
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
4831
|
+
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
4832
|
+
},
|
|
4833
|
+
"view": {
|
|
4834
|
+
"description": "Controls how selected items are rendered.",
|
|
4835
|
+
"enum": [
|
|
4836
|
+
"card",
|
|
4837
|
+
"text",
|
|
4838
|
+
"gallery",
|
|
4839
|
+
"gallery-left"
|
|
4840
|
+
],
|
|
4841
|
+
"markdownDescription": "Controls how selected items are rendered.",
|
|
4842
|
+
"type": "string"
|
|
4843
|
+
}
|
|
4844
|
+
},
|
|
4845
|
+
"type": "object"
|
|
5278
4846
|
},
|
|
5279
4847
|
"type": {
|
|
5280
4848
|
"const": "multichoice",
|
|
@@ -5286,38 +4854,6 @@
|
|
|
5286
4854
|
],
|
|
5287
4855
|
"type": "object"
|
|
5288
4856
|
},
|
|
5289
|
-
"MultichoiceInputOptions": {
|
|
5290
|
-
"additionalProperties": false,
|
|
5291
|
-
"properties": {
|
|
5292
|
-
"allow_empty": {
|
|
5293
|
-
"default": true,
|
|
5294
|
-
"description": "Provides an empty option alongside the options provided by values.",
|
|
5295
|
-
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
5296
|
-
"type": "boolean"
|
|
5297
|
-
},
|
|
5298
|
-
"empty_type": {
|
|
5299
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
5300
|
-
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5301
|
-
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
5302
|
-
},
|
|
5303
|
-
"preview": {
|
|
5304
|
-
"$ref": "#/definitions/SelectPreview",
|
|
5305
|
-
"description": "The preview definition for changing the way selected and available options are displayed.",
|
|
5306
|
-
"markdownDescription": "The preview definition for changing the way selected and available options are displayed."
|
|
5307
|
-
},
|
|
5308
|
-
"value_key": {
|
|
5309
|
-
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
5310
|
-
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
5311
|
-
"type": "string"
|
|
5312
|
-
},
|
|
5313
|
-
"values": {
|
|
5314
|
-
"$ref": "#/definitions/SelectValues",
|
|
5315
|
-
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
5316
|
-
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
5317
|
-
}
|
|
5318
|
-
},
|
|
5319
|
-
"type": "object"
|
|
5320
|
-
},
|
|
5321
4857
|
"MultiselectInput": {
|
|
5322
4858
|
"additionalProperties": false,
|
|
5323
4859
|
"properties": {
|
|
@@ -5385,51 +4921,87 @@
|
|
|
5385
4921
|
"type": "string"
|
|
5386
4922
|
},
|
|
5387
4923
|
"options": {
|
|
5388
|
-
"
|
|
4924
|
+
"additionalProperties": false,
|
|
5389
4925
|
"description": "Options that are specific to this `type` of input.",
|
|
5390
|
-
"markdownDescription": "Options that are specific to this `type` of input."
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
4926
|
+
"markdownDescription": "Options that are specific to this `type` of input.",
|
|
4927
|
+
"properties": {
|
|
4928
|
+
"allow_create": {
|
|
4929
|
+
"default": false,
|
|
4930
|
+
"description": "Allows new text values to be created at edit time.",
|
|
4931
|
+
"markdownDescription": "Allows new text values to be created at edit time.",
|
|
4932
|
+
"type": "boolean"
|
|
4933
|
+
},
|
|
4934
|
+
"allow_empty": {
|
|
4935
|
+
"default": true,
|
|
4936
|
+
"description": "Provides an empty option alongside the options provided by values.",
|
|
4937
|
+
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
4938
|
+
"type": "boolean"
|
|
4939
|
+
},
|
|
4940
|
+
"empty_type": {
|
|
4941
|
+
"$ref": "#/definitions/EmptyTypeArray",
|
|
4942
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4943
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
4944
|
+
},
|
|
4945
|
+
"picker_preview": {
|
|
4946
|
+
"$ref": "#/definitions/Preview",
|
|
4947
|
+
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
4948
|
+
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
4949
|
+
},
|
|
4950
|
+
"picker_view": {
|
|
4951
|
+
"description": "Controls how selectable options are rendered.",
|
|
4952
|
+
"enum": [
|
|
4953
|
+
"card",
|
|
4954
|
+
"text",
|
|
4955
|
+
"gallery",
|
|
4956
|
+
"gallery-left"
|
|
4957
|
+
],
|
|
4958
|
+
"markdownDescription": "Controls how selectable options are rendered.",
|
|
4959
|
+
"type": "string"
|
|
4960
|
+
},
|
|
4961
|
+
"preview": {
|
|
4962
|
+
"$ref": "#/definitions/Preview",
|
|
4963
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
4964
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
4965
|
+
},
|
|
4966
|
+
"value_key": {
|
|
4967
|
+
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
4968
|
+
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
4969
|
+
"type": "string"
|
|
4970
|
+
},
|
|
4971
|
+
"values": {
|
|
4972
|
+
"anyOf": [
|
|
4973
|
+
{
|
|
4974
|
+
"type": "string"
|
|
4975
|
+
},
|
|
4976
|
+
{
|
|
4977
|
+
"$ref": "#/definitions/SelectValues"
|
|
4978
|
+
}
|
|
4979
|
+
],
|
|
4980
|
+
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
4981
|
+
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
4982
|
+
},
|
|
4983
|
+
"view": {
|
|
4984
|
+
"description": "Controls how selected items are rendered.",
|
|
4985
|
+
"enum": [
|
|
4986
|
+
"card",
|
|
4987
|
+
"text",
|
|
4988
|
+
"gallery",
|
|
4989
|
+
"gallery-left"
|
|
4990
|
+
],
|
|
4991
|
+
"markdownDescription": "Controls how selected items are rendered.",
|
|
4992
|
+
"type": "string"
|
|
4993
|
+
}
|
|
4994
|
+
},
|
|
4995
|
+
"type": "object"
|
|
5421
4996
|
},
|
|
5422
|
-
"
|
|
5423
|
-
"
|
|
5424
|
-
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
4997
|
+
"type": {
|
|
4998
|
+
"const": "multiselect",
|
|
5425
4999
|
"type": "string"
|
|
5426
|
-
},
|
|
5427
|
-
"values": {
|
|
5428
|
-
"$ref": "#/definitions/SelectValues",
|
|
5429
|
-
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
5430
|
-
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
5431
5000
|
}
|
|
5432
5001
|
},
|
|
5002
|
+
"required": [
|
|
5003
|
+
"type"
|
|
5004
|
+
],
|
|
5433
5005
|
"type": "object"
|
|
5434
5006
|
},
|
|
5435
5007
|
"NumberInput": {
|
|
@@ -5710,9 +5282,9 @@
|
|
|
5710
5282
|
"type": "boolean"
|
|
5711
5283
|
},
|
|
5712
5284
|
"preview": {
|
|
5713
|
-
"$ref": "#/definitions/
|
|
5714
|
-
"description": "
|
|
5715
|
-
"markdownDescription": "
|
|
5285
|
+
"$ref": "#/definitions/Preview",
|
|
5286
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
5287
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
5716
5288
|
},
|
|
5717
5289
|
"structures": {
|
|
5718
5290
|
"anyOf": [
|
|
@@ -5735,32 +5307,16 @@
|
|
|
5735
5307
|
],
|
|
5736
5308
|
"markdownDescription": "Changes the appearance and behavior of the input.",
|
|
5737
5309
|
"type": "string"
|
|
5738
|
-
}
|
|
5739
|
-
},
|
|
5740
|
-
"type": "object"
|
|
5741
|
-
},
|
|
5742
|
-
"ObjectPreview": {
|
|
5743
|
-
"additionalProperties": false,
|
|
5744
|
-
"properties": {
|
|
5745
|
-
"icon": {
|
|
5746
|
-
"$ref": "#/definitions/PreviewEntry",
|
|
5747
|
-
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
5748
|
-
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
5749
5310
|
},
|
|
5750
|
-
"
|
|
5751
|
-
"
|
|
5752
|
-
"
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
"
|
|
5758
|
-
"
|
|
5759
|
-
},
|
|
5760
|
-
"text": {
|
|
5761
|
-
"$ref": "#/definitions/PreviewEntry",
|
|
5762
|
-
"description": "Controls the main text shown per item.",
|
|
5763
|
-
"markdownDescription": "Controls the main text shown per item."
|
|
5311
|
+
"view": {
|
|
5312
|
+
"description": "Controls how object previews are rendered.",
|
|
5313
|
+
"enum": [
|
|
5314
|
+
"card",
|
|
5315
|
+
"gallery",
|
|
5316
|
+
"gallery-left"
|
|
5317
|
+
],
|
|
5318
|
+
"markdownDescription": "Controls how object previews are rendered.",
|
|
5319
|
+
"type": "string"
|
|
5764
5320
|
}
|
|
5765
5321
|
},
|
|
5766
5322
|
"type": "object"
|
|
@@ -6450,7 +6006,8 @@
|
|
|
6450
6006
|
"$ref": "#/definitions/EditorKey"
|
|
6451
6007
|
},
|
|
6452
6008
|
"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.",
|
|
6453
|
-
"type": "array"
|
|
6009
|
+
"type": "array",
|
|
6010
|
+
"uniqueItems": true
|
|
6454
6011
|
},
|
|
6455
6012
|
"_inputs": {
|
|
6456
6013
|
"additionalProperties": {
|
|
@@ -6492,16 +6049,14 @@
|
|
|
6492
6049
|
"markdownDescription": "Controls where new files are saved."
|
|
6493
6050
|
},
|
|
6494
6051
|
"hide_extra_inputs": {
|
|
6495
|
-
"
|
|
6496
|
-
"
|
|
6497
|
-
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true.",
|
|
6052
|
+
"description": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults to false.",
|
|
6053
|
+
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults\nto false.",
|
|
6498
6054
|
"type": "boolean"
|
|
6499
6055
|
},
|
|
6500
6056
|
"icon": {
|
|
6501
6057
|
"$ref": "#/definitions/Icon",
|
|
6502
|
-
"
|
|
6503
|
-
"
|
|
6504
|
-
"markdownDescription": "Displayed in the add menu when creating new files; also used as the icon for collection files\nif no other preview is found."
|
|
6058
|
+
"description": "Displayed in the add menu when creating new files; also used as the icon for collection files if no other preview is found. Defaults to notes.",
|
|
6059
|
+
"markdownDescription": "Displayed in the add menu when creating new files; also used as the icon for collection files\nif no other preview is found. Defaults to notes."
|
|
6505
6060
|
},
|
|
6506
6061
|
"name": {
|
|
6507
6062
|
"description": "Displayed in the add menu when creating new files. Defaults to a formatted version of the key.",
|
|
@@ -6524,21 +6079,18 @@
|
|
|
6524
6079
|
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
6525
6080
|
},
|
|
6526
6081
|
"remove_empty_inputs": {
|
|
6527
|
-
"
|
|
6528
|
-
"
|
|
6529
|
-
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be\navailable for editing again, provided they are in the matching schema/structure.",
|
|
6082
|
+
"description": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure. Defaults to false.",
|
|
6083
|
+
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be\navailable for editing again, provided they are in the matching schema/structure. Defaults to\nfalse.",
|
|
6530
6084
|
"type": "boolean"
|
|
6531
6085
|
},
|
|
6532
6086
|
"remove_extra_inputs": {
|
|
6533
|
-
"
|
|
6534
|
-
"
|
|
6535
|
-
"markdownDescription": "If checked, extra inputs are removed when editing.",
|
|
6087
|
+
"description": "If checked, extra inputs are removed when editing. Defaults to true.",
|
|
6088
|
+
"markdownDescription": "If checked, extra inputs are removed when editing. Defaults to true.",
|
|
6536
6089
|
"type": "boolean"
|
|
6537
6090
|
},
|
|
6538
6091
|
"reorder_inputs": {
|
|
6539
|
-
"
|
|
6540
|
-
"
|
|
6541
|
-
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected\ninputs, unless `remove_extra_inputs` is true.",
|
|
6092
|
+
"description": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true. Defaults to true.",
|
|
6093
|
+
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected\ninputs, unless `remove_extra_inputs` is true. Defaults to true.",
|
|
6542
6094
|
"type": "boolean"
|
|
6543
6095
|
}
|
|
6544
6096
|
},
|
|
@@ -6614,9 +6166,78 @@
|
|
|
6614
6166
|
"type": "string"
|
|
6615
6167
|
},
|
|
6616
6168
|
"options": {
|
|
6617
|
-
"
|
|
6169
|
+
"additionalProperties": false,
|
|
6618
6170
|
"description": "Options that are specific to this `type` of input.",
|
|
6619
|
-
"markdownDescription": "Options that are specific to this `type` of input."
|
|
6171
|
+
"markdownDescription": "Options that are specific to this `type` of input.",
|
|
6172
|
+
"properties": {
|
|
6173
|
+
"allow_create": {
|
|
6174
|
+
"default": false,
|
|
6175
|
+
"description": "Allows new text values to be created at edit time.",
|
|
6176
|
+
"markdownDescription": "Allows new text values to be created at edit time.",
|
|
6177
|
+
"type": "boolean"
|
|
6178
|
+
},
|
|
6179
|
+
"allow_empty": {
|
|
6180
|
+
"default": true,
|
|
6181
|
+
"description": "Provides an empty option alongside the options provided by values.",
|
|
6182
|
+
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
6183
|
+
"type": "boolean"
|
|
6184
|
+
},
|
|
6185
|
+
"empty_type": {
|
|
6186
|
+
"$ref": "#/definitions/EmptyTypeText",
|
|
6187
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
6188
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
6189
|
+
},
|
|
6190
|
+
"picker_preview": {
|
|
6191
|
+
"$ref": "#/definitions/Preview",
|
|
6192
|
+
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
6193
|
+
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
6194
|
+
},
|
|
6195
|
+
"picker_view": {
|
|
6196
|
+
"description": "Controls how selectable options are rendered.",
|
|
6197
|
+
"enum": [
|
|
6198
|
+
"card",
|
|
6199
|
+
"text",
|
|
6200
|
+
"gallery",
|
|
6201
|
+
"gallery-left"
|
|
6202
|
+
],
|
|
6203
|
+
"markdownDescription": "Controls how selectable options are rendered.",
|
|
6204
|
+
"type": "string"
|
|
6205
|
+
},
|
|
6206
|
+
"preview": {
|
|
6207
|
+
"$ref": "#/definitions/Preview",
|
|
6208
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
6209
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
6210
|
+
},
|
|
6211
|
+
"value_key": {
|
|
6212
|
+
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
6213
|
+
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
6214
|
+
"type": "string"
|
|
6215
|
+
},
|
|
6216
|
+
"values": {
|
|
6217
|
+
"anyOf": [
|
|
6218
|
+
{
|
|
6219
|
+
"type": "string"
|
|
6220
|
+
},
|
|
6221
|
+
{
|
|
6222
|
+
"$ref": "#/definitions/SelectValues"
|
|
6223
|
+
}
|
|
6224
|
+
],
|
|
6225
|
+
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
6226
|
+
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
6227
|
+
},
|
|
6228
|
+
"view": {
|
|
6229
|
+
"description": "Controls how selected items are rendered.",
|
|
6230
|
+
"enum": [
|
|
6231
|
+
"card",
|
|
6232
|
+
"text",
|
|
6233
|
+
"gallery",
|
|
6234
|
+
"gallery-left"
|
|
6235
|
+
],
|
|
6236
|
+
"markdownDescription": "Controls how selected items are rendered.",
|
|
6237
|
+
"type": "string"
|
|
6238
|
+
}
|
|
6239
|
+
},
|
|
6240
|
+
"type": "object"
|
|
6620
6241
|
},
|
|
6621
6242
|
"type": {
|
|
6622
6243
|
"const": "select",
|
|
@@ -6628,60 +6249,8 @@
|
|
|
6628
6249
|
],
|
|
6629
6250
|
"type": "object"
|
|
6630
6251
|
},
|
|
6631
|
-
"SelectInputOptions": {
|
|
6632
|
-
"additionalProperties": false,
|
|
6633
|
-
"properties": {
|
|
6634
|
-
"allow_create": {
|
|
6635
|
-
"default": false,
|
|
6636
|
-
"description": "Allows new text values to be created at edit time.",
|
|
6637
|
-
"markdownDescription": "Allows new text values to be created at edit time.",
|
|
6638
|
-
"type": "boolean"
|
|
6639
|
-
},
|
|
6640
|
-
"allow_empty": {
|
|
6641
|
-
"default": true,
|
|
6642
|
-
"description": "Provides an empty option alongside the options provided by values.",
|
|
6643
|
-
"markdownDescription": "Provides an empty option alongside the options provided by values.",
|
|
6644
|
-
"type": "boolean"
|
|
6645
|
-
},
|
|
6646
|
-
"empty_type": {
|
|
6647
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
6648
|
-
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
6649
|
-
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
6650
|
-
},
|
|
6651
|
-
"value_key": {
|
|
6652
|
-
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
6653
|
-
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how\nthe input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\",\n\"title\", then \"name\". Has no effect unless values is an array of objects, the key is used\ninstead for objects, and the value itself is used for primitive types.",
|
|
6654
|
-
"type": "string"
|
|
6655
|
-
},
|
|
6656
|
-
"values": {
|
|
6657
|
-
"$ref": "#/definitions/SelectValues",
|
|
6658
|
-
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
6659
|
-
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the\nnaming convention (e.g. colors or my_colors for data set colors)."
|
|
6660
|
-
}
|
|
6661
|
-
},
|
|
6662
|
-
"type": "object"
|
|
6663
|
-
},
|
|
6664
|
-
"SelectPreview": {
|
|
6665
|
-
"additionalProperties": false,
|
|
6666
|
-
"properties": {
|
|
6667
|
-
"icon": {
|
|
6668
|
-
"$ref": "#/definitions/PreviewEntry",
|
|
6669
|
-
"description": "Controls the icon shown per item. Must result in a Material Icon name.",
|
|
6670
|
-
"markdownDescription": "Controls the icon shown per item. Must result in a Material Icon name."
|
|
6671
|
-
},
|
|
6672
|
-
"text": {
|
|
6673
|
-
"$ref": "#/definitions/PreviewEntry",
|
|
6674
|
-
"description": "Controls the main text shown per item.",
|
|
6675
|
-
"markdownDescription": "Controls the main text shown per item."
|
|
6676
|
-
}
|
|
6677
|
-
},
|
|
6678
|
-
"type": "object"
|
|
6679
|
-
},
|
|
6680
6252
|
"SelectValues": {
|
|
6681
6253
|
"anyOf": [
|
|
6682
|
-
{
|
|
6683
|
-
"type": "string"
|
|
6684
|
-
},
|
|
6685
6254
|
{
|
|
6686
6255
|
"items": {
|
|
6687
6256
|
"type": "string"
|
|
@@ -6689,441 +6258,107 @@
|
|
|
6689
6258
|
"type": "array"
|
|
6690
6259
|
},
|
|
6691
6260
|
{
|
|
6692
|
-
"additionalProperties": {
|
|
6693
|
-
"type": "string"
|
|
6694
|
-
},
|
|
6695
|
-
"type": "object"
|
|
6696
|
-
},
|
|
6697
|
-
{
|
|
6698
|
-
"additionalProperties": {
|
|
6699
|
-
"type": "object"
|
|
6700
|
-
},
|
|
6701
|
-
"type": "object"
|
|
6702
|
-
}
|
|
6703
|
-
]
|
|
6704
|
-
},
|
|
6705
|
-
"SnippetConfig": {
|
|
6706
|
-
"additionalProperties": false,
|
|
6707
|
-
"properties": {
|
|
6708
|
-
"_inputs": {
|
|
6709
|
-
"additionalProperties": {
|
|
6710
|
-
"$ref": "#/definitions/Input"
|
|
6711
|
-
},
|
|
6712
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
6713
|
-
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
6714
|
-
"type": "object"
|
|
6715
|
-
},
|
|
6716
|
-
"_select_data": {
|
|
6717
|
-
"additionalProperties": {
|
|
6718
|
-
"$ref": "#/definitions/SelectValues"
|
|
6719
|
-
},
|
|
6720
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
6721
|
-
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
6722
|
-
"type": "object"
|
|
6723
|
-
},
|
|
6724
|
-
"_structures": {
|
|
6725
|
-
"additionalProperties": {
|
|
6726
|
-
"$ref": "#/definitions/Structure"
|
|
6727
|
-
},
|
|
6728
|
-
"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.",
|
|
6729
|
-
"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.",
|
|
6730
|
-
"type": "object"
|
|
6731
|
-
},
|
|
6732
|
-
"alternate_formats": {
|
|
6733
|
-
"description": "Alternate configurations for this snippet.",
|
|
6734
|
-
"items": {
|
|
6735
|
-
"$ref": "#/definitions/SnippetConfig"
|
|
6736
|
-
},
|
|
6737
|
-
"markdownDescription": "Alternate configurations for this snippet.",
|
|
6738
|
-
"type": "array"
|
|
6739
|
-
},
|
|
6740
|
-
"definitions": {
|
|
6741
|
-
"description": "The variables required for the selected template.",
|
|
6742
|
-
"markdownDescription": "The variables required for the selected template.",
|
|
6743
|
-
"type": "object"
|
|
6744
|
-
},
|
|
6745
|
-
"inline": {
|
|
6746
|
-
"description": "Whether this snippet can appear inline (within a sentence). Defaults to false, which will treat this snippet as a block-level element in the content editor.",
|
|
6747
|
-
"markdownDescription": "Whether this snippet can appear inline (within a sentence). Defaults to false, which will treat\nthis snippet as a block-level element in the content editor.",
|
|
6748
|
-
"type": "boolean"
|
|
6749
|
-
},
|
|
6750
|
-
"params": {
|
|
6751
|
-
"description": "The parameters of this snippet.",
|
|
6752
|
-
"markdownDescription": "The parameters of this snippet.",
|
|
6753
|
-
"type": "object"
|
|
6754
|
-
},
|
|
6755
|
-
"picker_preview": {
|
|
6756
|
-
"$ref": "#/definitions/Preview",
|
|
6757
|
-
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
6758
|
-
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
6759
|
-
},
|
|
6760
|
-
"preview": {
|
|
6761
|
-
"$ref": "#/definitions/Preview",
|
|
6762
|
-
"description": "Changes the way items are previewed in the CMS.",
|
|
6763
|
-
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
6764
|
-
},
|
|
6765
|
-
"snippet": {
|
|
6766
|
-
"description": "Name of the snippet.",
|
|
6767
|
-
"markdownDescription": "Name of the snippet.",
|
|
6768
|
-
"type": "string"
|
|
6769
|
-
},
|
|
6770
|
-
"strict_whitespace": {
|
|
6771
|
-
"description": "Whether this snippet treats whitespace as-is or not.",
|
|
6772
|
-
"markdownDescription": "Whether this snippet treats whitespace as-is or not.",
|
|
6773
|
-
"type": "boolean"
|
|
6774
|
-
},
|
|
6775
|
-
"template": {
|
|
6776
|
-
"description": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6777
|
-
"markdownDescription": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6778
|
-
"type": "string"
|
|
6779
|
-
}
|
|
6780
|
-
},
|
|
6781
|
-
"type": "object"
|
|
6782
|
-
},
|
|
6783
|
-
"SnippetsImport<(\"_cc_jekyll_unknown_paired_tag\"|\"_cc_jekyll_unknown_tag\"|\"jekyll_highlight\"|\"_cc_jekyll_template\"|\"jekyll_raw\"|\"jekyll_link\"|\"jekyll_post_url\")>": {
|
|
6784
|
-
"additionalProperties": false,
|
|
6785
|
-
"properties": {
|
|
6786
|
-
"exclude": {
|
|
6787
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6788
|
-
"items": {
|
|
6789
|
-
"enum": [
|
|
6790
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
6791
|
-
"_cc_jekyll_unknown_tag",
|
|
6792
|
-
"jekyll_highlight",
|
|
6793
|
-
"_cc_jekyll_template",
|
|
6794
|
-
"jekyll_raw",
|
|
6795
|
-
"jekyll_link",
|
|
6796
|
-
"jekyll_post_url"
|
|
6797
|
-
],
|
|
6798
|
-
"type": "string"
|
|
6799
|
-
},
|
|
6800
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6801
|
-
"type": "array"
|
|
6802
|
-
},
|
|
6803
|
-
"include": {
|
|
6804
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6805
|
-
"items": {
|
|
6806
|
-
"enum": [
|
|
6807
|
-
"_cc_jekyll_unknown_paired_tag",
|
|
6808
|
-
"_cc_jekyll_unknown_tag",
|
|
6809
|
-
"jekyll_highlight",
|
|
6810
|
-
"_cc_jekyll_template",
|
|
6811
|
-
"jekyll_raw",
|
|
6812
|
-
"jekyll_link",
|
|
6813
|
-
"jekyll_post_url"
|
|
6814
|
-
],
|
|
6815
|
-
"type": "string"
|
|
6816
|
-
},
|
|
6817
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6818
|
-
"type": "array"
|
|
6819
|
-
}
|
|
6820
|
-
},
|
|
6821
|
-
"type": "object"
|
|
6822
|
-
},
|
|
6823
|
-
"SnippetsImport<(\"docusaurus_mdx_admonition\"|\"docusaurus_mdx_tabs\"|\"docusaurus_mdx_truncate\"|\"docusaurus_mdx_codeblock\")>": {
|
|
6824
|
-
"additionalProperties": false,
|
|
6825
|
-
"properties": {
|
|
6826
|
-
"exclude": {
|
|
6827
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6828
|
-
"items": {
|
|
6829
|
-
"enum": [
|
|
6830
|
-
"docusaurus_mdx_admonition",
|
|
6831
|
-
"docusaurus_mdx_tabs",
|
|
6832
|
-
"docusaurus_mdx_truncate",
|
|
6833
|
-
"docusaurus_mdx_codeblock"
|
|
6834
|
-
],
|
|
6835
|
-
"type": "string"
|
|
6836
|
-
},
|
|
6837
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6838
|
-
"type": "array"
|
|
6839
|
-
},
|
|
6840
|
-
"include": {
|
|
6841
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6842
|
-
"items": {
|
|
6843
|
-
"enum": [
|
|
6844
|
-
"docusaurus_mdx_admonition",
|
|
6845
|
-
"docusaurus_mdx_tabs",
|
|
6846
|
-
"docusaurus_mdx_truncate",
|
|
6847
|
-
"docusaurus_mdx_codeblock"
|
|
6848
|
-
],
|
|
6849
|
-
"type": "string"
|
|
6850
|
-
},
|
|
6851
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6852
|
-
"type": "array"
|
|
6853
|
-
}
|
|
6854
|
-
},
|
|
6855
|
-
"type": "object"
|
|
6856
|
-
},
|
|
6857
|
-
"SnippetsImport<(\"eleventy_liquid_raw\"|\"_cc_eleventy_liquid_unknown_paired_shortcode\"|\"_cc_eleventy_liquid_unknown_shortcode\"|\"_cc_eleventy_liquid_template\")>": {
|
|
6858
|
-
"additionalProperties": false,
|
|
6859
|
-
"properties": {
|
|
6860
|
-
"exclude": {
|
|
6861
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6862
|
-
"items": {
|
|
6863
|
-
"enum": [
|
|
6864
|
-
"eleventy_liquid_raw",
|
|
6865
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6866
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6867
|
-
"_cc_eleventy_liquid_template"
|
|
6868
|
-
],
|
|
6869
|
-
"type": "string"
|
|
6870
|
-
},
|
|
6871
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6872
|
-
"type": "array"
|
|
6873
|
-
},
|
|
6874
|
-
"include": {
|
|
6875
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6876
|
-
"items": {
|
|
6877
|
-
"enum": [
|
|
6878
|
-
"eleventy_liquid_raw",
|
|
6879
|
-
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6880
|
-
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6881
|
-
"_cc_eleventy_liquid_template"
|
|
6882
|
-
],
|
|
6883
|
-
"type": "string"
|
|
6884
|
-
},
|
|
6885
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6886
|
-
"type": "array"
|
|
6887
|
-
}
|
|
6888
|
-
},
|
|
6889
|
-
"type": "object"
|
|
6890
|
-
},
|
|
6891
|
-
"SnippetsImport<(\"eleventy_nunjucks_raw\"|\"eleventy_nunjucks_verbatim\"|\"_cc_eleventy_nunjucks_unknown_paired_shortcode\"|\"_cc_eleventy_nunjucks_unknown_shortcode\"|\"_cc_eleventy_nunjucks_template\")>": {
|
|
6892
|
-
"additionalProperties": false,
|
|
6893
|
-
"properties": {
|
|
6894
|
-
"exclude": {
|
|
6895
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6896
|
-
"items": {
|
|
6897
|
-
"enum": [
|
|
6898
|
-
"eleventy_nunjucks_raw",
|
|
6899
|
-
"eleventy_nunjucks_verbatim",
|
|
6900
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6901
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6902
|
-
"_cc_eleventy_nunjucks_template"
|
|
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
|
-
"eleventy_nunjucks_raw",
|
|
6914
|
-
"eleventy_nunjucks_verbatim",
|
|
6915
|
-
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6916
|
-
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6917
|
-
"_cc_eleventy_nunjucks_template"
|
|
6918
|
-
],
|
|
6919
|
-
"type": "string"
|
|
6920
|
-
},
|
|
6921
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6922
|
-
"type": "array"
|
|
6923
|
-
}
|
|
6924
|
-
},
|
|
6925
|
-
"type": "object"
|
|
6926
|
-
},
|
|
6927
|
-
"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\")>": {
|
|
6928
|
-
"additionalProperties": false,
|
|
6929
|
-
"properties": {
|
|
6930
|
-
"exclude": {
|
|
6931
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6932
|
-
"items": {
|
|
6933
|
-
"enum": [
|
|
6934
|
-
"hugo_summary_divider",
|
|
6935
|
-
"hugo_highlight",
|
|
6936
|
-
"hugo_figure",
|
|
6937
|
-
"hugo_gist",
|
|
6938
|
-
"hugo_instagram",
|
|
6939
|
-
"hugo_param",
|
|
6940
|
-
"hugo_ref",
|
|
6941
|
-
"hugo_relref",
|
|
6942
|
-
"hugo_tweet",
|
|
6943
|
-
"hugo_vimeo",
|
|
6944
|
-
"hugo_youtube",
|
|
6945
|
-
"_cc_hugo_unknown_paired",
|
|
6946
|
-
"_cc_hugo_unknown",
|
|
6947
|
-
"_cc_hugo_unknown_paired_processed",
|
|
6948
|
-
"_cc_hugo_unknown_processed"
|
|
6949
|
-
],
|
|
6950
|
-
"type": "string"
|
|
6951
|
-
},
|
|
6952
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6953
|
-
"type": "array"
|
|
6954
|
-
},
|
|
6955
|
-
"include": {
|
|
6956
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6957
|
-
"items": {
|
|
6958
|
-
"enum": [
|
|
6959
|
-
"hugo_summary_divider",
|
|
6960
|
-
"hugo_highlight",
|
|
6961
|
-
"hugo_figure",
|
|
6962
|
-
"hugo_gist",
|
|
6963
|
-
"hugo_instagram",
|
|
6964
|
-
"hugo_param",
|
|
6965
|
-
"hugo_ref",
|
|
6966
|
-
"hugo_relref",
|
|
6967
|
-
"hugo_tweet",
|
|
6968
|
-
"hugo_vimeo",
|
|
6969
|
-
"hugo_youtube",
|
|
6970
|
-
"_cc_hugo_unknown_paired",
|
|
6971
|
-
"_cc_hugo_unknown",
|
|
6972
|
-
"_cc_hugo_unknown_paired_processed",
|
|
6973
|
-
"_cc_hugo_unknown_processed"
|
|
6974
|
-
],
|
|
6975
|
-
"type": "string"
|
|
6976
|
-
},
|
|
6977
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6978
|
-
"type": "array"
|
|
6979
|
-
}
|
|
6980
|
-
},
|
|
6981
|
-
"type": "object"
|
|
6982
|
-
},
|
|
6983
|
-
"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\")>": {
|
|
6984
|
-
"additionalProperties": false,
|
|
6985
|
-
"properties": {
|
|
6986
|
-
"exclude": {
|
|
6987
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6988
6261
|
"items": {
|
|
6989
|
-
"
|
|
6990
|
-
"
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
"_cc_mdx_unknown_export_default",
|
|
6994
|
-
"_cc_mdx_unknown_template",
|
|
6995
|
-
"_cc_mdx_paired_unknown",
|
|
6996
|
-
"_cc_mdx_unknown"
|
|
6997
|
-
],
|
|
6998
|
-
"type": "string"
|
|
6999
|
-
},
|
|
7000
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7001
|
-
"type": "array"
|
|
7002
|
-
},
|
|
7003
|
-
"include": {
|
|
7004
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7005
|
-
"items": {
|
|
7006
|
-
"enum": [
|
|
7007
|
-
"import",
|
|
7008
|
-
"_cc_mdx_unknown_export",
|
|
7009
|
-
"_cc_mdx_unknown_export_expression",
|
|
7010
|
-
"_cc_mdx_unknown_export_default",
|
|
7011
|
-
"_cc_mdx_unknown_template",
|
|
7012
|
-
"_cc_mdx_paired_unknown",
|
|
7013
|
-
"_cc_mdx_unknown"
|
|
7014
|
-
],
|
|
7015
|
-
"type": "string"
|
|
7016
|
-
},
|
|
7017
|
-
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
7018
|
-
"type": "array"
|
|
7019
|
-
}
|
|
7020
|
-
},
|
|
7021
|
-
"type": "object"
|
|
7022
|
-
},
|
|
7023
|
-
"SnippetsImport<(\"markdoc_id_annotation\"|\"markdoc_class_annotation\"|\"markdoc_table\"|\"_cc_markdoc_unknown_tag\"|\"_cc_markdoc_unknown_paired_tag\"|\"_cc_markdoc_unknown_template\")>": {
|
|
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
|
-
"markdoc_id_annotation",
|
|
7031
|
-
"markdoc_class_annotation",
|
|
7032
|
-
"markdoc_table",
|
|
7033
|
-
"_cc_markdoc_unknown_tag",
|
|
7034
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
7035
|
-
"_cc_markdoc_unknown_template"
|
|
7036
|
-
],
|
|
7037
|
-
"type": "string"
|
|
6262
|
+
"additionalProperties": {
|
|
6263
|
+
"type": "string"
|
|
6264
|
+
},
|
|
6265
|
+
"type": "object"
|
|
7038
6266
|
},
|
|
7039
|
-
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
7040
6267
|
"type": "array"
|
|
7041
6268
|
},
|
|
7042
|
-
|
|
7043
|
-
"
|
|
7044
|
-
"items": {
|
|
7045
|
-
"enum": [
|
|
7046
|
-
"markdoc_id_annotation",
|
|
7047
|
-
"markdoc_class_annotation",
|
|
7048
|
-
"markdoc_table",
|
|
7049
|
-
"_cc_markdoc_unknown_tag",
|
|
7050
|
-
"_cc_markdoc_unknown_paired_tag",
|
|
7051
|
-
"_cc_markdoc_unknown_template"
|
|
7052
|
-
],
|
|
6269
|
+
{
|
|
6270
|
+
"additionalProperties": {
|
|
7053
6271
|
"type": "string"
|
|
7054
6272
|
},
|
|
7055
|
-
"
|
|
6273
|
+
"type": "object"
|
|
6274
|
+
},
|
|
6275
|
+
{
|
|
6276
|
+
"items": {
|
|
6277
|
+
"additionalProperties": {},
|
|
6278
|
+
"type": "object"
|
|
6279
|
+
},
|
|
7056
6280
|
"type": "array"
|
|
6281
|
+
},
|
|
6282
|
+
{
|
|
6283
|
+
"additionalProperties": {},
|
|
6284
|
+
"type": "object"
|
|
7057
6285
|
}
|
|
7058
|
-
|
|
7059
|
-
"type": "object"
|
|
6286
|
+
]
|
|
7060
6287
|
},
|
|
7061
|
-
"
|
|
6288
|
+
"SnippetConfig": {
|
|
7062
6289
|
"additionalProperties": false,
|
|
7063
6290
|
"properties": {
|
|
7064
|
-
"
|
|
7065
|
-
"
|
|
7066
|
-
|
|
7067
|
-
"enum": [
|
|
7068
|
-
"python_markdown_abbreviation",
|
|
7069
|
-
"python_markdown_admonition",
|
|
7070
|
-
"python_markdown_arithmatex",
|
|
7071
|
-
"python_markdown_attribute_list",
|
|
7072
|
-
"python_markdown_code_block",
|
|
7073
|
-
"python_markdown_collapsible_admonition",
|
|
7074
|
-
"python_markdown_tabs",
|
|
7075
|
-
"python_markdown_footnote",
|
|
7076
|
-
"python_markdown_footnote_marker",
|
|
7077
|
-
"python_markdown_icon",
|
|
7078
|
-
"python_markdown_image",
|
|
7079
|
-
"python_markdown_inline_arithmatex",
|
|
7080
|
-
"python_markdown_inline_code",
|
|
7081
|
-
"python_markdown_link",
|
|
7082
|
-
"python_markdown_reference_image",
|
|
7083
|
-
"python_markdown_reference_template_image",
|
|
7084
|
-
"python_markdown_reference_link",
|
|
7085
|
-
"python_markdown_reference",
|
|
7086
|
-
"python_markdown_reference_template",
|
|
7087
|
-
"python_markdown_block_snippet",
|
|
7088
|
-
"_cc_python_markdown_unknown_snippet",
|
|
7089
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
7090
|
-
],
|
|
7091
|
-
"type": "string"
|
|
6291
|
+
"_inputs": {
|
|
6292
|
+
"additionalProperties": {
|
|
6293
|
+
"$ref": "#/definitions/Input"
|
|
7092
6294
|
},
|
|
7093
|
-
"
|
|
7094
|
-
"
|
|
6295
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
6296
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
6297
|
+
"type": "object"
|
|
6298
|
+
},
|
|
6299
|
+
"_select_data": {
|
|
6300
|
+
"additionalProperties": {
|
|
6301
|
+
"$ref": "#/definitions/SelectValues"
|
|
6302
|
+
},
|
|
6303
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
6304
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
6305
|
+
"type": "object"
|
|
6306
|
+
},
|
|
6307
|
+
"_structures": {
|
|
6308
|
+
"additionalProperties": {
|
|
6309
|
+
"$ref": "#/definitions/Structure"
|
|
6310
|
+
},
|
|
6311
|
+
"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.",
|
|
6312
|
+
"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.",
|
|
6313
|
+
"type": "object"
|
|
7095
6314
|
},
|
|
7096
|
-
"
|
|
7097
|
-
"description": "
|
|
6315
|
+
"alternate_formats": {
|
|
6316
|
+
"description": "Alternate configurations for this snippet.",
|
|
7098
6317
|
"items": {
|
|
7099
|
-
"
|
|
7100
|
-
"python_markdown_abbreviation",
|
|
7101
|
-
"python_markdown_admonition",
|
|
7102
|
-
"python_markdown_arithmatex",
|
|
7103
|
-
"python_markdown_attribute_list",
|
|
7104
|
-
"python_markdown_code_block",
|
|
7105
|
-
"python_markdown_collapsible_admonition",
|
|
7106
|
-
"python_markdown_tabs",
|
|
7107
|
-
"python_markdown_footnote",
|
|
7108
|
-
"python_markdown_footnote_marker",
|
|
7109
|
-
"python_markdown_icon",
|
|
7110
|
-
"python_markdown_image",
|
|
7111
|
-
"python_markdown_inline_arithmatex",
|
|
7112
|
-
"python_markdown_inline_code",
|
|
7113
|
-
"python_markdown_link",
|
|
7114
|
-
"python_markdown_reference_image",
|
|
7115
|
-
"python_markdown_reference_template_image",
|
|
7116
|
-
"python_markdown_reference_link",
|
|
7117
|
-
"python_markdown_reference",
|
|
7118
|
-
"python_markdown_reference_template",
|
|
7119
|
-
"python_markdown_block_snippet",
|
|
7120
|
-
"_cc_python_markdown_unknown_snippet",
|
|
7121
|
-
"_cc_python_markdown_unknown_markdown_in_html"
|
|
7122
|
-
],
|
|
7123
|
-
"type": "string"
|
|
6318
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
7124
6319
|
},
|
|
7125
|
-
"markdownDescription": "
|
|
6320
|
+
"markdownDescription": "Alternate configurations for this snippet.",
|
|
7126
6321
|
"type": "array"
|
|
6322
|
+
},
|
|
6323
|
+
"definitions": {
|
|
6324
|
+
"description": "The variables required for the selected template.",
|
|
6325
|
+
"markdownDescription": "The variables required for the selected template.",
|
|
6326
|
+
"type": "object"
|
|
6327
|
+
},
|
|
6328
|
+
"inline": {
|
|
6329
|
+
"description": "Whether this snippet can appear inline (within a sentence). Defaults to false, which will treat this snippet as a block-level element in the content editor.",
|
|
6330
|
+
"markdownDescription": "Whether this snippet can appear inline (within a sentence). Defaults to false, which will treat\nthis snippet as a block-level element in the content editor.",
|
|
6331
|
+
"type": "boolean"
|
|
6332
|
+
},
|
|
6333
|
+
"params": {
|
|
6334
|
+
"description": "The parameters of this snippet.",
|
|
6335
|
+
"markdownDescription": "The parameters of this snippet.",
|
|
6336
|
+
"type": "object"
|
|
6337
|
+
},
|
|
6338
|
+
"picker_preview": {
|
|
6339
|
+
"$ref": "#/definitions/Preview",
|
|
6340
|
+
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
6341
|
+
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
6342
|
+
},
|
|
6343
|
+
"preview": {
|
|
6344
|
+
"$ref": "#/definitions/Preview",
|
|
6345
|
+
"description": "Changes the way items are previewed in the CMS.",
|
|
6346
|
+
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
6347
|
+
},
|
|
6348
|
+
"snippet": {
|
|
6349
|
+
"description": "Name of the snippet.",
|
|
6350
|
+
"markdownDescription": "Name of the snippet.",
|
|
6351
|
+
"type": "string"
|
|
6352
|
+
},
|
|
6353
|
+
"strict_whitespace": {
|
|
6354
|
+
"description": "Whether this snippet treats whitespace as-is or not.",
|
|
6355
|
+
"markdownDescription": "Whether this snippet treats whitespace as-is or not.",
|
|
6356
|
+
"type": "boolean"
|
|
6357
|
+
},
|
|
6358
|
+
"template": {
|
|
6359
|
+
"description": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6360
|
+
"markdownDescription": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6361
|
+
"type": "string"
|
|
7127
6362
|
}
|
|
7128
6363
|
},
|
|
7129
6364
|
"type": "object"
|
|
@@ -7137,7 +6372,50 @@
|
|
|
7137
6372
|
"type": "boolean"
|
|
7138
6373
|
},
|
|
7139
6374
|
{
|
|
7140
|
-
"
|
|
6375
|
+
"additionalProperties": false,
|
|
6376
|
+
"properties": {
|
|
6377
|
+
"exclude": {
|
|
6378
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6379
|
+
"items": {
|
|
6380
|
+
"enum": [
|
|
6381
|
+
"docusaurus_mdx_admonition",
|
|
6382
|
+
"docusaurus_mdx_tabs",
|
|
6383
|
+
"docusaurus_mdx_truncate",
|
|
6384
|
+
"docusaurus_mdx_codeblock"
|
|
6385
|
+
],
|
|
6386
|
+
"type": "string"
|
|
6387
|
+
},
|
|
6388
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6389
|
+
"type": "array"
|
|
6390
|
+
}
|
|
6391
|
+
},
|
|
6392
|
+
"required": [
|
|
6393
|
+
"exclude"
|
|
6394
|
+
],
|
|
6395
|
+
"type": "object"
|
|
6396
|
+
},
|
|
6397
|
+
{
|
|
6398
|
+
"additionalProperties": false,
|
|
6399
|
+
"properties": {
|
|
6400
|
+
"include": {
|
|
6401
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6402
|
+
"items": {
|
|
6403
|
+
"enum": [
|
|
6404
|
+
"docusaurus_mdx_admonition",
|
|
6405
|
+
"docusaurus_mdx_tabs",
|
|
6406
|
+
"docusaurus_mdx_truncate",
|
|
6407
|
+
"docusaurus_mdx_codeblock"
|
|
6408
|
+
],
|
|
6409
|
+
"type": "string"
|
|
6410
|
+
},
|
|
6411
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6412
|
+
"type": "array"
|
|
6413
|
+
}
|
|
6414
|
+
},
|
|
6415
|
+
"required": [
|
|
6416
|
+
"include"
|
|
6417
|
+
],
|
|
6418
|
+
"type": "object"
|
|
7141
6419
|
}
|
|
7142
6420
|
],
|
|
7143
6421
|
"description": "Default snippets for Docusaurus SSG.",
|
|
@@ -7149,7 +6427,50 @@
|
|
|
7149
6427
|
"type": "boolean"
|
|
7150
6428
|
},
|
|
7151
6429
|
{
|
|
7152
|
-
"
|
|
6430
|
+
"additionalProperties": false,
|
|
6431
|
+
"properties": {
|
|
6432
|
+
"exclude": {
|
|
6433
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6434
|
+
"items": {
|
|
6435
|
+
"enum": [
|
|
6436
|
+
"eleventy_liquid_raw",
|
|
6437
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6438
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6439
|
+
"_cc_eleventy_liquid_template"
|
|
6440
|
+
],
|
|
6441
|
+
"type": "string"
|
|
6442
|
+
},
|
|
6443
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6444
|
+
"type": "array"
|
|
6445
|
+
}
|
|
6446
|
+
},
|
|
6447
|
+
"required": [
|
|
6448
|
+
"exclude"
|
|
6449
|
+
],
|
|
6450
|
+
"type": "object"
|
|
6451
|
+
},
|
|
6452
|
+
{
|
|
6453
|
+
"additionalProperties": false,
|
|
6454
|
+
"properties": {
|
|
6455
|
+
"include": {
|
|
6456
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6457
|
+
"items": {
|
|
6458
|
+
"enum": [
|
|
6459
|
+
"eleventy_liquid_raw",
|
|
6460
|
+
"_cc_eleventy_liquid_unknown_paired_shortcode",
|
|
6461
|
+
"_cc_eleventy_liquid_unknown_shortcode",
|
|
6462
|
+
"_cc_eleventy_liquid_template"
|
|
6463
|
+
],
|
|
6464
|
+
"type": "string"
|
|
6465
|
+
},
|
|
6466
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6467
|
+
"type": "array"
|
|
6468
|
+
}
|
|
6469
|
+
},
|
|
6470
|
+
"required": [
|
|
6471
|
+
"include"
|
|
6472
|
+
],
|
|
6473
|
+
"type": "object"
|
|
7153
6474
|
}
|
|
7154
6475
|
],
|
|
7155
6476
|
"description": "Default snippets for Eleventy SSG Liquid files.",
|
|
@@ -7161,7 +6482,52 @@
|
|
|
7161
6482
|
"type": "boolean"
|
|
7162
6483
|
},
|
|
7163
6484
|
{
|
|
7164
|
-
"
|
|
6485
|
+
"additionalProperties": false,
|
|
6486
|
+
"properties": {
|
|
6487
|
+
"exclude": {
|
|
6488
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6489
|
+
"items": {
|
|
6490
|
+
"enum": [
|
|
6491
|
+
"eleventy_nunjucks_raw",
|
|
6492
|
+
"eleventy_nunjucks_verbatim",
|
|
6493
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6494
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6495
|
+
"_cc_eleventy_nunjucks_template"
|
|
6496
|
+
],
|
|
6497
|
+
"type": "string"
|
|
6498
|
+
},
|
|
6499
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6500
|
+
"type": "array"
|
|
6501
|
+
}
|
|
6502
|
+
},
|
|
6503
|
+
"required": [
|
|
6504
|
+
"exclude"
|
|
6505
|
+
],
|
|
6506
|
+
"type": "object"
|
|
6507
|
+
},
|
|
6508
|
+
{
|
|
6509
|
+
"additionalProperties": false,
|
|
6510
|
+
"properties": {
|
|
6511
|
+
"include": {
|
|
6512
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6513
|
+
"items": {
|
|
6514
|
+
"enum": [
|
|
6515
|
+
"eleventy_nunjucks_raw",
|
|
6516
|
+
"eleventy_nunjucks_verbatim",
|
|
6517
|
+
"_cc_eleventy_nunjucks_unknown_paired_shortcode",
|
|
6518
|
+
"_cc_eleventy_nunjucks_unknown_shortcode",
|
|
6519
|
+
"_cc_eleventy_nunjucks_template"
|
|
6520
|
+
],
|
|
6521
|
+
"type": "string"
|
|
6522
|
+
},
|
|
6523
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6524
|
+
"type": "array"
|
|
6525
|
+
}
|
|
6526
|
+
},
|
|
6527
|
+
"required": [
|
|
6528
|
+
"include"
|
|
6529
|
+
],
|
|
6530
|
+
"type": "object"
|
|
7165
6531
|
}
|
|
7166
6532
|
],
|
|
7167
6533
|
"description": "Default snippets for Eleventy SSG Nunjucks files.",
|
|
@@ -7173,7 +6539,72 @@
|
|
|
7173
6539
|
"type": "boolean"
|
|
7174
6540
|
},
|
|
7175
6541
|
{
|
|
7176
|
-
"
|
|
6542
|
+
"additionalProperties": false,
|
|
6543
|
+
"properties": {
|
|
6544
|
+
"exclude": {
|
|
6545
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6546
|
+
"items": {
|
|
6547
|
+
"enum": [
|
|
6548
|
+
"hugo_summary_divider",
|
|
6549
|
+
"hugo_highlight",
|
|
6550
|
+
"hugo_figure",
|
|
6551
|
+
"hugo_gist",
|
|
6552
|
+
"hugo_instagram",
|
|
6553
|
+
"hugo_param",
|
|
6554
|
+
"hugo_ref",
|
|
6555
|
+
"hugo_relref",
|
|
6556
|
+
"hugo_tweet",
|
|
6557
|
+
"hugo_vimeo",
|
|
6558
|
+
"hugo_youtube",
|
|
6559
|
+
"_cc_hugo_unknown_paired",
|
|
6560
|
+
"_cc_hugo_unknown",
|
|
6561
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6562
|
+
"_cc_hugo_unknown_processed"
|
|
6563
|
+
],
|
|
6564
|
+
"type": "string"
|
|
6565
|
+
},
|
|
6566
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6567
|
+
"type": "array"
|
|
6568
|
+
}
|
|
6569
|
+
},
|
|
6570
|
+
"required": [
|
|
6571
|
+
"exclude"
|
|
6572
|
+
],
|
|
6573
|
+
"type": "object"
|
|
6574
|
+
},
|
|
6575
|
+
{
|
|
6576
|
+
"additionalProperties": false,
|
|
6577
|
+
"properties": {
|
|
6578
|
+
"include": {
|
|
6579
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6580
|
+
"items": {
|
|
6581
|
+
"enum": [
|
|
6582
|
+
"hugo_summary_divider",
|
|
6583
|
+
"hugo_highlight",
|
|
6584
|
+
"hugo_figure",
|
|
6585
|
+
"hugo_gist",
|
|
6586
|
+
"hugo_instagram",
|
|
6587
|
+
"hugo_param",
|
|
6588
|
+
"hugo_ref",
|
|
6589
|
+
"hugo_relref",
|
|
6590
|
+
"hugo_tweet",
|
|
6591
|
+
"hugo_vimeo",
|
|
6592
|
+
"hugo_youtube",
|
|
6593
|
+
"_cc_hugo_unknown_paired",
|
|
6594
|
+
"_cc_hugo_unknown",
|
|
6595
|
+
"_cc_hugo_unknown_paired_processed",
|
|
6596
|
+
"_cc_hugo_unknown_processed"
|
|
6597
|
+
],
|
|
6598
|
+
"type": "string"
|
|
6599
|
+
},
|
|
6600
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6601
|
+
"type": "array"
|
|
6602
|
+
}
|
|
6603
|
+
},
|
|
6604
|
+
"required": [
|
|
6605
|
+
"include"
|
|
6606
|
+
],
|
|
6607
|
+
"type": "object"
|
|
7177
6608
|
}
|
|
7178
6609
|
],
|
|
7179
6610
|
"description": "Default snippets for Hugo SSG.",
|
|
@@ -7185,7 +6616,56 @@
|
|
|
7185
6616
|
"type": "boolean"
|
|
7186
6617
|
},
|
|
7187
6618
|
{
|
|
7188
|
-
"
|
|
6619
|
+
"additionalProperties": false,
|
|
6620
|
+
"properties": {
|
|
6621
|
+
"exclude": {
|
|
6622
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6623
|
+
"items": {
|
|
6624
|
+
"enum": [
|
|
6625
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6626
|
+
"_cc_jekyll_unknown_tag",
|
|
6627
|
+
"jekyll_highlight",
|
|
6628
|
+
"_cc_jekyll_template",
|
|
6629
|
+
"jekyll_raw",
|
|
6630
|
+
"jekyll_link",
|
|
6631
|
+
"jekyll_post_url"
|
|
6632
|
+
],
|
|
6633
|
+
"type": "string"
|
|
6634
|
+
},
|
|
6635
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6636
|
+
"type": "array"
|
|
6637
|
+
}
|
|
6638
|
+
},
|
|
6639
|
+
"required": [
|
|
6640
|
+
"exclude"
|
|
6641
|
+
],
|
|
6642
|
+
"type": "object"
|
|
6643
|
+
},
|
|
6644
|
+
{
|
|
6645
|
+
"additionalProperties": false,
|
|
6646
|
+
"properties": {
|
|
6647
|
+
"include": {
|
|
6648
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6649
|
+
"items": {
|
|
6650
|
+
"enum": [
|
|
6651
|
+
"_cc_jekyll_unknown_paired_tag",
|
|
6652
|
+
"_cc_jekyll_unknown_tag",
|
|
6653
|
+
"jekyll_highlight",
|
|
6654
|
+
"_cc_jekyll_template",
|
|
6655
|
+
"jekyll_raw",
|
|
6656
|
+
"jekyll_link",
|
|
6657
|
+
"jekyll_post_url"
|
|
6658
|
+
],
|
|
6659
|
+
"type": "string"
|
|
6660
|
+
},
|
|
6661
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6662
|
+
"type": "array"
|
|
6663
|
+
}
|
|
6664
|
+
},
|
|
6665
|
+
"required": [
|
|
6666
|
+
"include"
|
|
6667
|
+
],
|
|
6668
|
+
"type": "object"
|
|
7189
6669
|
}
|
|
7190
6670
|
],
|
|
7191
6671
|
"description": "Default snippets for Jekyll SSG.",
|
|
@@ -7197,7 +6677,54 @@
|
|
|
7197
6677
|
"type": "boolean"
|
|
7198
6678
|
},
|
|
7199
6679
|
{
|
|
7200
|
-
"
|
|
6680
|
+
"additionalProperties": false,
|
|
6681
|
+
"properties": {
|
|
6682
|
+
"exclude": {
|
|
6683
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
6684
|
+
"items": {
|
|
6685
|
+
"enum": [
|
|
6686
|
+
"markdoc_id_annotation",
|
|
6687
|
+
"markdoc_class_annotation",
|
|
6688
|
+
"markdoc_table",
|
|
6689
|
+
"_cc_markdoc_unknown_tag",
|
|
6690
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6691
|
+
"_cc_markdoc_unknown_template"
|
|
6692
|
+
],
|
|
6693
|
+
"type": "string"
|
|
6694
|
+
},
|
|
6695
|
+
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6696
|
+
"type": "array"
|
|
6697
|
+
}
|
|
6698
|
+
},
|
|
6699
|
+
"required": [
|
|
6700
|
+
"exclude"
|
|
6701
|
+
],
|
|
6702
|
+
"type": "object"
|
|
6703
|
+
},
|
|
6704
|
+
{
|
|
6705
|
+
"additionalProperties": false,
|
|
6706
|
+
"properties": {
|
|
6707
|
+
"include": {
|
|
6708
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6709
|
+
"items": {
|
|
6710
|
+
"enum": [
|
|
6711
|
+
"markdoc_id_annotation",
|
|
6712
|
+
"markdoc_class_annotation",
|
|
6713
|
+
"markdoc_table",
|
|
6714
|
+
"_cc_markdoc_unknown_tag",
|
|
6715
|
+
"_cc_markdoc_unknown_paired_tag",
|
|
6716
|
+
"_cc_markdoc_unknown_template"
|
|
6717
|
+
],
|
|
6718
|
+
"type": "string"
|
|
6719
|
+
},
|
|
6720
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6721
|
+
"type": "array"
|
|
6722
|
+
}
|
|
6723
|
+
},
|
|
6724
|
+
"required": [
|
|
6725
|
+
"include"
|
|
6726
|
+
],
|
|
6727
|
+
"type": "object"
|
|
7201
6728
|
}
|
|
7202
6729
|
],
|
|
7203
6730
|
"description": "Default snippets for Markdoc-based content.",
|
|
@@ -7209,7 +6736,56 @@
|
|
|
7209
6736
|
"type": "boolean"
|
|
7210
6737
|
},
|
|
7211
6738
|
{
|
|
7212
|
-
"
|
|
6739
|
+
"additionalProperties": false,
|
|
6740
|
+
"properties": {
|
|
6741
|
+
"exclude": {
|
|
6742
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
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 excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6756
|
+
"type": "array"
|
|
6757
|
+
}
|
|
6758
|
+
},
|
|
6759
|
+
"required": [
|
|
6760
|
+
"exclude"
|
|
6761
|
+
],
|
|
6762
|
+
"type": "object"
|
|
6763
|
+
},
|
|
6764
|
+
{
|
|
6765
|
+
"additionalProperties": false,
|
|
6766
|
+
"properties": {
|
|
6767
|
+
"include": {
|
|
6768
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6769
|
+
"items": {
|
|
6770
|
+
"enum": [
|
|
6771
|
+
"import",
|
|
6772
|
+
"_cc_mdx_unknown_export",
|
|
6773
|
+
"_cc_mdx_unknown_export_expression",
|
|
6774
|
+
"_cc_mdx_unknown_export_default",
|
|
6775
|
+
"_cc_mdx_unknown_template",
|
|
6776
|
+
"_cc_mdx_paired_unknown",
|
|
6777
|
+
"_cc_mdx_unknown"
|
|
6778
|
+
],
|
|
6779
|
+
"type": "string"
|
|
6780
|
+
},
|
|
6781
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6782
|
+
"type": "array"
|
|
6783
|
+
}
|
|
6784
|
+
},
|
|
6785
|
+
"required": [
|
|
6786
|
+
"include"
|
|
6787
|
+
],
|
|
6788
|
+
"type": "object"
|
|
7213
6789
|
}
|
|
7214
6790
|
],
|
|
7215
6791
|
"description": "Default snippets for MDX-based content.",
|
|
@@ -7221,7 +6797,86 @@
|
|
|
7221
6797
|
"type": "boolean"
|
|
7222
6798
|
},
|
|
7223
6799
|
{
|
|
7224
|
-
"
|
|
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\n`include`.",
|
|
6832
|
+
"type": "array"
|
|
6833
|
+
}
|
|
6834
|
+
},
|
|
6835
|
+
"required": [
|
|
6836
|
+
"exclude"
|
|
6837
|
+
],
|
|
6838
|
+
"type": "object"
|
|
6839
|
+
},
|
|
6840
|
+
{
|
|
6841
|
+
"additionalProperties": false,
|
|
6842
|
+
"properties": {
|
|
6843
|
+
"include": {
|
|
6844
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
6845
|
+
"items": {
|
|
6846
|
+
"enum": [
|
|
6847
|
+
"python_markdown_abbreviation",
|
|
6848
|
+
"python_markdown_admonition",
|
|
6849
|
+
"python_markdown_arithmatex",
|
|
6850
|
+
"python_markdown_attribute_list",
|
|
6851
|
+
"python_markdown_code_block",
|
|
6852
|
+
"python_markdown_collapsible_admonition",
|
|
6853
|
+
"python_markdown_tabs",
|
|
6854
|
+
"python_markdown_footnote",
|
|
6855
|
+
"python_markdown_footnote_marker",
|
|
6856
|
+
"python_markdown_icon",
|
|
6857
|
+
"python_markdown_image",
|
|
6858
|
+
"python_markdown_inline_arithmatex",
|
|
6859
|
+
"python_markdown_inline_code",
|
|
6860
|
+
"python_markdown_link",
|
|
6861
|
+
"python_markdown_reference_image",
|
|
6862
|
+
"python_markdown_reference_template_image",
|
|
6863
|
+
"python_markdown_reference_link",
|
|
6864
|
+
"python_markdown_reference",
|
|
6865
|
+
"python_markdown_reference_template",
|
|
6866
|
+
"python_markdown_block_snippet",
|
|
6867
|
+
"_cc_python_markdown_unknown_snippet",
|
|
6868
|
+
"_cc_python_markdown_unknown_markdown_in_html"
|
|
6869
|
+
],
|
|
6870
|
+
"type": "string"
|
|
6871
|
+
},
|
|
6872
|
+
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6873
|
+
"type": "array"
|
|
6874
|
+
}
|
|
6875
|
+
},
|
|
6876
|
+
"required": [
|
|
6877
|
+
"include"
|
|
6878
|
+
],
|
|
6879
|
+
"type": "object"
|
|
7225
6880
|
}
|
|
7226
6881
|
],
|
|
7227
6882
|
"description": "Default snippets for content using Python markdown extensions.",
|
|
@@ -7312,9 +6967,8 @@
|
|
|
7312
6967
|
"additionalProperties": false,
|
|
7313
6968
|
"properties": {
|
|
7314
6969
|
"hide_extra_inputs": {
|
|
7315
|
-
"
|
|
7316
|
-
"
|
|
7317
|
-
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true.",
|
|
6970
|
+
"description": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults to false.",
|
|
6971
|
+
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults\nto false.",
|
|
7318
6972
|
"type": "boolean"
|
|
7319
6973
|
},
|
|
7320
6974
|
"id_key": {
|
|
@@ -7323,21 +6977,18 @@
|
|
|
7323
6977
|
"type": "string"
|
|
7324
6978
|
},
|
|
7325
6979
|
"remove_empty_inputs": {
|
|
7326
|
-
"
|
|
7327
|
-
"
|
|
7328
|
-
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be\navailable for editing again, provided they are in the matching schema/structure.",
|
|
6980
|
+
"description": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure. Defaults to false.",
|
|
6981
|
+
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be\navailable for editing again, provided they are in the matching schema/structure. Defaults to\nfalse.",
|
|
7329
6982
|
"type": "boolean"
|
|
7330
6983
|
},
|
|
7331
6984
|
"remove_extra_inputs": {
|
|
7332
|
-
"
|
|
7333
|
-
"
|
|
7334
|
-
"markdownDescription": "If checked, extra inputs are removed when editing.",
|
|
6985
|
+
"description": "If checked, extra inputs are removed when editing. Defaults to true.",
|
|
6986
|
+
"markdownDescription": "If checked, extra inputs are removed when editing. Defaults to true.",
|
|
7335
6987
|
"type": "boolean"
|
|
7336
6988
|
},
|
|
7337
6989
|
"reorder_inputs": {
|
|
7338
|
-
"
|
|
7339
|
-
"
|
|
7340
|
-
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected\ninputs, unless `remove_extra_inputs` is true.",
|
|
6990
|
+
"description": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true. Defaults to true.",
|
|
6991
|
+
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected\ninputs, unless `remove_extra_inputs` is true. Defaults to true.",
|
|
7341
6992
|
"type": "boolean"
|
|
7342
6993
|
},
|
|
7343
6994
|
"style": {
|
|
@@ -7371,10 +7022,17 @@
|
|
|
7371
7022
|
"markdownDescription": "If set to true, this item will be considered the default type for this structure. If the type\nof a value within a structure cannot be inferred based on its id_key or matching fields, then\nit will fall back to this item. If multiple items have default set to true, only the first item\nwill be used.",
|
|
7372
7023
|
"type": "boolean"
|
|
7373
7024
|
},
|
|
7025
|
+
"groups": {
|
|
7026
|
+
"description": "Allows you to group the inputs inside this object together without changing the data structure.",
|
|
7027
|
+
"items": {
|
|
7028
|
+
"$ref": "#/definitions/ObjectInputGroup"
|
|
7029
|
+
},
|
|
7030
|
+
"markdownDescription": "Allows you to group the inputs inside this object together without changing the data structure.",
|
|
7031
|
+
"type": "array"
|
|
7032
|
+
},
|
|
7374
7033
|
"hide_extra_inputs": {
|
|
7375
|
-
"
|
|
7376
|
-
"
|
|
7377
|
-
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true.",
|
|
7034
|
+
"description": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults to false.",
|
|
7035
|
+
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults\nto false.",
|
|
7378
7036
|
"type": "boolean"
|
|
7379
7037
|
},
|
|
7380
7038
|
"icon": {
|
|
@@ -7402,27 +7060,34 @@
|
|
|
7402
7060
|
"description": "Changes the way items are previewed in the CMS while being chosen.",
|
|
7403
7061
|
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
7404
7062
|
},
|
|
7063
|
+
"place_groups_below": {
|
|
7064
|
+
"description": "Controls which order input groups and ungrouped inputs appear in.",
|
|
7065
|
+
"markdownDescription": "Controls which order input groups and ungrouped inputs appear in.",
|
|
7066
|
+
"type": "boolean"
|
|
7067
|
+
},
|
|
7405
7068
|
"preview": {
|
|
7406
7069
|
"$ref": "#/definitions/Preview",
|
|
7407
7070
|
"description": "Changes the way items are previewed in the CMS.",
|
|
7408
7071
|
"markdownDescription": "Changes the way items are previewed in the CMS."
|
|
7409
7072
|
},
|
|
7410
7073
|
"remove_empty_inputs": {
|
|
7411
|
-
"
|
|
7412
|
-
"
|
|
7413
|
-
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be\navailable for editing again, provided they are in the matching schema/structure.",
|
|
7074
|
+
"description": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure. Defaults to false.",
|
|
7075
|
+
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be\navailable for editing again, provided they are in the matching schema/structure. Defaults to\nfalse.",
|
|
7414
7076
|
"type": "boolean"
|
|
7415
7077
|
},
|
|
7416
7078
|
"remove_extra_inputs": {
|
|
7417
|
-
"
|
|
7418
|
-
"
|
|
7419
|
-
"markdownDescription": "If checked, extra inputs are removed when editing.",
|
|
7079
|
+
"description": "If checked, extra inputs are removed when editing. Defaults to true.",
|
|
7080
|
+
"markdownDescription": "If checked, extra inputs are removed when editing. Defaults to true.",
|
|
7420
7081
|
"type": "boolean"
|
|
7421
7082
|
},
|
|
7422
7083
|
"reorder_inputs": {
|
|
7423
|
-
"
|
|
7424
|
-
"
|
|
7425
|
-
"
|
|
7084
|
+
"description": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true. Defaults to true.",
|
|
7085
|
+
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected\ninputs, unless `remove_extra_inputs` is true. Defaults to true.",
|
|
7086
|
+
"type": "boolean"
|
|
7087
|
+
},
|
|
7088
|
+
"tabbed": {
|
|
7089
|
+
"description": "Show nested objects as tabs. Requires all top-level keys to be objects.",
|
|
7090
|
+
"markdownDescription": "Show nested objects as tabs. Requires all top-level keys to be objects.",
|
|
7426
7091
|
"type": "boolean"
|
|
7427
7092
|
},
|
|
7428
7093
|
"tags": {
|
|
@@ -8516,7 +8181,7 @@
|
|
|
8516
8181
|
"type": "string"
|
|
8517
8182
|
},
|
|
8518
8183
|
"options": {
|
|
8519
|
-
"$ref": "#/definitions/
|
|
8184
|
+
"$ref": "#/definitions/WithEmptyTypeText",
|
|
8520
8185
|
"description": "Options that are specific to this `type` of input.",
|
|
8521
8186
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
8522
8187
|
},
|
|
@@ -8622,6 +8287,189 @@
|
|
|
8622
8287
|
}
|
|
8623
8288
|
},
|
|
8624
8289
|
"type": "object"
|
|
8290
|
+
},
|
|
8291
|
+
"WithEmptyTypeText": {
|
|
8292
|
+
"additionalProperties": false,
|
|
8293
|
+
"properties": {
|
|
8294
|
+
"empty_type": {
|
|
8295
|
+
"$ref": "#/definitions/EmptyTypeText",
|
|
8296
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8297
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
8298
|
+
}
|
|
8299
|
+
},
|
|
8300
|
+
"type": "object"
|
|
8301
|
+
}
|
|
8302
|
+
},
|
|
8303
|
+
"properties": {
|
|
8304
|
+
"_array_structures": {
|
|
8305
|
+
"additionalProperties": {},
|
|
8306
|
+
"deprecated": "Use _structures instead.",
|
|
8307
|
+
"description": "Now known as _structures.",
|
|
8308
|
+
"markdownDescription": "Now known as _structures.",
|
|
8309
|
+
"type": "object"
|
|
8310
|
+
},
|
|
8311
|
+
"_comments": {
|
|
8312
|
+
"additionalProperties": {
|
|
8313
|
+
"type": "string"
|
|
8314
|
+
},
|
|
8315
|
+
"deprecated": "Use _inputs instead.",
|
|
8316
|
+
"description": "Now part of _inputs.*.comment.",
|
|
8317
|
+
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
8318
|
+
"type": "object"
|
|
8319
|
+
},
|
|
8320
|
+
"_editables": {
|
|
8321
|
+
"$ref": "#/definitions/Editables",
|
|
8322
|
+
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
8323
|
+
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
8324
|
+
},
|
|
8325
|
+
"_enabled_editors": {
|
|
8326
|
+
"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.",
|
|
8327
|
+
"items": {
|
|
8328
|
+
"$ref": "#/definitions/EditorKey"
|
|
8329
|
+
},
|
|
8330
|
+
"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.",
|
|
8331
|
+
"type": "array",
|
|
8332
|
+
"uniqueItems": true
|
|
8333
|
+
},
|
|
8334
|
+
"_inputs": {
|
|
8335
|
+
"additionalProperties": {
|
|
8336
|
+
"$ref": "#/definitions/Input"
|
|
8337
|
+
},
|
|
8338
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
8339
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
8340
|
+
"type": "object"
|
|
8341
|
+
},
|
|
8342
|
+
"_options": {
|
|
8343
|
+
"additionalProperties": {
|
|
8344
|
+
"additionalProperties": {},
|
|
8345
|
+
"type": "object"
|
|
8346
|
+
},
|
|
8347
|
+
"deprecated": "Use _inputs instead.",
|
|
8348
|
+
"description": "Now part of _inputs.*.options.",
|
|
8349
|
+
"markdownDescription": "Now part of _inputs.*.options.",
|
|
8350
|
+
"type": "object"
|
|
8351
|
+
},
|
|
8352
|
+
"_select_data": {
|
|
8353
|
+
"additionalProperties": {
|
|
8354
|
+
"$ref": "#/definitions/SelectValues"
|
|
8355
|
+
},
|
|
8356
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
8357
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
8358
|
+
"type": "object"
|
|
8359
|
+
},
|
|
8360
|
+
"_snippets": {
|
|
8361
|
+
"additionalProperties": {
|
|
8362
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
8363
|
+
},
|
|
8364
|
+
"description": "Configuration for custom snippets.",
|
|
8365
|
+
"markdownDescription": "Configuration for custom snippets.",
|
|
8366
|
+
"type": "object"
|
|
8367
|
+
},
|
|
8368
|
+
"_snippets_definitions": {
|
|
8369
|
+
"additionalProperties": {
|
|
8370
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
8371
|
+
},
|
|
8372
|
+
"description": "Extended option used when creating more complex custom snippets.",
|
|
8373
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
8374
|
+
"type": "object"
|
|
8375
|
+
},
|
|
8376
|
+
"_snippets_imports": {
|
|
8377
|
+
"$ref": "#/definitions/SnippetsImports",
|
|
8378
|
+
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.",
|
|
8379
|
+
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`."
|
|
8380
|
+
},
|
|
8381
|
+
"_snippets_templates": {
|
|
8382
|
+
"additionalProperties": {
|
|
8383
|
+
"$ref": "#/definitions/SnippetConfig"
|
|
8384
|
+
},
|
|
8385
|
+
"description": "Extended option used when creating more complex custom snippets.",
|
|
8386
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
8387
|
+
"type": "object"
|
|
8388
|
+
},
|
|
8389
|
+
"_structures": {
|
|
8390
|
+
"additionalProperties": {
|
|
8391
|
+
"$ref": "#/definitions/Structure"
|
|
8392
|
+
},
|
|
8393
|
+
"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.",
|
|
8394
|
+
"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.",
|
|
8395
|
+
"type": "object"
|
|
8396
|
+
},
|
|
8397
|
+
"base_url": {
|
|
8398
|
+
"description": "The subpath where your output files are hosted.",
|
|
8399
|
+
"markdownDescription": "The subpath where your output files are hosted.",
|
|
8400
|
+
"type": "string"
|
|
8401
|
+
},
|
|
8402
|
+
"collection_groups": {
|
|
8403
|
+
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
8404
|
+
"items": {
|
|
8405
|
+
"$ref": "#/definitions/CollectionGroup"
|
|
8406
|
+
},
|
|
8407
|
+
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
8408
|
+
"type": "array"
|
|
8409
|
+
},
|
|
8410
|
+
"collections_config": {
|
|
8411
|
+
"additionalProperties": {
|
|
8412
|
+
"$ref": "#/definitions/CollectionConfig"
|
|
8413
|
+
},
|
|
8414
|
+
"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.",
|
|
8415
|
+
"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.",
|
|
8416
|
+
"type": "object"
|
|
8417
|
+
},
|
|
8418
|
+
"commit_templates": {
|
|
8419
|
+
"description": "Templates for commit messages when saving changes.",
|
|
8420
|
+
"items": {
|
|
8421
|
+
"$ref": "#/definitions/CommitTemplate"
|
|
8422
|
+
},
|
|
8423
|
+
"markdownDescription": "Templates for commit messages when saving changes.",
|
|
8424
|
+
"type": "array"
|
|
8425
|
+
},
|
|
8426
|
+
"data_config": {
|
|
8427
|
+
"additionalProperties": {
|
|
8428
|
+
"$ref": "#/definitions/DataConfigEntry"
|
|
8429
|
+
},
|
|
8430
|
+
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
8431
|
+
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
8432
|
+
"type": "object"
|
|
8433
|
+
},
|
|
8434
|
+
"editor": {
|
|
8435
|
+
"$ref": "#/definitions/Editor",
|
|
8436
|
+
"description": "Contains settings for the default editor actions on your site.",
|
|
8437
|
+
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
8438
|
+
},
|
|
8439
|
+
"file_config": {
|
|
8440
|
+
"additionalProperties": {
|
|
8441
|
+
"$ref": "#/definitions/FileConfigEntry"
|
|
8442
|
+
},
|
|
8443
|
+
"description": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
8444
|
+
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.",
|
|
8445
|
+
"type": "object"
|
|
8446
|
+
},
|
|
8447
|
+
"markdown": {
|
|
8448
|
+
"$ref": "#/definitions/MarkdownSettings",
|
|
8449
|
+
"description": "Contains settings for various Markdown engines.",
|
|
8450
|
+
"markdownDescription": "Contains settings for various Markdown engines."
|
|
8451
|
+
},
|
|
8452
|
+
"paths": {
|
|
8453
|
+
"$ref": "#/definitions/Paths",
|
|
8454
|
+
"description": "Paths to where new asset files are uploaded to. They also set the default path when choosing existing images, and linking to existing files. Each path is relative to global `source`. Defaults to the global `paths`.",
|
|
8455
|
+
"markdownDescription": "Paths to where new asset files are uploaded to. They also set the default path when choosing\nexisting images, and linking to existing files. Each path is relative to global `source`.\nDefaults to the global `paths`."
|
|
8456
|
+
},
|
|
8457
|
+
"source": {
|
|
8458
|
+
"description": "Base path to your site source files, relative to the root folder.",
|
|
8459
|
+
"markdownDescription": "Base path to your site source files, relative to the root folder.",
|
|
8460
|
+
"type": "string"
|
|
8461
|
+
},
|
|
8462
|
+
"source_editor": {
|
|
8463
|
+
"$ref": "#/definitions/SourceEditor",
|
|
8464
|
+
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
8465
|
+
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
8466
|
+
},
|
|
8467
|
+
"timezone": {
|
|
8468
|
+
"$ref": "#/definitions/Timezone",
|
|
8469
|
+
"default": "Etc/UTC",
|
|
8470
|
+
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
8471
|
+
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
8625
8472
|
}
|
|
8626
|
-
}
|
|
8473
|
+
},
|
|
8474
|
+
"type": "object"
|
|
8627
8475
|
}
|