@cloudcannon/configuration-types 0.0.18 → 0.0.20
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/dist/cloudcannon-config.schema.json +521 -331
- package/package.json +1 -1
- package/src/build-coupled.d.ts +7 -7
- package/src/configuration.d.ts +302 -146
- package/src/index.d.ts +20 -0
- package/src/markdown.d.ts +15 -10
|
@@ -4,56 +4,68 @@
|
|
|
4
4
|
"additionalProperties": false,
|
|
5
5
|
"definitions": {
|
|
6
6
|
"AddOption": {
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
7
|
+
"anyOf": [
|
|
8
|
+
{
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"base_path": {
|
|
12
|
+
"description": "Enforces a path for new files to be created in, regardless of path the user is currently navigated to within the collection file list. Relative to the path of the collection defined in collection. Defaults to the path within the collection the user is currently navigated to.",
|
|
13
|
+
"markdownDescription": "Enforces a path for new files to be created in, regardless of path the user is currently\nnavigated to within the collection file list. Relative to the path of the collection\ndefined in collection. Defaults to the path within the collection the user is currently\nnavigated to.",
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"collection": {
|
|
17
|
+
"description": "Sets which collection this action is creating a file in. This is used when matching the value for schema. Defaults to the containing collection these `add_options` are configured in.",
|
|
18
|
+
"markdownDescription": "Sets which collection this action is creating a file in. This is used when matching the\nvalue for schema. Defaults to the containing collection these `add_options` are configured\nin.",
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"default_content_file": {
|
|
22
|
+
"description": "The path to a file used to populate the initial contents of a new file if no schemas are configured. We recommend using schemas, and this is ignored if a schema is available.",
|
|
23
|
+
"markdownDescription": "The path to a file used to populate the initial contents of a new file if no schemas are\nconfigured. We recommend using schemas, and this is ignored if a schema is available.",
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"editor": {
|
|
27
|
+
"$ref": "#/definitions/EditorKey",
|
|
28
|
+
"description": "The editor to open the new file in. Defaults to an appropriate editor for new file's type if possible. If no default editor can be calculated, or the editor does not support the new file type, a warning is shown in place of the editor.",
|
|
29
|
+
"markdownDescription": "The editor to open the new file in. Defaults to an appropriate editor for new file's type\nif possible. If no default editor can be calculated, or the editor does not support the new\nfile type, a warning is shown in place of the editor."
|
|
30
|
+
},
|
|
31
|
+
"icon": {
|
|
32
|
+
"$ref": "#/definitions/Icon",
|
|
33
|
+
"description": "The icon next to the text in the menu item. Defaults to using icon from the matching schema if set, then falls back to add.",
|
|
34
|
+
"markdownDescription": "The icon next to the text in the menu item. Defaults to using icon from the matching schema\nif set, then falls back to add."
|
|
35
|
+
},
|
|
36
|
+
"name": {
|
|
37
|
+
"description": "The text displayed for the menu item. Defaults to using name from the matching schema if set.",
|
|
38
|
+
"markdownDescription": "The text displayed for the menu item. Defaults to using name from the matching schema if\nset.",
|
|
39
|
+
"type": "string"
|
|
40
|
+
},
|
|
41
|
+
"schema": {
|
|
42
|
+
"description": "The schema that new files are created from with this action. This schema is not restricted to the containing collection, and is instead relative to the collection specified with collection. Defaults to default if schemas are configured for the collection.",
|
|
43
|
+
"markdownDescription": "The schema that new files are created from with this action. This schema is not restricted\nto the containing collection, and is instead relative to the collection specified with\ncollection. Defaults to default if schemas are configured for the collection.",
|
|
44
|
+
"type": "string"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"type": "object"
|
|
43
48
|
},
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
49
|
+
{
|
|
50
|
+
"additionalProperties": false,
|
|
51
|
+
"properties": {
|
|
52
|
+
"href": {
|
|
53
|
+
"description": "The link that opens when the option is clicked. Can either be an external or internal link. If internal, the link is relative to the current site.",
|
|
54
|
+
"markdownDescription": "The link that opens when the option is clicked. Can either be an external or internal link.\nIf internal, the link is relative to the current site.",
|
|
55
|
+
"type": "string"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"required": [
|
|
59
|
+
"href"
|
|
60
|
+
],
|
|
61
|
+
"type": "object"
|
|
48
62
|
}
|
|
49
|
-
|
|
50
|
-
"type": "object"
|
|
63
|
+
]
|
|
51
64
|
},
|
|
52
65
|
"ArrayInput": {
|
|
53
66
|
"additionalProperties": false,
|
|
54
67
|
"properties": {
|
|
55
68
|
"cascade": {
|
|
56
|
-
"default": true,
|
|
57
69
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
58
70
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
59
71
|
"type": "boolean"
|
|
@@ -122,6 +134,8 @@
|
|
|
122
134
|
},
|
|
123
135
|
"type": {
|
|
124
136
|
"const": "array",
|
|
137
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
138
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
125
139
|
"type": "string"
|
|
126
140
|
}
|
|
127
141
|
},
|
|
@@ -134,9 +148,13 @@
|
|
|
134
148
|
"additionalProperties": false,
|
|
135
149
|
"properties": {
|
|
136
150
|
"empty_type": {
|
|
137
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
138
151
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
139
|
-
"
|
|
152
|
+
"enum": [
|
|
153
|
+
"null",
|
|
154
|
+
"array"
|
|
155
|
+
],
|
|
156
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
157
|
+
"type": "string"
|
|
140
158
|
},
|
|
141
159
|
"structures": {
|
|
142
160
|
"anyOf": [
|
|
@@ -168,7 +186,6 @@
|
|
|
168
186
|
"additionalProperties": false,
|
|
169
187
|
"properties": {
|
|
170
188
|
"cascade": {
|
|
171
|
-
"default": true,
|
|
172
189
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
173
190
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
174
191
|
"type": "boolean"
|
|
@@ -230,15 +247,28 @@
|
|
|
230
247
|
"markdownDescription": "Optionally changes the text above this input.",
|
|
231
248
|
"type": "string"
|
|
232
249
|
},
|
|
233
|
-
"
|
|
250
|
+
"options": {
|
|
234
251
|
"anyOf": [
|
|
235
252
|
{
|
|
236
|
-
"$ref": "#/definitions/
|
|
253
|
+
"$ref": "#/definitions/WithEmptyTypeText"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"$ref": "#/definitions/WithEmptyTypeNumber"
|
|
237
257
|
},
|
|
238
258
|
{
|
|
239
|
-
"
|
|
259
|
+
"$ref": "#/definitions/WithEmptyTypeObject"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"$ref": "#/definitions/WithEmptyTypeArray"
|
|
240
263
|
}
|
|
241
|
-
]
|
|
264
|
+
],
|
|
265
|
+
"description": "Options that are specific to this `type` of input.",
|
|
266
|
+
"markdownDescription": "Options that are specific to this `type` of input."
|
|
267
|
+
},
|
|
268
|
+
"type": {
|
|
269
|
+
"$ref": "#/definitions/InputType",
|
|
270
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
271
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves."
|
|
242
272
|
}
|
|
243
273
|
},
|
|
244
274
|
"type": "object"
|
|
@@ -260,16 +290,19 @@
|
|
|
260
290
|
"type": "array"
|
|
261
291
|
},
|
|
262
292
|
"blockquote": {
|
|
293
|
+
"default": true,
|
|
263
294
|
"description": "Enables a control to wrap blocks of text in block quotes.",
|
|
264
295
|
"markdownDescription": "Enables a control to wrap blocks of text in block quotes.",
|
|
265
296
|
"type": "boolean"
|
|
266
297
|
},
|
|
267
298
|
"bold": {
|
|
299
|
+
"default": true,
|
|
268
300
|
"description": "Enables a control to set selected text to bold.",
|
|
269
301
|
"markdownDescription": "Enables a control to set selected text to bold.",
|
|
270
302
|
"type": "boolean"
|
|
271
303
|
},
|
|
272
304
|
"bulletedlist": {
|
|
305
|
+
"default": true,
|
|
273
306
|
"description": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list.",
|
|
274
307
|
"markdownDescription": "Enables a control to insert an unordered list, or to convert selected blocks of text into a\nunordered list.",
|
|
275
308
|
"type": "boolean"
|
|
@@ -280,26 +313,31 @@
|
|
|
280
313
|
"type": "string"
|
|
281
314
|
},
|
|
282
315
|
"code": {
|
|
316
|
+
"default": false,
|
|
283
317
|
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
284
318
|
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
285
319
|
"type": "boolean"
|
|
286
320
|
},
|
|
287
321
|
"code_block": {
|
|
322
|
+
"default": false,
|
|
288
323
|
"description": "Enables a control to insert a code block.",
|
|
289
324
|
"markdownDescription": "Enables a control to insert a code block.",
|
|
290
325
|
"type": "boolean"
|
|
291
326
|
},
|
|
292
327
|
"code_inline": {
|
|
328
|
+
"default": false,
|
|
293
329
|
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
294
330
|
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
295
331
|
"type": "boolean"
|
|
296
332
|
},
|
|
297
333
|
"copyformatting": {
|
|
334
|
+
"default": false,
|
|
298
335
|
"description": "Enables a control to copy formatting from text to other text. Only applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other styles or formatting.",
|
|
299
336
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
300
337
|
"type": "boolean"
|
|
301
338
|
},
|
|
302
339
|
"embed": {
|
|
340
|
+
"default": false,
|
|
303
341
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
304
342
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
305
343
|
"type": "boolean"
|
|
@@ -311,6 +349,7 @@
|
|
|
311
349
|
"type": "boolean"
|
|
312
350
|
},
|
|
313
351
|
"format": {
|
|
352
|
+
"default": "p h1 h2 h3 h4 h5 h6",
|
|
314
353
|
"description": "Enables a drop down menu for structured text. Has options for \"p\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\". Set as space separated options (e.g. \"p h1 h2\").",
|
|
315
354
|
"markdownDescription": "Enables a drop down menu for structured text. Has options for \"p\", \"h1\", \"h2\", \"h3\", \"h4\",\n\"h5\", \"h6\". Set as space separated options (e.g. \"p h1 h2\").",
|
|
316
355
|
"type": "string"
|
|
@@ -321,11 +360,13 @@
|
|
|
321
360
|
"type": "number"
|
|
322
361
|
},
|
|
323
362
|
"horizontalrule": {
|
|
363
|
+
"default": false,
|
|
324
364
|
"description": "Enables a control to insert a horizontal rule.",
|
|
325
365
|
"markdownDescription": "Enables a control to insert a horizontal rule.",
|
|
326
366
|
"type": "boolean"
|
|
327
367
|
},
|
|
328
368
|
"image": {
|
|
369
|
+
"default": true,
|
|
329
370
|
"description": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
330
371
|
"markdownDescription": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
331
372
|
"type": "boolean"
|
|
@@ -337,11 +378,13 @@
|
|
|
337
378
|
"type": "boolean"
|
|
338
379
|
},
|
|
339
380
|
"indent": {
|
|
381
|
+
"default": false,
|
|
340
382
|
"description": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
341
383
|
"markdownDescription": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
342
384
|
"type": "boolean"
|
|
343
385
|
},
|
|
344
386
|
"italic": {
|
|
387
|
+
"default": true,
|
|
345
388
|
"description": "Enables a control to italicize selected text.",
|
|
346
389
|
"markdownDescription": "Enables a control to italicize selected text.",
|
|
347
390
|
"type": "boolean"
|
|
@@ -357,6 +400,7 @@
|
|
|
357
400
|
"type": "string"
|
|
358
401
|
},
|
|
359
402
|
"link": {
|
|
403
|
+
"default": true,
|
|
360
404
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
361
405
|
"markdownDescription": "Enables a control to create hyperlinks around selected text.",
|
|
362
406
|
"type": "boolean"
|
|
@@ -372,11 +416,13 @@
|
|
|
372
416
|
"type": "string"
|
|
373
417
|
},
|
|
374
418
|
"numberedlist": {
|
|
419
|
+
"default": true,
|
|
375
420
|
"description": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list.",
|
|
376
421
|
"markdownDescription": "Enables a control to insert a numbered list, or to convert selected blocks of text into a\nnumbered list.",
|
|
377
422
|
"type": "boolean"
|
|
378
423
|
},
|
|
379
424
|
"outdent": {
|
|
425
|
+
"default": false,
|
|
380
426
|
"description": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
381
427
|
"markdownDescription": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
382
428
|
"type": "boolean"
|
|
@@ -393,6 +439,7 @@
|
|
|
393
439
|
"type": "boolean"
|
|
394
440
|
},
|
|
395
441
|
"redo": {
|
|
442
|
+
"default": false,
|
|
396
443
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
397
444
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through\nstandard OS-specific keyboard shortcuts.",
|
|
398
445
|
"type": "boolean"
|
|
@@ -403,6 +450,7 @@
|
|
|
403
450
|
"type": "boolean"
|
|
404
451
|
},
|
|
405
452
|
"removeformat": {
|
|
453
|
+
"default": true,
|
|
406
454
|
"description": "Enables the control to remove formatting from text. Applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles or formatting.",
|
|
407
455
|
"markdownDescription": "Enables the control to remove formatting from text. Applies to formatting from `bold`,\n`italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles\nor formatting.",
|
|
408
456
|
"type": "boolean"
|
|
@@ -449,11 +497,13 @@
|
|
|
449
497
|
"type": "array"
|
|
450
498
|
},
|
|
451
499
|
"snippet": {
|
|
500
|
+
"default": true,
|
|
452
501
|
"description": "Enables a control to insert snippets, if any are available.",
|
|
453
502
|
"markdownDescription": "Enables a control to insert snippets, if any are available.",
|
|
454
503
|
"type": "boolean"
|
|
455
504
|
},
|
|
456
505
|
"strike": {
|
|
506
|
+
"default": false,
|
|
457
507
|
"description": "Enables a control to strike selected text.",
|
|
458
508
|
"markdownDescription": "Enables a control to strike selected text.",
|
|
459
509
|
"type": "boolean"
|
|
@@ -464,26 +514,31 @@
|
|
|
464
514
|
"type": "string"
|
|
465
515
|
},
|
|
466
516
|
"subscript": {
|
|
517
|
+
"default": false,
|
|
467
518
|
"description": "Enables a control to set selected text to subscript.",
|
|
468
519
|
"markdownDescription": "Enables a control to set selected text to subscript.",
|
|
469
520
|
"type": "boolean"
|
|
470
521
|
},
|
|
471
522
|
"superscript": {
|
|
523
|
+
"default": false,
|
|
472
524
|
"description": "Enables a control to set selected text to superscript.",
|
|
473
525
|
"markdownDescription": "Enables a control to set selected text to superscript.",
|
|
474
526
|
"type": "boolean"
|
|
475
527
|
},
|
|
476
528
|
"table": {
|
|
529
|
+
"default": false,
|
|
477
530
|
"description": "Enables a control to insert a table. Further options for table cells are available in the context menu for cells within the editor.",
|
|
478
531
|
"markdownDescription": "Enables a control to insert a table. Further options for table cells are available in the\ncontext menu for cells within the editor.",
|
|
479
532
|
"type": "boolean"
|
|
480
533
|
},
|
|
481
534
|
"underline": {
|
|
535
|
+
"default": false,
|
|
482
536
|
"description": "Enables a control to underline selected text.",
|
|
483
537
|
"markdownDescription": "Enables a control to underline selected text.",
|
|
484
538
|
"type": "boolean"
|
|
485
539
|
},
|
|
486
540
|
"undo": {
|
|
541
|
+
"default": false,
|
|
487
542
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
488
543
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific\nkeyboard shortcuts.",
|
|
489
544
|
"type": "boolean"
|
|
@@ -500,7 +555,6 @@
|
|
|
500
555
|
"additionalProperties": false,
|
|
501
556
|
"properties": {
|
|
502
557
|
"cascade": {
|
|
503
|
-
"default": true,
|
|
504
558
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
505
559
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
506
560
|
"type": "boolean"
|
|
@@ -574,9 +628,13 @@
|
|
|
574
628
|
"type": "boolean"
|
|
575
629
|
},
|
|
576
630
|
"empty_type": {
|
|
577
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
578
631
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
579
|
-
"
|
|
632
|
+
"enum": [
|
|
633
|
+
"null",
|
|
634
|
+
"string"
|
|
635
|
+
],
|
|
636
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
637
|
+
"type": "string"
|
|
580
638
|
},
|
|
581
639
|
"picker_preview": {
|
|
582
640
|
"$ref": "#/definitions/Preview",
|
|
@@ -632,6 +690,8 @@
|
|
|
632
690
|
},
|
|
633
691
|
"type": {
|
|
634
692
|
"const": "choice",
|
|
693
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
694
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
635
695
|
"type": "string"
|
|
636
696
|
}
|
|
637
697
|
},
|
|
@@ -644,7 +704,6 @@
|
|
|
644
704
|
"additionalProperties": false,
|
|
645
705
|
"properties": {
|
|
646
706
|
"cascade": {
|
|
647
|
-
"default": true,
|
|
648
707
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
649
708
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
650
709
|
"type": "boolean"
|
|
@@ -713,6 +772,8 @@
|
|
|
713
772
|
},
|
|
714
773
|
"type": {
|
|
715
774
|
"const": "code",
|
|
775
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
776
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
716
777
|
"type": "string"
|
|
717
778
|
}
|
|
718
779
|
},
|
|
@@ -725,9 +786,13 @@
|
|
|
725
786
|
"additionalProperties": false,
|
|
726
787
|
"properties": {
|
|
727
788
|
"empty_type": {
|
|
728
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
729
789
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
730
|
-
"
|
|
790
|
+
"enum": [
|
|
791
|
+
"null",
|
|
792
|
+
"string"
|
|
793
|
+
],
|
|
794
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
795
|
+
"type": "string"
|
|
731
796
|
},
|
|
732
797
|
"max_visible_lines": {
|
|
733
798
|
"default": 30,
|
|
@@ -770,22 +835,6 @@
|
|
|
770
835
|
"CollectionConfig": {
|
|
771
836
|
"additionalProperties": false,
|
|
772
837
|
"properties": {
|
|
773
|
-
"_array_structures": {
|
|
774
|
-
"additionalProperties": {},
|
|
775
|
-
"deprecated": "Use _structures instead.",
|
|
776
|
-
"description": "Now known as _structures.",
|
|
777
|
-
"markdownDescription": "Now known as _structures.",
|
|
778
|
-
"type": "object"
|
|
779
|
-
},
|
|
780
|
-
"_comments": {
|
|
781
|
-
"additionalProperties": {
|
|
782
|
-
"type": "string"
|
|
783
|
-
},
|
|
784
|
-
"deprecated": "Use _inputs instead.",
|
|
785
|
-
"description": "Now part of _inputs.*.comment.",
|
|
786
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
787
|
-
"type": "object"
|
|
788
|
-
},
|
|
789
838
|
"_editables": {
|
|
790
839
|
"$ref": "#/definitions/Editables",
|
|
791
840
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -808,16 +857,6 @@
|
|
|
808
857
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
809
858
|
"type": "object"
|
|
810
859
|
},
|
|
811
|
-
"_options": {
|
|
812
|
-
"additionalProperties": {
|
|
813
|
-
"additionalProperties": {},
|
|
814
|
-
"type": "object"
|
|
815
|
-
},
|
|
816
|
-
"deprecated": "Use _inputs instead.",
|
|
817
|
-
"description": "Now part of _inputs.*.options.",
|
|
818
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
819
|
-
"type": "object"
|
|
820
|
-
},
|
|
821
860
|
"_select_data": {
|
|
822
861
|
"additionalProperties": {
|
|
823
862
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -894,6 +933,7 @@
|
|
|
894
933
|
},
|
|
895
934
|
"icon": {
|
|
896
935
|
"$ref": "#/definitions/Icon",
|
|
936
|
+
"default": "notes",
|
|
897
937
|
"description": "Sets an icon to use alongside references to this collection.",
|
|
898
938
|
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
899
939
|
},
|
|
@@ -913,8 +953,8 @@
|
|
|
913
953
|
"type": "string"
|
|
914
954
|
},
|
|
915
955
|
"path": {
|
|
916
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source
|
|
917
|
-
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to source
|
|
956
|
+
"description": "The top-most folder where the files in this collection are stored. It is relative to `source`.",
|
|
957
|
+
"markdownDescription": "The top-most folder where the files in this collection are stored. It is relative to `source`.",
|
|
918
958
|
"type": "string"
|
|
919
959
|
},
|
|
920
960
|
"preview": {
|
|
@@ -959,6 +999,9 @@
|
|
|
959
999
|
"type": "string"
|
|
960
1000
|
}
|
|
961
1001
|
},
|
|
1002
|
+
"required": [
|
|
1003
|
+
"path"
|
|
1004
|
+
],
|
|
962
1005
|
"type": "object"
|
|
963
1006
|
},
|
|
964
1007
|
"CollectionGroup": {
|
|
@@ -988,7 +1031,6 @@
|
|
|
988
1031
|
"additionalProperties": false,
|
|
989
1032
|
"properties": {
|
|
990
1033
|
"cascade": {
|
|
991
|
-
"default": true,
|
|
992
1034
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
993
1035
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
994
1036
|
"type": "boolean"
|
|
@@ -1057,6 +1099,8 @@
|
|
|
1057
1099
|
},
|
|
1058
1100
|
"type": {
|
|
1059
1101
|
"const": "color",
|
|
1102
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
1103
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
1060
1104
|
"type": "string"
|
|
1061
1105
|
}
|
|
1062
1106
|
},
|
|
@@ -1074,9 +1118,13 @@
|
|
|
1074
1118
|
"type": "boolean"
|
|
1075
1119
|
},
|
|
1076
1120
|
"empty_type": {
|
|
1077
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
1078
1121
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1079
|
-
"
|
|
1122
|
+
"enum": [
|
|
1123
|
+
"null",
|
|
1124
|
+
"string"
|
|
1125
|
+
],
|
|
1126
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1127
|
+
"type": "string"
|
|
1080
1128
|
},
|
|
1081
1129
|
"format": {
|
|
1082
1130
|
"description": "Sets what format the color value is saved as. Defaults to the naming convention, or HEX if that is unset.",
|
|
@@ -1122,8 +1170,8 @@
|
|
|
1122
1170
|
"type": "string"
|
|
1123
1171
|
},
|
|
1124
1172
|
"template_string": {
|
|
1125
|
-
"description": "Set the string for the commit template. This will only be used if template_path is not set.",
|
|
1126
|
-
"markdownDescription": "Set the string for the commit template. This will only be used if template_path is not set.",
|
|
1173
|
+
"description": "Set the string for the commit template. This will only be used if `template_path` is not set.",
|
|
1174
|
+
"markdownDescription": "Set the string for the commit template. This will only be used if `template_path` is not set.",
|
|
1127
1175
|
"type": "string"
|
|
1128
1176
|
}
|
|
1129
1177
|
},
|
|
@@ -1195,7 +1243,6 @@
|
|
|
1195
1243
|
"additionalProperties": false,
|
|
1196
1244
|
"properties": {
|
|
1197
1245
|
"cascade": {
|
|
1198
|
-
"default": true,
|
|
1199
1246
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
1200
1247
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
1201
1248
|
"type": "boolean"
|
|
@@ -1259,14 +1306,16 @@
|
|
|
1259
1306
|
},
|
|
1260
1307
|
"options": {
|
|
1261
1308
|
"$ref": "#/definitions/DateInputOptions",
|
|
1262
|
-
"description": "Options that are specific to
|
|
1263
|
-
"markdownDescription": "Options that are specific to
|
|
1309
|
+
"description": "Options that are specific to Date inputs.",
|
|
1310
|
+
"markdownDescription": "Options that are specific to Date inputs."
|
|
1264
1311
|
},
|
|
1265
1312
|
"type": {
|
|
1313
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
1266
1314
|
"enum": [
|
|
1267
1315
|
"date",
|
|
1268
1316
|
"datetime"
|
|
1269
1317
|
],
|
|
1318
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
1270
1319
|
"type": "string"
|
|
1271
1320
|
}
|
|
1272
1321
|
},
|
|
@@ -1279,12 +1328,17 @@
|
|
|
1279
1328
|
"additionalProperties": false,
|
|
1280
1329
|
"properties": {
|
|
1281
1330
|
"empty_type": {
|
|
1282
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
1283
1331
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1284
|
-
"
|
|
1332
|
+
"enum": [
|
|
1333
|
+
"null",
|
|
1334
|
+
"string"
|
|
1335
|
+
],
|
|
1336
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1337
|
+
"type": "string"
|
|
1285
1338
|
},
|
|
1286
1339
|
"timezone": {
|
|
1287
1340
|
"$ref": "#/definitions/Timezone",
|
|
1341
|
+
"default": "Etc/UTC",
|
|
1288
1342
|
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with. Defaults to the global `timezone`.",
|
|
1289
1343
|
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with. Defaults to the global `timezone`."
|
|
1290
1344
|
}
|
|
@@ -1296,6 +1350,7 @@
|
|
|
1296
1350
|
"properties": {
|
|
1297
1351
|
"icon": {
|
|
1298
1352
|
"$ref": "#/definitions/Icon",
|
|
1353
|
+
"default": "auto_stories",
|
|
1299
1354
|
"description": "The icon displayed next to the link.",
|
|
1300
1355
|
"markdownDescription": "The icon displayed next to the link."
|
|
1301
1356
|
},
|
|
@@ -1369,53 +1424,9 @@
|
|
|
1369
1424
|
],
|
|
1370
1425
|
"type": "string"
|
|
1371
1426
|
},
|
|
1372
|
-
"EmptyTypeArray": {
|
|
1373
|
-
"enum": [
|
|
1374
|
-
"null",
|
|
1375
|
-
"array"
|
|
1376
|
-
],
|
|
1377
|
-
"type": "string"
|
|
1378
|
-
},
|
|
1379
|
-
"EmptyTypeNumber": {
|
|
1380
|
-
"enum": [
|
|
1381
|
-
"null",
|
|
1382
|
-
"number"
|
|
1383
|
-
],
|
|
1384
|
-
"type": "string"
|
|
1385
|
-
},
|
|
1386
|
-
"EmptyTypeObject": {
|
|
1387
|
-
"enum": [
|
|
1388
|
-
"null",
|
|
1389
|
-
"object"
|
|
1390
|
-
],
|
|
1391
|
-
"type": "string"
|
|
1392
|
-
},
|
|
1393
|
-
"EmptyTypeText": {
|
|
1394
|
-
"enum": [
|
|
1395
|
-
"null",
|
|
1396
|
-
"string"
|
|
1397
|
-
],
|
|
1398
|
-
"type": "string"
|
|
1399
|
-
},
|
|
1400
1427
|
"FileConfigEntry": {
|
|
1401
1428
|
"additionalProperties": false,
|
|
1402
1429
|
"properties": {
|
|
1403
|
-
"_array_structures": {
|
|
1404
|
-
"additionalProperties": {},
|
|
1405
|
-
"deprecated": "Use _structures instead.",
|
|
1406
|
-
"description": "Now known as _structures.",
|
|
1407
|
-
"markdownDescription": "Now known as _structures.",
|
|
1408
|
-
"type": "object"
|
|
1409
|
-
},
|
|
1410
|
-
"_comments": {
|
|
1411
|
-
"additionalProperties": {
|
|
1412
|
-
"type": "string"
|
|
1413
|
-
},
|
|
1414
|
-
"deprecated": "Use _inputs instead.",
|
|
1415
|
-
"description": "Now part of _inputs.*.comment.",
|
|
1416
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1417
|
-
"type": "object"
|
|
1418
|
-
},
|
|
1419
1430
|
"_editables": {
|
|
1420
1431
|
"$ref": "#/definitions/Editables",
|
|
1421
1432
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -1438,16 +1449,6 @@
|
|
|
1438
1449
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1439
1450
|
"type": "object"
|
|
1440
1451
|
},
|
|
1441
|
-
"_options": {
|
|
1442
|
-
"additionalProperties": {
|
|
1443
|
-
"additionalProperties": {},
|
|
1444
|
-
"type": "object"
|
|
1445
|
-
},
|
|
1446
|
-
"deprecated": "Use _inputs instead.",
|
|
1447
|
-
"description": "Now part of _inputs.*.options.",
|
|
1448
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
1449
|
-
"type": "object"
|
|
1450
|
-
},
|
|
1451
1452
|
"_select_data": {
|
|
1452
1453
|
"additionalProperties": {
|
|
1453
1454
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -1489,7 +1490,6 @@
|
|
|
1489
1490
|
"additionalProperties": false,
|
|
1490
1491
|
"properties": {
|
|
1491
1492
|
"cascade": {
|
|
1492
|
-
"default": true,
|
|
1493
1493
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
1494
1494
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
1495
1495
|
"type": "boolean"
|
|
@@ -1553,14 +1553,16 @@
|
|
|
1553
1553
|
},
|
|
1554
1554
|
"options": {
|
|
1555
1555
|
"$ref": "#/definitions/FileInputOptions",
|
|
1556
|
-
"description": "Options that are specific to
|
|
1557
|
-
"markdownDescription": "Options that are specific to
|
|
1556
|
+
"description": "Options that are specific to File inputs.",
|
|
1557
|
+
"markdownDescription": "Options that are specific to File inputs."
|
|
1558
1558
|
},
|
|
1559
1559
|
"type": {
|
|
1560
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
1560
1561
|
"enum": [
|
|
1561
1562
|
"file",
|
|
1562
1563
|
"document"
|
|
1563
1564
|
],
|
|
1565
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
1564
1566
|
"type": "string"
|
|
1565
1567
|
}
|
|
1566
1568
|
},
|
|
@@ -1581,12 +1583,11 @@
|
|
|
1581
1583
|
"type": "array"
|
|
1582
1584
|
},
|
|
1583
1585
|
{
|
|
1584
|
-
"const": "*",
|
|
1585
1586
|
"type": "string"
|
|
1586
1587
|
}
|
|
1587
1588
|
],
|
|
1588
|
-
"description": "Restricts which file types are available to select or upload to this input.",
|
|
1589
|
-
"markdownDescription": "Restricts which file types are available to select or upload to this input."
|
|
1589
|
+
"description": "Restricts which file types are available to select or upload to this input. Accepted format is an array or comma-separated string of MIME types. The special value '*' means any type is accepted.",
|
|
1590
|
+
"markdownDescription": "Restricts which file types are available to select or upload to this input. Accepted format is\nan array or comma-separated string of MIME types. The special value '*' means any type is\naccepted."
|
|
1590
1591
|
},
|
|
1591
1592
|
"allowed_sources": {
|
|
1592
1593
|
"description": "If you have one or more DAMs connected to your site, you can use this key to list which asset sources can be uploaded to and selected from.",
|
|
@@ -1597,9 +1598,13 @@
|
|
|
1597
1598
|
"type": "array"
|
|
1598
1599
|
},
|
|
1599
1600
|
"empty_type": {
|
|
1600
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
1601
1601
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1602
|
-
"
|
|
1602
|
+
"enum": [
|
|
1603
|
+
"null",
|
|
1604
|
+
"string"
|
|
1605
|
+
],
|
|
1606
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1607
|
+
"type": "string"
|
|
1603
1608
|
},
|
|
1604
1609
|
"paths": {
|
|
1605
1610
|
"$ref": "#/definitions/Paths",
|
|
@@ -3834,7 +3839,6 @@
|
|
|
3834
3839
|
"additionalProperties": false,
|
|
3835
3840
|
"properties": {
|
|
3836
3841
|
"cascade": {
|
|
3837
|
-
"default": true,
|
|
3838
3842
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
3839
3843
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
3840
3844
|
"type": "boolean"
|
|
@@ -3898,11 +3902,13 @@
|
|
|
3898
3902
|
},
|
|
3899
3903
|
"options": {
|
|
3900
3904
|
"$ref": "#/definitions/ImageInputOptions",
|
|
3901
|
-
"description": "Options that are specific to
|
|
3902
|
-
"markdownDescription": "Options that are specific to
|
|
3905
|
+
"description": "Options that are specific to Image inputs.",
|
|
3906
|
+
"markdownDescription": "Options that are specific to Image inputs."
|
|
3903
3907
|
},
|
|
3904
3908
|
"type": {
|
|
3905
3909
|
"const": "image",
|
|
3910
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
3911
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
3906
3912
|
"type": "string"
|
|
3907
3913
|
}
|
|
3908
3914
|
},
|
|
@@ -3923,12 +3929,11 @@
|
|
|
3923
3929
|
"type": "array"
|
|
3924
3930
|
},
|
|
3925
3931
|
{
|
|
3926
|
-
"const": "*",
|
|
3927
3932
|
"type": "string"
|
|
3928
3933
|
}
|
|
3929
3934
|
],
|
|
3930
|
-
"description": "Restricts which file types are available to select or upload to this input.",
|
|
3931
|
-
"markdownDescription": "Restricts which file types are available to select or upload to this input."
|
|
3935
|
+
"description": "Restricts which file types are available to select or upload to this input. Accepted format is an array or comma-separated string of MIME types. The special value '*' means any type is accepted.",
|
|
3936
|
+
"markdownDescription": "Restricts which file types are available to select or upload to this input. Accepted format is\nan array or comma-separated string of MIME types. The special value '*' means any type is\naccepted."
|
|
3932
3937
|
},
|
|
3933
3938
|
"allowed_sources": {
|
|
3934
3939
|
"description": "If you have one or more DAMs connected to your site, you can use this key to list which asset sources can be uploaded to and selected from.",
|
|
@@ -3939,9 +3944,13 @@
|
|
|
3939
3944
|
"type": "array"
|
|
3940
3945
|
},
|
|
3941
3946
|
"empty_type": {
|
|
3942
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
3943
3947
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
3944
|
-
"
|
|
3948
|
+
"enum": [
|
|
3949
|
+
"null",
|
|
3950
|
+
"string"
|
|
3951
|
+
],
|
|
3952
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
3953
|
+
"type": "string"
|
|
3945
3954
|
},
|
|
3946
3955
|
"expandable": {
|
|
3947
3956
|
"default": false,
|
|
@@ -4114,7 +4123,8 @@
|
|
|
4114
4123
|
"choice",
|
|
4115
4124
|
"multichoice",
|
|
4116
4125
|
"object",
|
|
4117
|
-
"array"
|
|
4126
|
+
"array",
|
|
4127
|
+
"auto"
|
|
4118
4128
|
],
|
|
4119
4129
|
"type": "string"
|
|
4120
4130
|
},
|
|
@@ -4126,15 +4136,7 @@
|
|
|
4126
4136
|
"type": "string"
|
|
4127
4137
|
},
|
|
4128
4138
|
"LinkEditable": {
|
|
4129
|
-
"
|
|
4130
|
-
"properties": {
|
|
4131
|
-
"paths": {
|
|
4132
|
-
"$ref": "#/definitions/Paths",
|
|
4133
|
-
"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`.",
|
|
4134
|
-
"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`."
|
|
4135
|
-
}
|
|
4136
|
-
},
|
|
4137
|
-
"type": "object"
|
|
4139
|
+
"$ref": "#/definitions/WithPaths"
|
|
4138
4140
|
},
|
|
4139
4141
|
"MarkdownAttributeElementOptions": {
|
|
4140
4142
|
"additionalProperties": {
|
|
@@ -4154,10 +4156,13 @@
|
|
|
4154
4156
|
"additionalProperties": false,
|
|
4155
4157
|
"properties": {
|
|
4156
4158
|
"engine": {
|
|
4159
|
+
"default": "kramdown",
|
|
4160
|
+
"description": "The flavor of Markdown to use to convert between HTML and Markdown.",
|
|
4157
4161
|
"enum": [
|
|
4158
4162
|
"commonmark",
|
|
4159
4163
|
"kramdown"
|
|
4160
4164
|
],
|
|
4165
|
+
"markdownDescription": "The flavor of Markdown to use to convert between HTML and Markdown.",
|
|
4161
4166
|
"type": "string"
|
|
4162
4167
|
},
|
|
4163
4168
|
"options": {
|
|
@@ -4165,8 +4170,8 @@
|
|
|
4165
4170
|
"properties": {
|
|
4166
4171
|
"attribute_elements": {
|
|
4167
4172
|
"$ref": "#/definitions/MarkdownAttributeElementOptions",
|
|
4168
|
-
"description": "Define positioning
|
|
4169
|
-
"markdownDescription": "Define positioning
|
|
4173
|
+
"description": "Define positioning behavior of Markdown attributes for different elements.",
|
|
4174
|
+
"markdownDescription": "Define positioning behavior of Markdown attributes for different elements."
|
|
4170
4175
|
},
|
|
4171
4176
|
"attributes": {
|
|
4172
4177
|
"description": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
@@ -4174,8 +4179,8 @@
|
|
|
4174
4179
|
"type": "boolean"
|
|
4175
4180
|
},
|
|
4176
4181
|
"breaks": {
|
|
4177
|
-
"description": "Convert
|
|
4178
|
-
"markdownDescription": "Convert
|
|
4182
|
+
"description": "Convert `\\n` in paragraphs into `<br>`.",
|
|
4183
|
+
"markdownDescription": "Convert `\\n` in paragraphs into `<br>`.",
|
|
4179
4184
|
"type": "boolean"
|
|
4180
4185
|
},
|
|
4181
4186
|
"code_block_fences": {
|
|
@@ -4198,8 +4203,8 @@
|
|
|
4198
4203
|
"type": "boolean"
|
|
4199
4204
|
},
|
|
4200
4205
|
"heading_ids": {
|
|
4201
|
-
"description": "Generate IDs for headings",
|
|
4202
|
-
"markdownDescription": "Generate IDs for headings",
|
|
4206
|
+
"description": "Generate IDs for headings.",
|
|
4207
|
+
"markdownDescription": "Generate IDs for headings.",
|
|
4203
4208
|
"type": "boolean"
|
|
4204
4209
|
},
|
|
4205
4210
|
"html": {
|
|
@@ -4213,8 +4218,8 @@
|
|
|
4213
4218
|
"type": "boolean"
|
|
4214
4219
|
},
|
|
4215
4220
|
"quotes": {
|
|
4216
|
-
"description": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).",
|
|
4217
|
-
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For\nexample, you can use '«»„“' for Russian, '„“‚‘' for German, and ['«\\xA0', '\\xA0»'
|
|
4221
|
+
"description": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For example, you can use `'«»„“'` for Russian, `'„“‚‘'` for German, and `['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›']` for French (including `nbsp`).",
|
|
4222
|
+
"markdownDescription": "Double + single quotes replacement pairs, when typographer enabled and smartquotes on. For\nexample, you can use `'«»„“'` for Russian, `'„“‚‘'` for German, and `['«\\xA0', '\\xA0»',\n'‹\\xA0', '\\xA0›']` for French (including `nbsp`).",
|
|
4218
4223
|
"type": "string"
|
|
4219
4224
|
},
|
|
4220
4225
|
"sentence_per_line": {
|
|
@@ -4228,18 +4233,18 @@
|
|
|
4228
4233
|
"type": "boolean"
|
|
4229
4234
|
},
|
|
4230
4235
|
"strikethrough": {
|
|
4231
|
-
"description": "Output strikes in wrapped in double tildes (e.g.
|
|
4232
|
-
"markdownDescription": "Output strikes in wrapped in double tildes (e.g.
|
|
4236
|
+
"description": "Output strikes in wrapped in double tildes (e.g. `~~strike~~`).",
|
|
4237
|
+
"markdownDescription": "Output strikes in wrapped in double tildes (e.g. `~~strike~~`).",
|
|
4233
4238
|
"type": "boolean"
|
|
4234
4239
|
},
|
|
4235
4240
|
"subscript": {
|
|
4236
|
-
"description": "Output subscript in wrapped in tildes (e.g.
|
|
4237
|
-
"markdownDescription": "Output subscript in wrapped in tildes (e.g.
|
|
4241
|
+
"description": "Output subscript in wrapped in tildes (e.g. `~sub~`).",
|
|
4242
|
+
"markdownDescription": "Output subscript in wrapped in tildes (e.g. `~sub~`).",
|
|
4238
4243
|
"type": "boolean"
|
|
4239
4244
|
},
|
|
4240
4245
|
"superscript": {
|
|
4241
|
-
"description": "Output superscript in wrapped in carets (e.g.
|
|
4242
|
-
"markdownDescription": "Output superscript in wrapped in carets (e.g.
|
|
4246
|
+
"description": "Output superscript in wrapped in carets (e.g. `^super^`).",
|
|
4247
|
+
"markdownDescription": "Output superscript in wrapped in carets (e.g. `^super^`).",
|
|
4243
4248
|
"type": "boolean"
|
|
4244
4249
|
},
|
|
4245
4250
|
"table": {
|
|
@@ -4253,13 +4258,13 @@
|
|
|
4253
4258
|
"type": "boolean"
|
|
4254
4259
|
},
|
|
4255
4260
|
"typographer": {
|
|
4256
|
-
"description": "Enable some language-neutral replacement
|
|
4257
|
-
"markdownDescription": "Enable some language-neutral replacement
|
|
4261
|
+
"description": "Enable some language-neutral replacement, as well as quotes beautification.",
|
|
4262
|
+
"markdownDescription": "Enable some language-neutral replacement, as well as quotes beautification.",
|
|
4258
4263
|
"type": "boolean"
|
|
4259
4264
|
},
|
|
4260
4265
|
"xhtml": {
|
|
4261
|
-
"description": "Use
|
|
4262
|
-
"markdownDescription": "Use
|
|
4266
|
+
"description": "Use `/` to close single tags (e.g. `<br />`).",
|
|
4267
|
+
"markdownDescription": "Use `/` to close single tags (e.g. `<br />`).",
|
|
4263
4268
|
"type": "boolean"
|
|
4264
4269
|
}
|
|
4265
4270
|
},
|
|
@@ -4714,7 +4719,6 @@
|
|
|
4714
4719
|
"additionalProperties": false,
|
|
4715
4720
|
"properties": {
|
|
4716
4721
|
"cascade": {
|
|
4717
|
-
"default": true,
|
|
4718
4722
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
4719
4723
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
4720
4724
|
"type": "boolean"
|
|
@@ -4788,9 +4792,13 @@
|
|
|
4788
4792
|
"type": "boolean"
|
|
4789
4793
|
},
|
|
4790
4794
|
"empty_type": {
|
|
4791
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
4792
4795
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4793
|
-
"
|
|
4796
|
+
"enum": [
|
|
4797
|
+
"null",
|
|
4798
|
+
"array"
|
|
4799
|
+
],
|
|
4800
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4801
|
+
"type": "string"
|
|
4794
4802
|
},
|
|
4795
4803
|
"picker_preview": {
|
|
4796
4804
|
"$ref": "#/definitions/Preview",
|
|
@@ -4846,6 +4854,8 @@
|
|
|
4846
4854
|
},
|
|
4847
4855
|
"type": {
|
|
4848
4856
|
"const": "multichoice",
|
|
4857
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
4858
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
4849
4859
|
"type": "string"
|
|
4850
4860
|
}
|
|
4851
4861
|
},
|
|
@@ -4858,7 +4868,6 @@
|
|
|
4858
4868
|
"additionalProperties": false,
|
|
4859
4869
|
"properties": {
|
|
4860
4870
|
"cascade": {
|
|
4861
|
-
"default": true,
|
|
4862
4871
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
4863
4872
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
4864
4873
|
"type": "boolean"
|
|
@@ -4938,9 +4947,13 @@
|
|
|
4938
4947
|
"type": "boolean"
|
|
4939
4948
|
},
|
|
4940
4949
|
"empty_type": {
|
|
4941
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
4942
4950
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4943
|
-
"
|
|
4951
|
+
"enum": [
|
|
4952
|
+
"null",
|
|
4953
|
+
"array"
|
|
4954
|
+
],
|
|
4955
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4956
|
+
"type": "string"
|
|
4944
4957
|
},
|
|
4945
4958
|
"picker_preview": {
|
|
4946
4959
|
"$ref": "#/definitions/Preview",
|
|
@@ -4996,6 +5009,8 @@
|
|
|
4996
5009
|
},
|
|
4997
5010
|
"type": {
|
|
4998
5011
|
"const": "multiselect",
|
|
5012
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5013
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
4999
5014
|
"type": "string"
|
|
5000
5015
|
}
|
|
5001
5016
|
},
|
|
@@ -5008,7 +5023,6 @@
|
|
|
5008
5023
|
"additionalProperties": false,
|
|
5009
5024
|
"properties": {
|
|
5010
5025
|
"cascade": {
|
|
5011
|
-
"default": true,
|
|
5012
5026
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5013
5027
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5014
5028
|
"type": "boolean"
|
|
@@ -5077,6 +5091,8 @@
|
|
|
5077
5091
|
},
|
|
5078
5092
|
"type": {
|
|
5079
5093
|
"const": "number",
|
|
5094
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5095
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
5080
5096
|
"type": "string"
|
|
5081
5097
|
}
|
|
5082
5098
|
},
|
|
@@ -5089,9 +5105,13 @@
|
|
|
5089
5105
|
"additionalProperties": false,
|
|
5090
5106
|
"properties": {
|
|
5091
5107
|
"empty_type": {
|
|
5092
|
-
"$ref": "#/definitions/EmptyTypeNumber",
|
|
5093
5108
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5094
|
-
"
|
|
5109
|
+
"enum": [
|
|
5110
|
+
"null",
|
|
5111
|
+
"number"
|
|
5112
|
+
],
|
|
5113
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5114
|
+
"type": "string"
|
|
5095
5115
|
},
|
|
5096
5116
|
"max": {
|
|
5097
5117
|
"description": "The greatest value in the range of permitted values.",
|
|
@@ -5115,7 +5135,6 @@
|
|
|
5115
5135
|
"additionalProperties": false,
|
|
5116
5136
|
"properties": {
|
|
5117
5137
|
"cascade": {
|
|
5118
|
-
"default": true,
|
|
5119
5138
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5120
5139
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5121
5140
|
"type": "boolean"
|
|
@@ -5184,6 +5203,8 @@
|
|
|
5184
5203
|
},
|
|
5185
5204
|
"type": {
|
|
5186
5205
|
"const": "object",
|
|
5206
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5207
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
5187
5208
|
"type": "string"
|
|
5188
5209
|
}
|
|
5189
5210
|
},
|
|
@@ -5196,21 +5217,32 @@
|
|
|
5196
5217
|
"additionalProperties": false,
|
|
5197
5218
|
"properties": {
|
|
5198
5219
|
"collapsed": {
|
|
5220
|
+
"default": false,
|
|
5221
|
+
"description": "Controls if this group is collapsed or expanded when first viewed.",
|
|
5222
|
+
"markdownDescription": "Controls if this group is collapsed or expanded when first viewed.",
|
|
5199
5223
|
"type": "boolean"
|
|
5200
5224
|
},
|
|
5201
5225
|
"comment": {
|
|
5226
|
+
"description": "Changes the subtext below the `heading`. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.",
|
|
5227
|
+
"markdownDescription": "Changes the subtext below the `heading`. Has no default. Supports a limited set of Markdown:\nlinks, bold, italic, subscript, superscript, and inline code elements are allowed.",
|
|
5202
5228
|
"type": "string"
|
|
5203
5229
|
},
|
|
5204
5230
|
"documentation": {
|
|
5205
|
-
"$ref": "#/definitions/Documentation"
|
|
5231
|
+
"$ref": "#/definitions/Documentation",
|
|
5232
|
+
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
5233
|
+
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
5206
5234
|
},
|
|
5207
5235
|
"heading": {
|
|
5236
|
+
"description": "The main text for the group shown when collapsed or expanded.",
|
|
5237
|
+
"markdownDescription": "The main text for the group shown when collapsed or expanded.",
|
|
5208
5238
|
"type": "string"
|
|
5209
5239
|
},
|
|
5210
5240
|
"inputs": {
|
|
5241
|
+
"description": "The keys of each input in this group.",
|
|
5211
5242
|
"items": {
|
|
5212
5243
|
"type": "string"
|
|
5213
5244
|
},
|
|
5245
|
+
"markdownDescription": "The keys of each input in this group.",
|
|
5214
5246
|
"type": "array"
|
|
5215
5247
|
}
|
|
5216
5248
|
},
|
|
@@ -5220,14 +5252,19 @@
|
|
|
5220
5252
|
"additionalProperties": false,
|
|
5221
5253
|
"properties": {
|
|
5222
5254
|
"allow_label_formatting": {
|
|
5255
|
+
"default": false,
|
|
5223
5256
|
"description": "Controls whether or not labels on mutable object entries are formatted.",
|
|
5224
5257
|
"markdownDescription": "Controls whether or not labels on mutable object entries are formatted.",
|
|
5225
5258
|
"type": "boolean"
|
|
5226
5259
|
},
|
|
5227
5260
|
"empty_type": {
|
|
5228
|
-
"$ref": "#/definitions/EmptyTypeObject",
|
|
5229
5261
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5230
|
-
"
|
|
5262
|
+
"enum": [
|
|
5263
|
+
"null",
|
|
5264
|
+
"object"
|
|
5265
|
+
],
|
|
5266
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5267
|
+
"type": "string"
|
|
5231
5268
|
},
|
|
5232
5269
|
"entries": {
|
|
5233
5270
|
"additionalProperties": false,
|
|
@@ -5277,6 +5314,7 @@
|
|
|
5277
5314
|
"type": "array"
|
|
5278
5315
|
},
|
|
5279
5316
|
"place_groups_below": {
|
|
5317
|
+
"default": false,
|
|
5280
5318
|
"description": "Controls which order input groups and ungrouped inputs appear in.",
|
|
5281
5319
|
"markdownDescription": "Controls which order input groups and ungrouped inputs appear in.",
|
|
5282
5320
|
"type": "boolean"
|
|
@@ -5299,6 +5337,7 @@
|
|
|
5299
5337
|
"markdownDescription": "Provides data formats for value of this object. When choosing an item, team members are\nprompted to choose from a number of values you have defined. `structures` applies to the object\nitself."
|
|
5300
5338
|
},
|
|
5301
5339
|
"subtype": {
|
|
5340
|
+
"default": "object",
|
|
5302
5341
|
"description": "Changes the appearance and behavior of the input.",
|
|
5303
5342
|
"enum": [
|
|
5304
5343
|
"object",
|
|
@@ -5325,13 +5364,11 @@
|
|
|
5325
5364
|
"additionalProperties": false,
|
|
5326
5365
|
"properties": {
|
|
5327
5366
|
"dam_static": {
|
|
5328
|
-
"default": "",
|
|
5329
5367
|
"description": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM Uploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5330
5368
|
"markdownDescription": "Location of statically copied assets for DAM files. This prefix will be removed from the _DAM\nUploads_ path when CloudCannon outputs the URL of an asset.",
|
|
5331
5369
|
"type": "string"
|
|
5332
5370
|
},
|
|
5333
5371
|
"dam_uploads": {
|
|
5334
|
-
"default": "",
|
|
5335
5372
|
"description": "Default location of newly uploaded DAM files.",
|
|
5336
5373
|
"markdownDescription": "Default location of newly uploaded DAM files.",
|
|
5337
5374
|
"type": "string"
|
|
@@ -5439,6 +5476,7 @@
|
|
|
5439
5476
|
"additionalProperties": false,
|
|
5440
5477
|
"properties": {
|
|
5441
5478
|
"fit": {
|
|
5479
|
+
"default": "padded",
|
|
5442
5480
|
"description": "Controls how the gallery image is positioned within the gallery.",
|
|
5443
5481
|
"enum": [
|
|
5444
5482
|
"padded",
|
|
@@ -5516,7 +5554,6 @@
|
|
|
5516
5554
|
"additionalProperties": false,
|
|
5517
5555
|
"properties": {
|
|
5518
5556
|
"cascade": {
|
|
5519
|
-
"default": true,
|
|
5520
5557
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5521
5558
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5522
5559
|
"type": "boolean"
|
|
@@ -5585,6 +5622,8 @@
|
|
|
5585
5622
|
},
|
|
5586
5623
|
"type": {
|
|
5587
5624
|
"const": "range",
|
|
5625
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5626
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
5588
5627
|
"type": "string"
|
|
5589
5628
|
}
|
|
5590
5629
|
},
|
|
@@ -5597,38 +5636,39 @@
|
|
|
5597
5636
|
"additionalProperties": false,
|
|
5598
5637
|
"properties": {
|
|
5599
5638
|
"empty_type": {
|
|
5600
|
-
"$ref": "#/definitions/EmptyTypeNumber",
|
|
5601
5639
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5602
|
-
"
|
|
5640
|
+
"enum": [
|
|
5641
|
+
"null",
|
|
5642
|
+
"number"
|
|
5643
|
+
],
|
|
5644
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5645
|
+
"type": "string"
|
|
5603
5646
|
},
|
|
5604
5647
|
"max": {
|
|
5648
|
+
"default": 10,
|
|
5605
5649
|
"description": "The greatest value in the range of permitted values.",
|
|
5606
5650
|
"markdownDescription": "The greatest value in the range of permitted values.",
|
|
5607
5651
|
"type": "number"
|
|
5608
5652
|
},
|
|
5609
5653
|
"min": {
|
|
5654
|
+
"default": 0,
|
|
5610
5655
|
"description": "The lowest value in the range of permitted values.",
|
|
5611
5656
|
"markdownDescription": "The lowest value in the range of permitted values.",
|
|
5612
5657
|
"type": "number"
|
|
5613
5658
|
},
|
|
5614
5659
|
"step": {
|
|
5660
|
+
"default": 1,
|
|
5615
5661
|
"description": "A number that specifies the granularity that the value must adhere to, or the special value any, which allows any decimal value between `max` and `min`.",
|
|
5616
5662
|
"markdownDescription": "A number that specifies the granularity that the value must adhere to, or the special value\nany, which allows any decimal value between `max` and `min`.",
|
|
5617
5663
|
"type": "number"
|
|
5618
5664
|
}
|
|
5619
5665
|
},
|
|
5620
|
-
"required": [
|
|
5621
|
-
"min",
|
|
5622
|
-
"max",
|
|
5623
|
-
"step"
|
|
5624
|
-
],
|
|
5625
5666
|
"type": "object"
|
|
5626
5667
|
},
|
|
5627
5668
|
"RichTextInput": {
|
|
5628
5669
|
"additionalProperties": false,
|
|
5629
5670
|
"properties": {
|
|
5630
5671
|
"cascade": {
|
|
5631
|
-
"default": true,
|
|
5632
5672
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5633
5673
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5634
5674
|
"type": "boolean"
|
|
@@ -5696,10 +5736,12 @@
|
|
|
5696
5736
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
5697
5737
|
},
|
|
5698
5738
|
"type": {
|
|
5739
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5699
5740
|
"enum": [
|
|
5700
5741
|
"html",
|
|
5701
5742
|
"markdown"
|
|
5702
5743
|
],
|
|
5744
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
5703
5745
|
"type": "string"
|
|
5704
5746
|
}
|
|
5705
5747
|
},
|
|
@@ -5717,6 +5759,7 @@
|
|
|
5717
5759
|
"type": "boolean"
|
|
5718
5760
|
},
|
|
5719
5761
|
"allow_resize": {
|
|
5762
|
+
"default": false,
|
|
5720
5763
|
"description": "Shows or hides the resize handler to vertically resize the input.",
|
|
5721
5764
|
"markdownDescription": "Shows or hides the resize handler to vertically resize the input.",
|
|
5722
5765
|
"type": "boolean"
|
|
@@ -5730,16 +5773,19 @@
|
|
|
5730
5773
|
"type": "array"
|
|
5731
5774
|
},
|
|
5732
5775
|
"blockquote": {
|
|
5776
|
+
"default": true,
|
|
5733
5777
|
"description": "Enables a control to wrap blocks of text in block quotes.",
|
|
5734
5778
|
"markdownDescription": "Enables a control to wrap blocks of text in block quotes.",
|
|
5735
5779
|
"type": "boolean"
|
|
5736
5780
|
},
|
|
5737
5781
|
"bold": {
|
|
5782
|
+
"default": true,
|
|
5738
5783
|
"description": "Enables a control to set selected text to bold.",
|
|
5739
5784
|
"markdownDescription": "Enables a control to set selected text to bold.",
|
|
5740
5785
|
"type": "boolean"
|
|
5741
5786
|
},
|
|
5742
5787
|
"bulletedlist": {
|
|
5788
|
+
"default": true,
|
|
5743
5789
|
"description": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list.",
|
|
5744
5790
|
"markdownDescription": "Enables a control to insert an unordered list, or to convert selected blocks of text into a\nunordered list.",
|
|
5745
5791
|
"type": "boolean"
|
|
@@ -5750,34 +5796,43 @@
|
|
|
5750
5796
|
"type": "string"
|
|
5751
5797
|
},
|
|
5752
5798
|
"code": {
|
|
5799
|
+
"default": false,
|
|
5753
5800
|
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5754
5801
|
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5755
5802
|
"type": "boolean"
|
|
5756
5803
|
},
|
|
5757
5804
|
"code_block": {
|
|
5805
|
+
"default": false,
|
|
5758
5806
|
"description": "Enables a control to insert a code block.",
|
|
5759
5807
|
"markdownDescription": "Enables a control to insert a code block.",
|
|
5760
5808
|
"type": "boolean"
|
|
5761
5809
|
},
|
|
5762
5810
|
"code_inline": {
|
|
5811
|
+
"default": false,
|
|
5763
5812
|
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
5764
5813
|
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
5765
5814
|
"type": "boolean"
|
|
5766
5815
|
},
|
|
5767
5816
|
"copyformatting": {
|
|
5817
|
+
"default": false,
|
|
5768
5818
|
"description": "Enables a control to copy formatting from text to other text. Only applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other styles or formatting.",
|
|
5769
5819
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
5770
5820
|
"type": "boolean"
|
|
5771
5821
|
},
|
|
5772
5822
|
"embed": {
|
|
5823
|
+
"default": false,
|
|
5773
5824
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
5774
5825
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other\nmedia. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags.\nEmbeds containing script tags are not loaded in the editor.",
|
|
5775
5826
|
"type": "boolean"
|
|
5776
5827
|
},
|
|
5777
5828
|
"empty_type": {
|
|
5778
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
5779
5829
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5780
|
-
"
|
|
5830
|
+
"enum": [
|
|
5831
|
+
"null",
|
|
5832
|
+
"string"
|
|
5833
|
+
],
|
|
5834
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5835
|
+
"type": "string"
|
|
5781
5836
|
},
|
|
5782
5837
|
"expandable": {
|
|
5783
5838
|
"default": false,
|
|
@@ -5786,6 +5841,7 @@
|
|
|
5786
5841
|
"type": "boolean"
|
|
5787
5842
|
},
|
|
5788
5843
|
"format": {
|
|
5844
|
+
"default": "p h1 h2 h3 h4 h5 h6",
|
|
5789
5845
|
"description": "Enables a drop down menu for structured text. Has options for \"p\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\". Set as space separated options (e.g. \"p h1 h2\").",
|
|
5790
5846
|
"markdownDescription": "Enables a drop down menu for structured text. Has options for \"p\", \"h1\", \"h2\", \"h3\", \"h4\",\n\"h5\", \"h6\". Set as space separated options (e.g. \"p h1 h2\").",
|
|
5791
5847
|
"type": "string"
|
|
@@ -5796,11 +5852,13 @@
|
|
|
5796
5852
|
"type": "number"
|
|
5797
5853
|
},
|
|
5798
5854
|
"horizontalrule": {
|
|
5855
|
+
"default": false,
|
|
5799
5856
|
"description": "Enables a control to insert a horizontal rule.",
|
|
5800
5857
|
"markdownDescription": "Enables a control to insert a horizontal rule.",
|
|
5801
5858
|
"type": "boolean"
|
|
5802
5859
|
},
|
|
5803
5860
|
"image": {
|
|
5861
|
+
"default": true,
|
|
5804
5862
|
"description": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
5805
5863
|
"markdownDescription": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
5806
5864
|
"type": "boolean"
|
|
@@ -5812,16 +5870,19 @@
|
|
|
5812
5870
|
"type": "boolean"
|
|
5813
5871
|
},
|
|
5814
5872
|
"indent": {
|
|
5873
|
+
"default": false,
|
|
5815
5874
|
"description": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
5816
5875
|
"markdownDescription": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
5817
5876
|
"type": "boolean"
|
|
5818
5877
|
},
|
|
5819
5878
|
"initial_height": {
|
|
5879
|
+
"default": 320,
|
|
5820
5880
|
"description": "Defines the initial height of this input in pixels (px).",
|
|
5821
5881
|
"markdownDescription": "Defines the initial height of this input in pixels (px).",
|
|
5822
5882
|
"type": "number"
|
|
5823
5883
|
},
|
|
5824
5884
|
"italic": {
|
|
5885
|
+
"default": true,
|
|
5825
5886
|
"description": "Enables a control to italicize selected text.",
|
|
5826
5887
|
"markdownDescription": "Enables a control to italicize selected text.",
|
|
5827
5888
|
"type": "boolean"
|
|
@@ -5837,6 +5898,7 @@
|
|
|
5837
5898
|
"type": "string"
|
|
5838
5899
|
},
|
|
5839
5900
|
"link": {
|
|
5901
|
+
"default": true,
|
|
5840
5902
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
5841
5903
|
"markdownDescription": "Enables a control to create hyperlinks around selected text.",
|
|
5842
5904
|
"type": "boolean"
|
|
@@ -5852,11 +5914,13 @@
|
|
|
5852
5914
|
"type": "string"
|
|
5853
5915
|
},
|
|
5854
5916
|
"numberedlist": {
|
|
5917
|
+
"default": true,
|
|
5855
5918
|
"description": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list.",
|
|
5856
5919
|
"markdownDescription": "Enables a control to insert a numbered list, or to convert selected blocks of text into a\nnumbered list.",
|
|
5857
5920
|
"type": "boolean"
|
|
5858
5921
|
},
|
|
5859
5922
|
"outdent": {
|
|
5923
|
+
"default": false,
|
|
5860
5924
|
"description": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
5861
5925
|
"markdownDescription": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
5862
5926
|
"type": "boolean"
|
|
@@ -5873,6 +5937,7 @@
|
|
|
5873
5937
|
"type": "boolean"
|
|
5874
5938
|
},
|
|
5875
5939
|
"redo": {
|
|
5940
|
+
"default": false,
|
|
5876
5941
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
5877
5942
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through\nstandard OS-specific keyboard shortcuts.",
|
|
5878
5943
|
"type": "boolean"
|
|
@@ -5883,6 +5948,7 @@
|
|
|
5883
5948
|
"type": "boolean"
|
|
5884
5949
|
},
|
|
5885
5950
|
"removeformat": {
|
|
5951
|
+
"default": true,
|
|
5886
5952
|
"description": "Enables the control to remove formatting from text. Applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles or formatting.",
|
|
5887
5953
|
"markdownDescription": "Enables the control to remove formatting from text. Applies to formatting from `bold`,\n`italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles\nor formatting.",
|
|
5888
5954
|
"type": "boolean"
|
|
@@ -5929,11 +5995,13 @@
|
|
|
5929
5995
|
"type": "array"
|
|
5930
5996
|
},
|
|
5931
5997
|
"snippet": {
|
|
5998
|
+
"default": true,
|
|
5932
5999
|
"description": "Enables a control to insert snippets, if any are available.",
|
|
5933
6000
|
"markdownDescription": "Enables a control to insert snippets, if any are available.",
|
|
5934
6001
|
"type": "boolean"
|
|
5935
6002
|
},
|
|
5936
6003
|
"strike": {
|
|
6004
|
+
"default": false,
|
|
5937
6005
|
"description": "Enables a control to strike selected text.",
|
|
5938
6006
|
"markdownDescription": "Enables a control to strike selected text.",
|
|
5939
6007
|
"type": "boolean"
|
|
@@ -5944,26 +6012,31 @@
|
|
|
5944
6012
|
"type": "string"
|
|
5945
6013
|
},
|
|
5946
6014
|
"subscript": {
|
|
6015
|
+
"default": false,
|
|
5947
6016
|
"description": "Enables a control to set selected text to subscript.",
|
|
5948
6017
|
"markdownDescription": "Enables a control to set selected text to subscript.",
|
|
5949
6018
|
"type": "boolean"
|
|
5950
6019
|
},
|
|
5951
6020
|
"superscript": {
|
|
6021
|
+
"default": false,
|
|
5952
6022
|
"description": "Enables a control to set selected text to superscript.",
|
|
5953
6023
|
"markdownDescription": "Enables a control to set selected text to superscript.",
|
|
5954
6024
|
"type": "boolean"
|
|
5955
6025
|
},
|
|
5956
6026
|
"table": {
|
|
6027
|
+
"default": false,
|
|
5957
6028
|
"description": "Enables a control to insert a table. Further options for table cells are available in the context menu for cells within the editor.",
|
|
5958
6029
|
"markdownDescription": "Enables a control to insert a table. Further options for table cells are available in the\ncontext menu for cells within the editor.",
|
|
5959
6030
|
"type": "boolean"
|
|
5960
6031
|
},
|
|
5961
6032
|
"underline": {
|
|
6033
|
+
"default": false,
|
|
5962
6034
|
"description": "Enables a control to underline selected text.",
|
|
5963
6035
|
"markdownDescription": "Enables a control to underline selected text.",
|
|
5964
6036
|
"type": "boolean"
|
|
5965
6037
|
},
|
|
5966
6038
|
"undo": {
|
|
6039
|
+
"default": false,
|
|
5967
6040
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
5968
6041
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific\nkeyboard shortcuts.",
|
|
5969
6042
|
"type": "boolean"
|
|
@@ -5979,22 +6052,6 @@
|
|
|
5979
6052
|
"Schema": {
|
|
5980
6053
|
"additionalProperties": false,
|
|
5981
6054
|
"properties": {
|
|
5982
|
-
"_array_structures": {
|
|
5983
|
-
"additionalProperties": {},
|
|
5984
|
-
"deprecated": "Use _structures instead.",
|
|
5985
|
-
"description": "Now known as _structures.",
|
|
5986
|
-
"markdownDescription": "Now known as _structures.",
|
|
5987
|
-
"type": "object"
|
|
5988
|
-
},
|
|
5989
|
-
"_comments": {
|
|
5990
|
-
"additionalProperties": {
|
|
5991
|
-
"type": "string"
|
|
5992
|
-
},
|
|
5993
|
-
"deprecated": "Use _inputs instead.",
|
|
5994
|
-
"description": "Now part of _inputs.*.comment.",
|
|
5995
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
5996
|
-
"type": "object"
|
|
5997
|
-
},
|
|
5998
6055
|
"_editables": {
|
|
5999
6056
|
"$ref": "#/definitions/Editables",
|
|
6000
6057
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -6017,16 +6074,6 @@
|
|
|
6017
6074
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
6018
6075
|
"type": "object"
|
|
6019
6076
|
},
|
|
6020
|
-
"_options": {
|
|
6021
|
-
"additionalProperties": {
|
|
6022
|
-
"additionalProperties": {},
|
|
6023
|
-
"type": "object"
|
|
6024
|
-
},
|
|
6025
|
-
"deprecated": "Use _inputs instead.",
|
|
6026
|
-
"description": "Now part of _inputs.*.options.",
|
|
6027
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
6028
|
-
"type": "object"
|
|
6029
|
-
},
|
|
6030
6077
|
"_select_data": {
|
|
6031
6078
|
"additionalProperties": {
|
|
6032
6079
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -6055,6 +6102,7 @@
|
|
|
6055
6102
|
},
|
|
6056
6103
|
"icon": {
|
|
6057
6104
|
"$ref": "#/definitions/Icon",
|
|
6105
|
+
"default": "notes",
|
|
6058
6106
|
"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
6107
|
"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."
|
|
6060
6108
|
},
|
|
@@ -6103,7 +6151,6 @@
|
|
|
6103
6151
|
"additionalProperties": false,
|
|
6104
6152
|
"properties": {
|
|
6105
6153
|
"cascade": {
|
|
6106
|
-
"default": true,
|
|
6107
6154
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
6108
6155
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
6109
6156
|
"type": "boolean"
|
|
@@ -6183,9 +6230,13 @@
|
|
|
6183
6230
|
"type": "boolean"
|
|
6184
6231
|
},
|
|
6185
6232
|
"empty_type": {
|
|
6186
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
6187
6233
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
6188
|
-
"
|
|
6234
|
+
"enum": [
|
|
6235
|
+
"null",
|
|
6236
|
+
"string"
|
|
6237
|
+
],
|
|
6238
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
6239
|
+
"type": "string"
|
|
6189
6240
|
},
|
|
6190
6241
|
"picker_preview": {
|
|
6191
6242
|
"$ref": "#/definitions/Preview",
|
|
@@ -6241,6 +6292,8 @@
|
|
|
6241
6292
|
},
|
|
6242
6293
|
"type": {
|
|
6243
6294
|
"const": "select",
|
|
6295
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
6296
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
6244
6297
|
"type": "string"
|
|
6245
6298
|
}
|
|
6246
6299
|
},
|
|
@@ -6321,6 +6374,7 @@
|
|
|
6321
6374
|
"type": "array"
|
|
6322
6375
|
},
|
|
6323
6376
|
"definitions": {
|
|
6377
|
+
"additionalProperties": {},
|
|
6324
6378
|
"description": "The variables required for the selected template.",
|
|
6325
6379
|
"markdownDescription": "The variables required for the selected template.",
|
|
6326
6380
|
"type": "object"
|
|
@@ -6331,6 +6385,7 @@
|
|
|
6331
6385
|
"type": "boolean"
|
|
6332
6386
|
},
|
|
6333
6387
|
"params": {
|
|
6388
|
+
"additionalProperties": {},
|
|
6334
6389
|
"description": "The parameters of this snippet.",
|
|
6335
6390
|
"markdownDescription": "The parameters of this snippet.",
|
|
6336
6391
|
"type": "object"
|
|
@@ -6359,6 +6414,16 @@
|
|
|
6359
6414
|
"description": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6360
6415
|
"markdownDescription": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6361
6416
|
"type": "string"
|
|
6417
|
+
},
|
|
6418
|
+
"view": {
|
|
6419
|
+
"description": "Controls how selected items are rendered. Defaults to 'card', or 'inline' if `inline` is true.",
|
|
6420
|
+
"enum": [
|
|
6421
|
+
"card",
|
|
6422
|
+
"inline",
|
|
6423
|
+
"gallery"
|
|
6424
|
+
],
|
|
6425
|
+
"markdownDescription": "Controls how selected items are rendered. Defaults to 'card', or 'inline' if `inline` is true.",
|
|
6426
|
+
"type": "string"
|
|
6362
6427
|
}
|
|
6363
6428
|
},
|
|
6364
6429
|
"type": "object"
|
|
@@ -6386,7 +6451,8 @@
|
|
|
6386
6451
|
"type": "string"
|
|
6387
6452
|
},
|
|
6388
6453
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6389
|
-
"type": "array"
|
|
6454
|
+
"type": "array",
|
|
6455
|
+
"uniqueItems": true
|
|
6390
6456
|
}
|
|
6391
6457
|
},
|
|
6392
6458
|
"required": [
|
|
@@ -6409,7 +6475,8 @@
|
|
|
6409
6475
|
"type": "string"
|
|
6410
6476
|
},
|
|
6411
6477
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6412
|
-
"type": "array"
|
|
6478
|
+
"type": "array",
|
|
6479
|
+
"uniqueItems": true
|
|
6413
6480
|
}
|
|
6414
6481
|
},
|
|
6415
6482
|
"required": [
|
|
@@ -6441,7 +6508,8 @@
|
|
|
6441
6508
|
"type": "string"
|
|
6442
6509
|
},
|
|
6443
6510
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6444
|
-
"type": "array"
|
|
6511
|
+
"type": "array",
|
|
6512
|
+
"uniqueItems": true
|
|
6445
6513
|
}
|
|
6446
6514
|
},
|
|
6447
6515
|
"required": [
|
|
@@ -6464,7 +6532,8 @@
|
|
|
6464
6532
|
"type": "string"
|
|
6465
6533
|
},
|
|
6466
6534
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6467
|
-
"type": "array"
|
|
6535
|
+
"type": "array",
|
|
6536
|
+
"uniqueItems": true
|
|
6468
6537
|
}
|
|
6469
6538
|
},
|
|
6470
6539
|
"required": [
|
|
@@ -6497,7 +6566,8 @@
|
|
|
6497
6566
|
"type": "string"
|
|
6498
6567
|
},
|
|
6499
6568
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6500
|
-
"type": "array"
|
|
6569
|
+
"type": "array",
|
|
6570
|
+
"uniqueItems": true
|
|
6501
6571
|
}
|
|
6502
6572
|
},
|
|
6503
6573
|
"required": [
|
|
@@ -6521,7 +6591,8 @@
|
|
|
6521
6591
|
"type": "string"
|
|
6522
6592
|
},
|
|
6523
6593
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6524
|
-
"type": "array"
|
|
6594
|
+
"type": "array",
|
|
6595
|
+
"uniqueItems": true
|
|
6525
6596
|
}
|
|
6526
6597
|
},
|
|
6527
6598
|
"required": [
|
|
@@ -6564,7 +6635,8 @@
|
|
|
6564
6635
|
"type": "string"
|
|
6565
6636
|
},
|
|
6566
6637
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6567
|
-
"type": "array"
|
|
6638
|
+
"type": "array",
|
|
6639
|
+
"uniqueItems": true
|
|
6568
6640
|
}
|
|
6569
6641
|
},
|
|
6570
6642
|
"required": [
|
|
@@ -6598,7 +6670,8 @@
|
|
|
6598
6670
|
"type": "string"
|
|
6599
6671
|
},
|
|
6600
6672
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6601
|
-
"type": "array"
|
|
6673
|
+
"type": "array",
|
|
6674
|
+
"uniqueItems": true
|
|
6602
6675
|
}
|
|
6603
6676
|
},
|
|
6604
6677
|
"required": [
|
|
@@ -6633,7 +6706,8 @@
|
|
|
6633
6706
|
"type": "string"
|
|
6634
6707
|
},
|
|
6635
6708
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6636
|
-
"type": "array"
|
|
6709
|
+
"type": "array",
|
|
6710
|
+
"uniqueItems": true
|
|
6637
6711
|
}
|
|
6638
6712
|
},
|
|
6639
6713
|
"required": [
|
|
@@ -6659,7 +6733,8 @@
|
|
|
6659
6733
|
"type": "string"
|
|
6660
6734
|
},
|
|
6661
6735
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6662
|
-
"type": "array"
|
|
6736
|
+
"type": "array",
|
|
6737
|
+
"uniqueItems": true
|
|
6663
6738
|
}
|
|
6664
6739
|
},
|
|
6665
6740
|
"required": [
|
|
@@ -6693,7 +6768,8 @@
|
|
|
6693
6768
|
"type": "string"
|
|
6694
6769
|
},
|
|
6695
6770
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6696
|
-
"type": "array"
|
|
6771
|
+
"type": "array",
|
|
6772
|
+
"uniqueItems": true
|
|
6697
6773
|
}
|
|
6698
6774
|
},
|
|
6699
6775
|
"required": [
|
|
@@ -6718,7 +6794,8 @@
|
|
|
6718
6794
|
"type": "string"
|
|
6719
6795
|
},
|
|
6720
6796
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6721
|
-
"type": "array"
|
|
6797
|
+
"type": "array",
|
|
6798
|
+
"uniqueItems": true
|
|
6722
6799
|
}
|
|
6723
6800
|
},
|
|
6724
6801
|
"required": [
|
|
@@ -6753,7 +6830,8 @@
|
|
|
6753
6830
|
"type": "string"
|
|
6754
6831
|
},
|
|
6755
6832
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6756
|
-
"type": "array"
|
|
6833
|
+
"type": "array",
|
|
6834
|
+
"uniqueItems": true
|
|
6757
6835
|
}
|
|
6758
6836
|
},
|
|
6759
6837
|
"required": [
|
|
@@ -6779,7 +6857,8 @@
|
|
|
6779
6857
|
"type": "string"
|
|
6780
6858
|
},
|
|
6781
6859
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6782
|
-
"type": "array"
|
|
6860
|
+
"type": "array",
|
|
6861
|
+
"uniqueItems": true
|
|
6783
6862
|
}
|
|
6784
6863
|
},
|
|
6785
6864
|
"required": [
|
|
@@ -6829,7 +6908,8 @@
|
|
|
6829
6908
|
"type": "string"
|
|
6830
6909
|
},
|
|
6831
6910
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6832
|
-
"type": "array"
|
|
6911
|
+
"type": "array",
|
|
6912
|
+
"uniqueItems": true
|
|
6833
6913
|
}
|
|
6834
6914
|
},
|
|
6835
6915
|
"required": [
|
|
@@ -6870,7 +6950,8 @@
|
|
|
6870
6950
|
"type": "string"
|
|
6871
6951
|
},
|
|
6872
6952
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6873
|
-
"type": "array"
|
|
6953
|
+
"type": "array",
|
|
6954
|
+
"uniqueItems": true
|
|
6874
6955
|
}
|
|
6875
6956
|
},
|
|
6876
6957
|
"required": [
|
|
@@ -6992,6 +7073,7 @@
|
|
|
6992
7073
|
"type": "boolean"
|
|
6993
7074
|
},
|
|
6994
7075
|
"style": {
|
|
7076
|
+
"default": "select",
|
|
6995
7077
|
"description": "Defines whether options are shown to your editors in a select menu (select, default) or a modal pop up window (modal) when adding a new item.",
|
|
6996
7078
|
"enum": [
|
|
6997
7079
|
"select",
|
|
@@ -7017,11 +7099,60 @@
|
|
|
7017
7099
|
"StructureValue": {
|
|
7018
7100
|
"additionalProperties": false,
|
|
7019
7101
|
"properties": {
|
|
7102
|
+
"_editables": {
|
|
7103
|
+
"$ref": "#/definitions/Editables",
|
|
7104
|
+
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
7105
|
+
"markdownDescription": "Contains input options for Editable Regions and the Content Editor."
|
|
7106
|
+
},
|
|
7107
|
+
"_enabled_editors": {
|
|
7108
|
+
"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.",
|
|
7109
|
+
"items": {
|
|
7110
|
+
"$ref": "#/definitions/EditorKey"
|
|
7111
|
+
},
|
|
7112
|
+
"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.",
|
|
7113
|
+
"type": "array",
|
|
7114
|
+
"uniqueItems": true
|
|
7115
|
+
},
|
|
7116
|
+
"_inputs": {
|
|
7117
|
+
"additionalProperties": {
|
|
7118
|
+
"$ref": "#/definitions/Input"
|
|
7119
|
+
},
|
|
7120
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
7121
|
+
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
7122
|
+
"type": "object"
|
|
7123
|
+
},
|
|
7124
|
+
"_select_data": {
|
|
7125
|
+
"additionalProperties": {
|
|
7126
|
+
"$ref": "#/definitions/SelectValues"
|
|
7127
|
+
},
|
|
7128
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
7129
|
+
"markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and\n_Multiselect_ inputs.",
|
|
7130
|
+
"type": "object"
|
|
7131
|
+
},
|
|
7132
|
+
"_structures": {
|
|
7133
|
+
"additionalProperties": {
|
|
7134
|
+
"$ref": "#/definitions/Structure"
|
|
7135
|
+
},
|
|
7136
|
+
"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.",
|
|
7137
|
+
"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.",
|
|
7138
|
+
"type": "object"
|
|
7139
|
+
},
|
|
7140
|
+
"comment": {
|
|
7141
|
+
"description": "Provides short descriptive text for editors shown in the Data Editor for expanded values matching this Structure value. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.",
|
|
7142
|
+
"markdownDescription": "Provides short descriptive text for editors shown in the Data Editor for expanded values\nmatching this Structure value. Has no default. Supports a limited set of Markdown: links, bold,\nitalic, subscript, superscript, and inline code elements are allowed.",
|
|
7143
|
+
"type": "string"
|
|
7144
|
+
},
|
|
7020
7145
|
"default": {
|
|
7146
|
+
"default": false,
|
|
7021
7147
|
"description": "If set to true, this item will be considered the default type for this structure. If the type of a value within a structure cannot be inferred based on its id_key or matching fields, then it will fall back to this item. If multiple items have default set to true, only the first item will be used.",
|
|
7022
7148
|
"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.",
|
|
7023
7149
|
"type": "boolean"
|
|
7024
7150
|
},
|
|
7151
|
+
"documentation": {
|
|
7152
|
+
"$ref": "#/definitions/Documentation",
|
|
7153
|
+
"description": "Provides a custom link for documentation for editors shown in the Data Editor for expanded values matching this Structure value. Has no default.",
|
|
7154
|
+
"markdownDescription": "Provides a custom link for documentation for editors shown in the Data Editor for expanded\nvalues matching this Structure value. Has no default."
|
|
7155
|
+
},
|
|
7025
7156
|
"groups": {
|
|
7026
7157
|
"description": "Allows you to group the inputs inside this object together without changing the data structure.",
|
|
7027
7158
|
"items": {
|
|
@@ -7061,6 +7192,7 @@
|
|
|
7061
7192
|
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
7062
7193
|
},
|
|
7063
7194
|
"place_groups_below": {
|
|
7195
|
+
"default": false,
|
|
7064
7196
|
"description": "Controls which order input groups and ungrouped inputs appear in.",
|
|
7065
7197
|
"markdownDescription": "Controls which order input groups and ungrouped inputs appear in.",
|
|
7066
7198
|
"type": "boolean"
|
|
@@ -7086,6 +7218,7 @@
|
|
|
7086
7218
|
"type": "boolean"
|
|
7087
7219
|
},
|
|
7088
7220
|
"tabbed": {
|
|
7221
|
+
"default": false,
|
|
7089
7222
|
"description": "Show nested objects as tabs. Requires all top-level keys to be objects.",
|
|
7090
7223
|
"markdownDescription": "Show nested objects as tabs. Requires all top-level keys to be objects.",
|
|
7091
7224
|
"type": "boolean"
|
|
@@ -7293,21 +7426,25 @@
|
|
|
7293
7426
|
"type": "boolean"
|
|
7294
7427
|
},
|
|
7295
7428
|
"bold": {
|
|
7429
|
+
"default": true,
|
|
7296
7430
|
"description": "Enables a control to set selected text to bold.",
|
|
7297
7431
|
"markdownDescription": "Enables a control to set selected text to bold.",
|
|
7298
7432
|
"type": "boolean"
|
|
7299
7433
|
},
|
|
7300
7434
|
"copyformatting": {
|
|
7435
|
+
"default": false,
|
|
7301
7436
|
"description": "Enables a control to copy formatting from text to other text. Only applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other styles or formatting.",
|
|
7302
7437
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from\n`bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other\nstyles or formatting.",
|
|
7303
7438
|
"type": "boolean"
|
|
7304
7439
|
},
|
|
7305
7440
|
"italic": {
|
|
7441
|
+
"default": true,
|
|
7306
7442
|
"description": "Enables a control to italicize selected text.",
|
|
7307
7443
|
"markdownDescription": "Enables a control to italicize selected text.",
|
|
7308
7444
|
"type": "boolean"
|
|
7309
7445
|
},
|
|
7310
7446
|
"link": {
|
|
7447
|
+
"default": true,
|
|
7311
7448
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
7312
7449
|
"markdownDescription": "Enables a control to create hyperlinks around selected text.",
|
|
7313
7450
|
"type": "boolean"
|
|
@@ -7318,6 +7455,7 @@
|
|
|
7318
7455
|
"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`."
|
|
7319
7456
|
},
|
|
7320
7457
|
"redo": {
|
|
7458
|
+
"default": false,
|
|
7321
7459
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
7322
7460
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through\nstandard OS-specific keyboard shortcuts.",
|
|
7323
7461
|
"type": "boolean"
|
|
@@ -7328,31 +7466,37 @@
|
|
|
7328
7466
|
"type": "boolean"
|
|
7329
7467
|
},
|
|
7330
7468
|
"removeformat": {
|
|
7469
|
+
"default": true,
|
|
7331
7470
|
"description": "Enables the control to remove formatting from text. Applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles or formatting.",
|
|
7332
7471
|
"markdownDescription": "Enables the control to remove formatting from text. Applies to formatting from `bold`,\n`italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles\nor formatting.",
|
|
7333
7472
|
"type": "boolean"
|
|
7334
7473
|
},
|
|
7335
7474
|
"strike": {
|
|
7475
|
+
"default": false,
|
|
7336
7476
|
"description": "Enables a control to strike selected text.",
|
|
7337
7477
|
"markdownDescription": "Enables a control to strike selected text.",
|
|
7338
7478
|
"type": "boolean"
|
|
7339
7479
|
},
|
|
7340
7480
|
"subscript": {
|
|
7481
|
+
"default": false,
|
|
7341
7482
|
"description": "Enables a control to set selected text to subscript.",
|
|
7342
7483
|
"markdownDescription": "Enables a control to set selected text to subscript.",
|
|
7343
7484
|
"type": "boolean"
|
|
7344
7485
|
},
|
|
7345
7486
|
"superscript": {
|
|
7487
|
+
"default": false,
|
|
7346
7488
|
"description": "Enables a control to set selected text to superscript.",
|
|
7347
7489
|
"markdownDescription": "Enables a control to set selected text to superscript.",
|
|
7348
7490
|
"type": "boolean"
|
|
7349
7491
|
},
|
|
7350
7492
|
"underline": {
|
|
7493
|
+
"default": false,
|
|
7351
7494
|
"description": "Enables a control to underline selected text.",
|
|
7352
7495
|
"markdownDescription": "Enables a control to underline selected text.",
|
|
7353
7496
|
"type": "boolean"
|
|
7354
7497
|
},
|
|
7355
7498
|
"undo": {
|
|
7499
|
+
"default": false,
|
|
7356
7500
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
7357
7501
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific\nkeyboard shortcuts.",
|
|
7358
7502
|
"type": "boolean"
|
|
@@ -7364,7 +7508,6 @@
|
|
|
7364
7508
|
"additionalProperties": false,
|
|
7365
7509
|
"properties": {
|
|
7366
7510
|
"cascade": {
|
|
7367
|
-
"default": true,
|
|
7368
7511
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
7369
7512
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
7370
7513
|
"type": "boolean"
|
|
@@ -7432,6 +7575,7 @@
|
|
|
7432
7575
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
7433
7576
|
},
|
|
7434
7577
|
"type": {
|
|
7578
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
7435
7579
|
"enum": [
|
|
7436
7580
|
"text",
|
|
7437
7581
|
"email",
|
|
@@ -7442,6 +7586,7 @@
|
|
|
7442
7586
|
"github",
|
|
7443
7587
|
"instagram"
|
|
7444
7588
|
],
|
|
7589
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
7445
7590
|
"type": "string"
|
|
7446
7591
|
}
|
|
7447
7592
|
},
|
|
@@ -7454,9 +7599,13 @@
|
|
|
7454
7599
|
"additionalProperties": false,
|
|
7455
7600
|
"properties": {
|
|
7456
7601
|
"empty_type": {
|
|
7457
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
7458
7602
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
7459
|
-
"
|
|
7603
|
+
"enum": [
|
|
7604
|
+
"null",
|
|
7605
|
+
"string"
|
|
7606
|
+
],
|
|
7607
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
7608
|
+
"type": "string"
|
|
7460
7609
|
},
|
|
7461
7610
|
"icon": {
|
|
7462
7611
|
"$ref": "#/definitions/Icon",
|
|
@@ -8118,7 +8267,6 @@
|
|
|
8118
8267
|
"additionalProperties": false,
|
|
8119
8268
|
"properties": {
|
|
8120
8269
|
"cascade": {
|
|
8121
|
-
"default": true,
|
|
8122
8270
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
8123
8271
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
8124
8272
|
"type": "boolean"
|
|
@@ -8186,7 +8334,10 @@
|
|
|
8186
8334
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
8187
8335
|
},
|
|
8188
8336
|
"type": {
|
|
8189
|
-
"
|
|
8337
|
+
"const": "auto",
|
|
8338
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8339
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
8340
|
+
"type": "string"
|
|
8190
8341
|
}
|
|
8191
8342
|
},
|
|
8192
8343
|
"type": "object"
|
|
@@ -8195,7 +8346,6 @@
|
|
|
8195
8346
|
"additionalProperties": false,
|
|
8196
8347
|
"properties": {
|
|
8197
8348
|
"cascade": {
|
|
8198
|
-
"default": true,
|
|
8199
8349
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
8200
8350
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
8201
8351
|
"type": "boolean"
|
|
@@ -8264,6 +8414,8 @@
|
|
|
8264
8414
|
},
|
|
8265
8415
|
"type": {
|
|
8266
8416
|
"const": "range",
|
|
8417
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8418
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
8267
8419
|
"type": "string"
|
|
8268
8420
|
}
|
|
8269
8421
|
},
|
|
@@ -8276,9 +8428,13 @@
|
|
|
8276
8428
|
"additionalProperties": false,
|
|
8277
8429
|
"properties": {
|
|
8278
8430
|
"empty_type": {
|
|
8279
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
8280
8431
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8281
|
-
"
|
|
8432
|
+
"enum": [
|
|
8433
|
+
"null",
|
|
8434
|
+
"string"
|
|
8435
|
+
],
|
|
8436
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8437
|
+
"type": "string"
|
|
8282
8438
|
},
|
|
8283
8439
|
"paths": {
|
|
8284
8440
|
"$ref": "#/definitions/Paths",
|
|
@@ -8288,13 +8444,73 @@
|
|
|
8288
8444
|
},
|
|
8289
8445
|
"type": "object"
|
|
8290
8446
|
},
|
|
8447
|
+
"WithEmptyTypeArray": {
|
|
8448
|
+
"additionalProperties": false,
|
|
8449
|
+
"properties": {
|
|
8450
|
+
"empty_type": {
|
|
8451
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8452
|
+
"enum": [
|
|
8453
|
+
"null",
|
|
8454
|
+
"array"
|
|
8455
|
+
],
|
|
8456
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8457
|
+
"type": "string"
|
|
8458
|
+
}
|
|
8459
|
+
},
|
|
8460
|
+
"type": "object"
|
|
8461
|
+
},
|
|
8462
|
+
"WithEmptyTypeNumber": {
|
|
8463
|
+
"additionalProperties": false,
|
|
8464
|
+
"properties": {
|
|
8465
|
+
"empty_type": {
|
|
8466
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8467
|
+
"enum": [
|
|
8468
|
+
"null",
|
|
8469
|
+
"number"
|
|
8470
|
+
],
|
|
8471
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8472
|
+
"type": "string"
|
|
8473
|
+
}
|
|
8474
|
+
},
|
|
8475
|
+
"type": "object"
|
|
8476
|
+
},
|
|
8477
|
+
"WithEmptyTypeObject": {
|
|
8478
|
+
"additionalProperties": false,
|
|
8479
|
+
"properties": {
|
|
8480
|
+
"empty_type": {
|
|
8481
|
+
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8482
|
+
"enum": [
|
|
8483
|
+
"null",
|
|
8484
|
+
"object"
|
|
8485
|
+
],
|
|
8486
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8487
|
+
"type": "string"
|
|
8488
|
+
}
|
|
8489
|
+
},
|
|
8490
|
+
"type": "object"
|
|
8491
|
+
},
|
|
8291
8492
|
"WithEmptyTypeText": {
|
|
8292
8493
|
"additionalProperties": false,
|
|
8293
8494
|
"properties": {
|
|
8294
8495
|
"empty_type": {
|
|
8295
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
8296
8496
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8297
|
-
"
|
|
8497
|
+
"enum": [
|
|
8498
|
+
"null",
|
|
8499
|
+
"string"
|
|
8500
|
+
],
|
|
8501
|
+
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8502
|
+
"type": "string"
|
|
8503
|
+
}
|
|
8504
|
+
},
|
|
8505
|
+
"type": "object"
|
|
8506
|
+
},
|
|
8507
|
+
"WithPaths": {
|
|
8508
|
+
"additionalProperties": false,
|
|
8509
|
+
"properties": {
|
|
8510
|
+
"paths": {
|
|
8511
|
+
"$ref": "#/definitions/Paths",
|
|
8512
|
+
"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`.",
|
|
8513
|
+
"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`."
|
|
8298
8514
|
}
|
|
8299
8515
|
},
|
|
8300
8516
|
"type": "object"
|
|
@@ -8303,22 +8519,6 @@
|
|
|
8303
8519
|
"description": "The base format for the configuration file.",
|
|
8304
8520
|
"markdownDescription": "The base format for the configuration file.",
|
|
8305
8521
|
"properties": {
|
|
8306
|
-
"_array_structures": {
|
|
8307
|
-
"additionalProperties": {},
|
|
8308
|
-
"deprecated": "Use _structures instead.",
|
|
8309
|
-
"description": "Now known as _structures.",
|
|
8310
|
-
"markdownDescription": "Now known as _structures.",
|
|
8311
|
-
"type": "object"
|
|
8312
|
-
},
|
|
8313
|
-
"_comments": {
|
|
8314
|
-
"additionalProperties": {
|
|
8315
|
-
"type": "string"
|
|
8316
|
-
},
|
|
8317
|
-
"deprecated": "Use _inputs instead.",
|
|
8318
|
-
"description": "Now part of _inputs.*.comment.",
|
|
8319
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
8320
|
-
"type": "object"
|
|
8321
|
-
},
|
|
8322
8522
|
"_editables": {
|
|
8323
8523
|
"$ref": "#/definitions/Editables",
|
|
8324
8524
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -8341,16 +8541,6 @@
|
|
|
8341
8541
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
8342
8542
|
"type": "object"
|
|
8343
8543
|
},
|
|
8344
|
-
"_options": {
|
|
8345
|
-
"additionalProperties": {
|
|
8346
|
-
"additionalProperties": {},
|
|
8347
|
-
"type": "object"
|
|
8348
|
-
},
|
|
8349
|
-
"deprecated": "Use _inputs instead.",
|
|
8350
|
-
"description": "Now part of _inputs.*.options.",
|
|
8351
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
8352
|
-
"type": "object"
|
|
8353
|
-
},
|
|
8354
8544
|
"_select_data": {
|
|
8355
8545
|
"additionalProperties": {
|
|
8356
8546
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -8363,29 +8553,29 @@
|
|
|
8363
8553
|
"additionalProperties": {
|
|
8364
8554
|
"$ref": "#/definitions/SnippetConfig"
|
|
8365
8555
|
},
|
|
8366
|
-
"description": "Configuration for custom snippets.",
|
|
8367
|
-
"markdownDescription": "Configuration for custom snippets.",
|
|
8556
|
+
"description": "Configuration for custom snippets.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets",
|
|
8557
|
+
"markdownDescription": "Configuration for custom snippets.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets",
|
|
8368
8558
|
"type": "object"
|
|
8369
8559
|
},
|
|
8370
8560
|
"_snippets_definitions": {
|
|
8371
8561
|
"additionalProperties": {
|
|
8372
8562
|
"$ref": "#/definitions/SnippetConfig"
|
|
8373
8563
|
},
|
|
8374
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
8375
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
8564
|
+
"description": "Extended option used when creating more complex custom snippets.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets_definitions",
|
|
8565
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets_definitions",
|
|
8376
8566
|
"type": "object"
|
|
8377
8567
|
},
|
|
8378
8568
|
"_snippets_imports": {
|
|
8379
8569
|
"$ref": "#/definitions/SnippetsImports",
|
|
8380
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets
|
|
8381
|
-
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets
|
|
8570
|
+
"description": "Provides control over which snippets are available to use and/or extend within `_snippets`.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets_imports",
|
|
8571
|
+
"markdownDescription": "Provides control over which snippets are available to use and/or extend within `_snippets`.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets_imports"
|
|
8382
8572
|
},
|
|
8383
8573
|
"_snippets_templates": {
|
|
8384
8574
|
"additionalProperties": {
|
|
8385
8575
|
"$ref": "#/definitions/SnippetConfig"
|
|
8386
8576
|
},
|
|
8387
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
8388
|
-
"markdownDescription": "Extended option used when creating more complex custom snippets.",
|
|
8577
|
+
"description": "Extended option used when creating more complex custom snippets.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets_templates",
|
|
8578
|
+
"markdownDescription": "Extended option used when creating more complex custom snippets.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#_snippets_templates",
|
|
8389
8579
|
"type": "object"
|
|
8390
8580
|
},
|
|
8391
8581
|
"_structures": {
|
|
@@ -8397,59 +8587,59 @@
|
|
|
8397
8587
|
"type": "object"
|
|
8398
8588
|
},
|
|
8399
8589
|
"base_url": {
|
|
8400
|
-
"description": "The subpath where your output files are hosted.",
|
|
8401
|
-
"markdownDescription": "The subpath where your output files are hosted.",
|
|
8590
|
+
"description": "The subpath where your output files are hosted.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#base_url",
|
|
8591
|
+
"markdownDescription": "The subpath where your output files are hosted.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#base_url",
|
|
8402
8592
|
"type": "string"
|
|
8403
8593
|
},
|
|
8404
8594
|
"collection_groups": {
|
|
8405
|
-
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.",
|
|
8595
|
+
"description": "Defines which collections are shown in the site navigation and how those collections are grouped.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#collections_groups",
|
|
8406
8596
|
"items": {
|
|
8407
8597
|
"$ref": "#/definitions/CollectionGroup"
|
|
8408
8598
|
},
|
|
8409
|
-
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.",
|
|
8599
|
+
"markdownDescription": "Defines which collections are shown in the site navigation and how those collections are\ngrouped.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#collections_groups",
|
|
8410
8600
|
"type": "array"
|
|
8411
8601
|
},
|
|
8412
8602
|
"collections_config": {
|
|
8413
8603
|
"additionalProperties": {
|
|
8414
8604
|
"$ref": "#/definitions/CollectionConfig"
|
|
8415
8605
|
},
|
|
8416
|
-
"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.",
|
|
8417
|
-
"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.",
|
|
8606
|
+
"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.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#collections_config",
|
|
8607
|
+
"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.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#collections_config",
|
|
8418
8608
|
"type": "object"
|
|
8419
8609
|
},
|
|
8420
8610
|
"commit_templates": {
|
|
8421
|
-
"description": "Templates for commit messages when saving changes.",
|
|
8611
|
+
"description": "Templates for commit messages when saving changes.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#commit_templates",
|
|
8422
8612
|
"items": {
|
|
8423
8613
|
"$ref": "#/definitions/CommitTemplate"
|
|
8424
8614
|
},
|
|
8425
|
-
"markdownDescription": "Templates for commit messages when saving changes.",
|
|
8615
|
+
"markdownDescription": "Templates for commit messages when saving changes.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#commit_templates",
|
|
8426
8616
|
"type": "array"
|
|
8427
8617
|
},
|
|
8428
8618
|
"data_config": {
|
|
8429
8619
|
"additionalProperties": {
|
|
8430
8620
|
"$ref": "#/definitions/DataConfigEntry"
|
|
8431
8621
|
},
|
|
8432
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
8433
|
-
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
8622
|
+
"description": "Controls what data sets are available to populate select and multiselect inputs.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#data_config",
|
|
8623
|
+
"markdownDescription": "Controls what data sets are available to populate select and multiselect inputs.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#data_config",
|
|
8434
8624
|
"type": "object"
|
|
8435
8625
|
},
|
|
8436
8626
|
"editor": {
|
|
8437
8627
|
"$ref": "#/definitions/Editor",
|
|
8438
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
8439
|
-
"markdownDescription": "Contains settings for the default editor actions on your site."
|
|
8628
|
+
"description": "Contains settings for the default editor actions on your site.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#editor.default_path",
|
|
8629
|
+
"markdownDescription": "Contains settings for the default editor actions on your site.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#editor.default_path"
|
|
8440
8630
|
},
|
|
8441
8631
|
"file_config": {
|
|
8442
|
-
"
|
|
8632
|
+
"description": "Provides scope to configure at a file level, without adding configuration to files.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#file_config",
|
|
8633
|
+
"items": {
|
|
8443
8634
|
"$ref": "#/definitions/FileConfigEntry"
|
|
8444
8635
|
},
|
|
8445
|
-
"
|
|
8446
|
-
"
|
|
8447
|
-
"type": "object"
|
|
8636
|
+
"markdownDescription": "Provides scope to configure at a file level, without adding configuration to files.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#file_config",
|
|
8637
|
+
"type": "array"
|
|
8448
8638
|
},
|
|
8449
8639
|
"markdown": {
|
|
8450
8640
|
"$ref": "#/definitions/MarkdownSettings",
|
|
8451
|
-
"description": "Contains settings for various Markdown engines.",
|
|
8452
|
-
"markdownDescription": "Contains settings for various Markdown engines."
|
|
8641
|
+
"description": "Contains settings for various Markdown engines.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#markdown",
|
|
8642
|
+
"markdownDescription": "Contains settings for various Markdown engines.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#markdown"
|
|
8453
8643
|
},
|
|
8454
8644
|
"paths": {
|
|
8455
8645
|
"$ref": "#/definitions/Paths",
|
|
@@ -8457,20 +8647,20 @@
|
|
|
8457
8647
|
"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`."
|
|
8458
8648
|
},
|
|
8459
8649
|
"source": {
|
|
8460
|
-
"description": "
|
|
8461
|
-
"markdownDescription": "
|
|
8650
|
+
"description": "This key defines the base path for your source files, relative to the root folder of your repository. Unless you use a nested folder as the source for your Site you can leave this key empty or set it to `/`.\n\nBy default, this key is empty.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#source",
|
|
8651
|
+
"markdownDescription": "This key defines the base path for your source files, relative to the root folder of your\nrepository. Unless you use a nested folder as the source for your Site you can leave this key\nempty or set it to `/`.\n\nBy default, this key is empty.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#source",
|
|
8462
8652
|
"type": "string"
|
|
8463
8653
|
},
|
|
8464
8654
|
"source_editor": {
|
|
8465
8655
|
"$ref": "#/definitions/SourceEditor",
|
|
8466
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
8467
|
-
"markdownDescription": "Settings for the behavior and appearance of the Source Editor."
|
|
8656
|
+
"description": "Settings for the behavior and appearance of the Source Editor.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#source_editor",
|
|
8657
|
+
"markdownDescription": "Settings for the behavior and appearance of the Source Editor.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#source_editor"
|
|
8468
8658
|
},
|
|
8469
8659
|
"timezone": {
|
|
8470
8660
|
"$ref": "#/definitions/Timezone",
|
|
8471
8661
|
"default": "Etc/UTC",
|
|
8472
|
-
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
8473
|
-
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with."
|
|
8662
|
+
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#timezone",
|
|
8663
|
+
"markdownDescription": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the\ndate is persisted to the file with.\n\nhttps://cloudcannon.com/documentation/articles/configuration-file-reference/#timezone"
|
|
8474
8664
|
}
|
|
8475
8665
|
},
|
|
8476
8666
|
"type": "object"
|