@cloudcannon/configuration-types 0.0.19 → 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 +480 -341
- package/package.json +1 -1
- package/src/build-coupled.d.ts +7 -7
- package/src/configuration.d.ts +298 -146
- package/src/index.d.ts +19 -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"
|
|
@@ -249,14 +266,9 @@
|
|
|
249
266
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
250
267
|
},
|
|
251
268
|
"type": {
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
"type": "null"
|
|
258
|
-
}
|
|
259
|
-
]
|
|
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."
|
|
260
272
|
}
|
|
261
273
|
},
|
|
262
274
|
"type": "object"
|
|
@@ -278,16 +290,19 @@
|
|
|
278
290
|
"type": "array"
|
|
279
291
|
},
|
|
280
292
|
"blockquote": {
|
|
293
|
+
"default": true,
|
|
281
294
|
"description": "Enables a control to wrap blocks of text in block quotes.",
|
|
282
295
|
"markdownDescription": "Enables a control to wrap blocks of text in block quotes.",
|
|
283
296
|
"type": "boolean"
|
|
284
297
|
},
|
|
285
298
|
"bold": {
|
|
299
|
+
"default": true,
|
|
286
300
|
"description": "Enables a control to set selected text to bold.",
|
|
287
301
|
"markdownDescription": "Enables a control to set selected text to bold.",
|
|
288
302
|
"type": "boolean"
|
|
289
303
|
},
|
|
290
304
|
"bulletedlist": {
|
|
305
|
+
"default": true,
|
|
291
306
|
"description": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list.",
|
|
292
307
|
"markdownDescription": "Enables a control to insert an unordered list, or to convert selected blocks of text into a\nunordered list.",
|
|
293
308
|
"type": "boolean"
|
|
@@ -298,26 +313,31 @@
|
|
|
298
313
|
"type": "string"
|
|
299
314
|
},
|
|
300
315
|
"code": {
|
|
316
|
+
"default": false,
|
|
301
317
|
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
302
318
|
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
303
319
|
"type": "boolean"
|
|
304
320
|
},
|
|
305
321
|
"code_block": {
|
|
322
|
+
"default": false,
|
|
306
323
|
"description": "Enables a control to insert a code block.",
|
|
307
324
|
"markdownDescription": "Enables a control to insert a code block.",
|
|
308
325
|
"type": "boolean"
|
|
309
326
|
},
|
|
310
327
|
"code_inline": {
|
|
328
|
+
"default": false,
|
|
311
329
|
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
312
330
|
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
313
331
|
"type": "boolean"
|
|
314
332
|
},
|
|
315
333
|
"copyformatting": {
|
|
334
|
+
"default": false,
|
|
316
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.",
|
|
317
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.",
|
|
318
337
|
"type": "boolean"
|
|
319
338
|
},
|
|
320
339
|
"embed": {
|
|
340
|
+
"default": false,
|
|
321
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.",
|
|
322
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.",
|
|
323
343
|
"type": "boolean"
|
|
@@ -329,6 +349,7 @@
|
|
|
329
349
|
"type": "boolean"
|
|
330
350
|
},
|
|
331
351
|
"format": {
|
|
352
|
+
"default": "p h1 h2 h3 h4 h5 h6",
|
|
332
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\").",
|
|
333
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\").",
|
|
334
355
|
"type": "string"
|
|
@@ -339,11 +360,13 @@
|
|
|
339
360
|
"type": "number"
|
|
340
361
|
},
|
|
341
362
|
"horizontalrule": {
|
|
363
|
+
"default": false,
|
|
342
364
|
"description": "Enables a control to insert a horizontal rule.",
|
|
343
365
|
"markdownDescription": "Enables a control to insert a horizontal rule.",
|
|
344
366
|
"type": "boolean"
|
|
345
367
|
},
|
|
346
368
|
"image": {
|
|
369
|
+
"default": true,
|
|
347
370
|
"description": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
348
371
|
"markdownDescription": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
349
372
|
"type": "boolean"
|
|
@@ -355,11 +378,13 @@
|
|
|
355
378
|
"type": "boolean"
|
|
356
379
|
},
|
|
357
380
|
"indent": {
|
|
381
|
+
"default": false,
|
|
358
382
|
"description": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
359
383
|
"markdownDescription": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
360
384
|
"type": "boolean"
|
|
361
385
|
},
|
|
362
386
|
"italic": {
|
|
387
|
+
"default": true,
|
|
363
388
|
"description": "Enables a control to italicize selected text.",
|
|
364
389
|
"markdownDescription": "Enables a control to italicize selected text.",
|
|
365
390
|
"type": "boolean"
|
|
@@ -375,6 +400,7 @@
|
|
|
375
400
|
"type": "string"
|
|
376
401
|
},
|
|
377
402
|
"link": {
|
|
403
|
+
"default": true,
|
|
378
404
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
379
405
|
"markdownDescription": "Enables a control to create hyperlinks around selected text.",
|
|
380
406
|
"type": "boolean"
|
|
@@ -390,11 +416,13 @@
|
|
|
390
416
|
"type": "string"
|
|
391
417
|
},
|
|
392
418
|
"numberedlist": {
|
|
419
|
+
"default": true,
|
|
393
420
|
"description": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list.",
|
|
394
421
|
"markdownDescription": "Enables a control to insert a numbered list, or to convert selected blocks of text into a\nnumbered list.",
|
|
395
422
|
"type": "boolean"
|
|
396
423
|
},
|
|
397
424
|
"outdent": {
|
|
425
|
+
"default": false,
|
|
398
426
|
"description": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
399
427
|
"markdownDescription": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
400
428
|
"type": "boolean"
|
|
@@ -411,6 +439,7 @@
|
|
|
411
439
|
"type": "boolean"
|
|
412
440
|
},
|
|
413
441
|
"redo": {
|
|
442
|
+
"default": false,
|
|
414
443
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
415
444
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through\nstandard OS-specific keyboard shortcuts.",
|
|
416
445
|
"type": "boolean"
|
|
@@ -421,6 +450,7 @@
|
|
|
421
450
|
"type": "boolean"
|
|
422
451
|
},
|
|
423
452
|
"removeformat": {
|
|
453
|
+
"default": true,
|
|
424
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.",
|
|
425
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.",
|
|
426
456
|
"type": "boolean"
|
|
@@ -467,11 +497,13 @@
|
|
|
467
497
|
"type": "array"
|
|
468
498
|
},
|
|
469
499
|
"snippet": {
|
|
500
|
+
"default": true,
|
|
470
501
|
"description": "Enables a control to insert snippets, if any are available.",
|
|
471
502
|
"markdownDescription": "Enables a control to insert snippets, if any are available.",
|
|
472
503
|
"type": "boolean"
|
|
473
504
|
},
|
|
474
505
|
"strike": {
|
|
506
|
+
"default": false,
|
|
475
507
|
"description": "Enables a control to strike selected text.",
|
|
476
508
|
"markdownDescription": "Enables a control to strike selected text.",
|
|
477
509
|
"type": "boolean"
|
|
@@ -482,26 +514,31 @@
|
|
|
482
514
|
"type": "string"
|
|
483
515
|
},
|
|
484
516
|
"subscript": {
|
|
517
|
+
"default": false,
|
|
485
518
|
"description": "Enables a control to set selected text to subscript.",
|
|
486
519
|
"markdownDescription": "Enables a control to set selected text to subscript.",
|
|
487
520
|
"type": "boolean"
|
|
488
521
|
},
|
|
489
522
|
"superscript": {
|
|
523
|
+
"default": false,
|
|
490
524
|
"description": "Enables a control to set selected text to superscript.",
|
|
491
525
|
"markdownDescription": "Enables a control to set selected text to superscript.",
|
|
492
526
|
"type": "boolean"
|
|
493
527
|
},
|
|
494
528
|
"table": {
|
|
529
|
+
"default": false,
|
|
495
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.",
|
|
496
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.",
|
|
497
532
|
"type": "boolean"
|
|
498
533
|
},
|
|
499
534
|
"underline": {
|
|
535
|
+
"default": false,
|
|
500
536
|
"description": "Enables a control to underline selected text.",
|
|
501
537
|
"markdownDescription": "Enables a control to underline selected text.",
|
|
502
538
|
"type": "boolean"
|
|
503
539
|
},
|
|
504
540
|
"undo": {
|
|
541
|
+
"default": false,
|
|
505
542
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
506
543
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific\nkeyboard shortcuts.",
|
|
507
544
|
"type": "boolean"
|
|
@@ -518,7 +555,6 @@
|
|
|
518
555
|
"additionalProperties": false,
|
|
519
556
|
"properties": {
|
|
520
557
|
"cascade": {
|
|
521
|
-
"default": true,
|
|
522
558
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
523
559
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
524
560
|
"type": "boolean"
|
|
@@ -592,9 +628,13 @@
|
|
|
592
628
|
"type": "boolean"
|
|
593
629
|
},
|
|
594
630
|
"empty_type": {
|
|
595
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
596
631
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
597
|
-
"
|
|
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"
|
|
598
638
|
},
|
|
599
639
|
"picker_preview": {
|
|
600
640
|
"$ref": "#/definitions/Preview",
|
|
@@ -650,6 +690,8 @@
|
|
|
650
690
|
},
|
|
651
691
|
"type": {
|
|
652
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.",
|
|
653
695
|
"type": "string"
|
|
654
696
|
}
|
|
655
697
|
},
|
|
@@ -662,7 +704,6 @@
|
|
|
662
704
|
"additionalProperties": false,
|
|
663
705
|
"properties": {
|
|
664
706
|
"cascade": {
|
|
665
|
-
"default": true,
|
|
666
707
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
667
708
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
668
709
|
"type": "boolean"
|
|
@@ -731,6 +772,8 @@
|
|
|
731
772
|
},
|
|
732
773
|
"type": {
|
|
733
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.",
|
|
734
777
|
"type": "string"
|
|
735
778
|
}
|
|
736
779
|
},
|
|
@@ -743,9 +786,13 @@
|
|
|
743
786
|
"additionalProperties": false,
|
|
744
787
|
"properties": {
|
|
745
788
|
"empty_type": {
|
|
746
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
747
789
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
748
|
-
"
|
|
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"
|
|
749
796
|
},
|
|
750
797
|
"max_visible_lines": {
|
|
751
798
|
"default": 30,
|
|
@@ -788,22 +835,6 @@
|
|
|
788
835
|
"CollectionConfig": {
|
|
789
836
|
"additionalProperties": false,
|
|
790
837
|
"properties": {
|
|
791
|
-
"_array_structures": {
|
|
792
|
-
"additionalProperties": {},
|
|
793
|
-
"deprecated": "Use _structures instead.",
|
|
794
|
-
"description": "Now known as _structures.",
|
|
795
|
-
"markdownDescription": "Now known as _structures.",
|
|
796
|
-
"type": "object"
|
|
797
|
-
},
|
|
798
|
-
"_comments": {
|
|
799
|
-
"additionalProperties": {
|
|
800
|
-
"type": "string"
|
|
801
|
-
},
|
|
802
|
-
"deprecated": "Use _inputs instead.",
|
|
803
|
-
"description": "Now part of _inputs.*.comment.",
|
|
804
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
805
|
-
"type": "object"
|
|
806
|
-
},
|
|
807
838
|
"_editables": {
|
|
808
839
|
"$ref": "#/definitions/Editables",
|
|
809
840
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -826,16 +857,6 @@
|
|
|
826
857
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
827
858
|
"type": "object"
|
|
828
859
|
},
|
|
829
|
-
"_options": {
|
|
830
|
-
"additionalProperties": {
|
|
831
|
-
"additionalProperties": {},
|
|
832
|
-
"type": "object"
|
|
833
|
-
},
|
|
834
|
-
"deprecated": "Use _inputs instead.",
|
|
835
|
-
"description": "Now part of _inputs.*.options.",
|
|
836
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
837
|
-
"type": "object"
|
|
838
|
-
},
|
|
839
860
|
"_select_data": {
|
|
840
861
|
"additionalProperties": {
|
|
841
862
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -912,6 +933,7 @@
|
|
|
912
933
|
},
|
|
913
934
|
"icon": {
|
|
914
935
|
"$ref": "#/definitions/Icon",
|
|
936
|
+
"default": "notes",
|
|
915
937
|
"description": "Sets an icon to use alongside references to this collection.",
|
|
916
938
|
"markdownDescription": "Sets an icon to use alongside references to this collection."
|
|
917
939
|
},
|
|
@@ -931,8 +953,8 @@
|
|
|
931
953
|
"type": "string"
|
|
932
954
|
},
|
|
933
955
|
"path": {
|
|
934
|
-
"description": "The top-most folder where the files in this collection are stored. It is relative to source
|
|
935
|
-
"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`.",
|
|
936
958
|
"type": "string"
|
|
937
959
|
},
|
|
938
960
|
"preview": {
|
|
@@ -977,6 +999,9 @@
|
|
|
977
999
|
"type": "string"
|
|
978
1000
|
}
|
|
979
1001
|
},
|
|
1002
|
+
"required": [
|
|
1003
|
+
"path"
|
|
1004
|
+
],
|
|
980
1005
|
"type": "object"
|
|
981
1006
|
},
|
|
982
1007
|
"CollectionGroup": {
|
|
@@ -1006,7 +1031,6 @@
|
|
|
1006
1031
|
"additionalProperties": false,
|
|
1007
1032
|
"properties": {
|
|
1008
1033
|
"cascade": {
|
|
1009
|
-
"default": true,
|
|
1010
1034
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
1011
1035
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
1012
1036
|
"type": "boolean"
|
|
@@ -1075,6 +1099,8 @@
|
|
|
1075
1099
|
},
|
|
1076
1100
|
"type": {
|
|
1077
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.",
|
|
1078
1104
|
"type": "string"
|
|
1079
1105
|
}
|
|
1080
1106
|
},
|
|
@@ -1092,9 +1118,13 @@
|
|
|
1092
1118
|
"type": "boolean"
|
|
1093
1119
|
},
|
|
1094
1120
|
"empty_type": {
|
|
1095
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
1096
1121
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1097
|
-
"
|
|
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"
|
|
1098
1128
|
},
|
|
1099
1129
|
"format": {
|
|
1100
1130
|
"description": "Sets what format the color value is saved as. Defaults to the naming convention, or HEX if that is unset.",
|
|
@@ -1140,8 +1170,8 @@
|
|
|
1140
1170
|
"type": "string"
|
|
1141
1171
|
},
|
|
1142
1172
|
"template_string": {
|
|
1143
|
-
"description": "Set the string for the commit template. This will only be used if template_path is not set.",
|
|
1144
|
-
"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.",
|
|
1145
1175
|
"type": "string"
|
|
1146
1176
|
}
|
|
1147
1177
|
},
|
|
@@ -1213,7 +1243,6 @@
|
|
|
1213
1243
|
"additionalProperties": false,
|
|
1214
1244
|
"properties": {
|
|
1215
1245
|
"cascade": {
|
|
1216
|
-
"default": true,
|
|
1217
1246
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
1218
1247
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
1219
1248
|
"type": "boolean"
|
|
@@ -1277,14 +1306,16 @@
|
|
|
1277
1306
|
},
|
|
1278
1307
|
"options": {
|
|
1279
1308
|
"$ref": "#/definitions/DateInputOptions",
|
|
1280
|
-
"description": "Options that are specific to
|
|
1281
|
-
"markdownDescription": "Options that are specific to
|
|
1309
|
+
"description": "Options that are specific to Date inputs.",
|
|
1310
|
+
"markdownDescription": "Options that are specific to Date inputs."
|
|
1282
1311
|
},
|
|
1283
1312
|
"type": {
|
|
1313
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
1284
1314
|
"enum": [
|
|
1285
1315
|
"date",
|
|
1286
1316
|
"datetime"
|
|
1287
1317
|
],
|
|
1318
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
1288
1319
|
"type": "string"
|
|
1289
1320
|
}
|
|
1290
1321
|
},
|
|
@@ -1297,12 +1328,17 @@
|
|
|
1297
1328
|
"additionalProperties": false,
|
|
1298
1329
|
"properties": {
|
|
1299
1330
|
"empty_type": {
|
|
1300
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
1301
1331
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1302
|
-
"
|
|
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"
|
|
1303
1338
|
},
|
|
1304
1339
|
"timezone": {
|
|
1305
1340
|
"$ref": "#/definitions/Timezone",
|
|
1341
|
+
"default": "Etc/UTC",
|
|
1306
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`.",
|
|
1307
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`."
|
|
1308
1344
|
}
|
|
@@ -1314,6 +1350,7 @@
|
|
|
1314
1350
|
"properties": {
|
|
1315
1351
|
"icon": {
|
|
1316
1352
|
"$ref": "#/definitions/Icon",
|
|
1353
|
+
"default": "auto_stories",
|
|
1317
1354
|
"description": "The icon displayed next to the link.",
|
|
1318
1355
|
"markdownDescription": "The icon displayed next to the link."
|
|
1319
1356
|
},
|
|
@@ -1387,53 +1424,9 @@
|
|
|
1387
1424
|
],
|
|
1388
1425
|
"type": "string"
|
|
1389
1426
|
},
|
|
1390
|
-
"EmptyTypeArray": {
|
|
1391
|
-
"enum": [
|
|
1392
|
-
"null",
|
|
1393
|
-
"array"
|
|
1394
|
-
],
|
|
1395
|
-
"type": "string"
|
|
1396
|
-
},
|
|
1397
|
-
"EmptyTypeNumber": {
|
|
1398
|
-
"enum": [
|
|
1399
|
-
"null",
|
|
1400
|
-
"number"
|
|
1401
|
-
],
|
|
1402
|
-
"type": "string"
|
|
1403
|
-
},
|
|
1404
|
-
"EmptyTypeObject": {
|
|
1405
|
-
"enum": [
|
|
1406
|
-
"null",
|
|
1407
|
-
"object"
|
|
1408
|
-
],
|
|
1409
|
-
"type": "string"
|
|
1410
|
-
},
|
|
1411
|
-
"EmptyTypeText": {
|
|
1412
|
-
"enum": [
|
|
1413
|
-
"null",
|
|
1414
|
-
"string"
|
|
1415
|
-
],
|
|
1416
|
-
"type": "string"
|
|
1417
|
-
},
|
|
1418
1427
|
"FileConfigEntry": {
|
|
1419
1428
|
"additionalProperties": false,
|
|
1420
1429
|
"properties": {
|
|
1421
|
-
"_array_structures": {
|
|
1422
|
-
"additionalProperties": {},
|
|
1423
|
-
"deprecated": "Use _structures instead.",
|
|
1424
|
-
"description": "Now known as _structures.",
|
|
1425
|
-
"markdownDescription": "Now known as _structures.",
|
|
1426
|
-
"type": "object"
|
|
1427
|
-
},
|
|
1428
|
-
"_comments": {
|
|
1429
|
-
"additionalProperties": {
|
|
1430
|
-
"type": "string"
|
|
1431
|
-
},
|
|
1432
|
-
"deprecated": "Use _inputs instead.",
|
|
1433
|
-
"description": "Now part of _inputs.*.comment.",
|
|
1434
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
1435
|
-
"type": "object"
|
|
1436
|
-
},
|
|
1437
1430
|
"_editables": {
|
|
1438
1431
|
"$ref": "#/definitions/Editables",
|
|
1439
1432
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -1456,16 +1449,6 @@
|
|
|
1456
1449
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
1457
1450
|
"type": "object"
|
|
1458
1451
|
},
|
|
1459
|
-
"_options": {
|
|
1460
|
-
"additionalProperties": {
|
|
1461
|
-
"additionalProperties": {},
|
|
1462
|
-
"type": "object"
|
|
1463
|
-
},
|
|
1464
|
-
"deprecated": "Use _inputs instead.",
|
|
1465
|
-
"description": "Now part of _inputs.*.options.",
|
|
1466
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
1467
|
-
"type": "object"
|
|
1468
|
-
},
|
|
1469
1452
|
"_select_data": {
|
|
1470
1453
|
"additionalProperties": {
|
|
1471
1454
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -1507,7 +1490,6 @@
|
|
|
1507
1490
|
"additionalProperties": false,
|
|
1508
1491
|
"properties": {
|
|
1509
1492
|
"cascade": {
|
|
1510
|
-
"default": true,
|
|
1511
1493
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
1512
1494
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
1513
1495
|
"type": "boolean"
|
|
@@ -1571,14 +1553,16 @@
|
|
|
1571
1553
|
},
|
|
1572
1554
|
"options": {
|
|
1573
1555
|
"$ref": "#/definitions/FileInputOptions",
|
|
1574
|
-
"description": "Options that are specific to
|
|
1575
|
-
"markdownDescription": "Options that are specific to
|
|
1556
|
+
"description": "Options that are specific to File inputs.",
|
|
1557
|
+
"markdownDescription": "Options that are specific to File inputs."
|
|
1576
1558
|
},
|
|
1577
1559
|
"type": {
|
|
1560
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
1578
1561
|
"enum": [
|
|
1579
1562
|
"file",
|
|
1580
1563
|
"document"
|
|
1581
1564
|
],
|
|
1565
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
1582
1566
|
"type": "string"
|
|
1583
1567
|
}
|
|
1584
1568
|
},
|
|
@@ -1599,12 +1583,11 @@
|
|
|
1599
1583
|
"type": "array"
|
|
1600
1584
|
},
|
|
1601
1585
|
{
|
|
1602
|
-
"const": "*",
|
|
1603
1586
|
"type": "string"
|
|
1604
1587
|
}
|
|
1605
1588
|
],
|
|
1606
|
-
"description": "Restricts which file types are available to select or upload to this input.",
|
|
1607
|
-
"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."
|
|
1608
1591
|
},
|
|
1609
1592
|
"allowed_sources": {
|
|
1610
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.",
|
|
@@ -1615,9 +1598,13 @@
|
|
|
1615
1598
|
"type": "array"
|
|
1616
1599
|
},
|
|
1617
1600
|
"empty_type": {
|
|
1618
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
1619
1601
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
1620
|
-
"
|
|
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"
|
|
1621
1608
|
},
|
|
1622
1609
|
"paths": {
|
|
1623
1610
|
"$ref": "#/definitions/Paths",
|
|
@@ -3852,7 +3839,6 @@
|
|
|
3852
3839
|
"additionalProperties": false,
|
|
3853
3840
|
"properties": {
|
|
3854
3841
|
"cascade": {
|
|
3855
|
-
"default": true,
|
|
3856
3842
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
3857
3843
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
3858
3844
|
"type": "boolean"
|
|
@@ -3916,11 +3902,13 @@
|
|
|
3916
3902
|
},
|
|
3917
3903
|
"options": {
|
|
3918
3904
|
"$ref": "#/definitions/ImageInputOptions",
|
|
3919
|
-
"description": "Options that are specific to
|
|
3920
|
-
"markdownDescription": "Options that are specific to
|
|
3905
|
+
"description": "Options that are specific to Image inputs.",
|
|
3906
|
+
"markdownDescription": "Options that are specific to Image inputs."
|
|
3921
3907
|
},
|
|
3922
3908
|
"type": {
|
|
3923
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.",
|
|
3924
3912
|
"type": "string"
|
|
3925
3913
|
}
|
|
3926
3914
|
},
|
|
@@ -3941,12 +3929,11 @@
|
|
|
3941
3929
|
"type": "array"
|
|
3942
3930
|
},
|
|
3943
3931
|
{
|
|
3944
|
-
"const": "*",
|
|
3945
3932
|
"type": "string"
|
|
3946
3933
|
}
|
|
3947
3934
|
],
|
|
3948
|
-
"description": "Restricts which file types are available to select or upload to this input.",
|
|
3949
|
-
"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."
|
|
3950
3937
|
},
|
|
3951
3938
|
"allowed_sources": {
|
|
3952
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.",
|
|
@@ -3957,9 +3944,13 @@
|
|
|
3957
3944
|
"type": "array"
|
|
3958
3945
|
},
|
|
3959
3946
|
"empty_type": {
|
|
3960
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
3961
3947
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
3962
|
-
"
|
|
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"
|
|
3963
3954
|
},
|
|
3964
3955
|
"expandable": {
|
|
3965
3956
|
"default": false,
|
|
@@ -4132,7 +4123,8 @@
|
|
|
4132
4123
|
"choice",
|
|
4133
4124
|
"multichoice",
|
|
4134
4125
|
"object",
|
|
4135
|
-
"array"
|
|
4126
|
+
"array",
|
|
4127
|
+
"auto"
|
|
4136
4128
|
],
|
|
4137
4129
|
"type": "string"
|
|
4138
4130
|
},
|
|
@@ -4144,15 +4136,7 @@
|
|
|
4144
4136
|
"type": "string"
|
|
4145
4137
|
},
|
|
4146
4138
|
"LinkEditable": {
|
|
4147
|
-
"
|
|
4148
|
-
"properties": {
|
|
4149
|
-
"paths": {
|
|
4150
|
-
"$ref": "#/definitions/Paths",
|
|
4151
|
-
"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`.",
|
|
4152
|
-
"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`."
|
|
4153
|
-
}
|
|
4154
|
-
},
|
|
4155
|
-
"type": "object"
|
|
4139
|
+
"$ref": "#/definitions/WithPaths"
|
|
4156
4140
|
},
|
|
4157
4141
|
"MarkdownAttributeElementOptions": {
|
|
4158
4142
|
"additionalProperties": {
|
|
@@ -4172,10 +4156,13 @@
|
|
|
4172
4156
|
"additionalProperties": false,
|
|
4173
4157
|
"properties": {
|
|
4174
4158
|
"engine": {
|
|
4159
|
+
"default": "kramdown",
|
|
4160
|
+
"description": "The flavor of Markdown to use to convert between HTML and Markdown.",
|
|
4175
4161
|
"enum": [
|
|
4176
4162
|
"commonmark",
|
|
4177
4163
|
"kramdown"
|
|
4178
4164
|
],
|
|
4165
|
+
"markdownDescription": "The flavor of Markdown to use to convert between HTML and Markdown.",
|
|
4179
4166
|
"type": "string"
|
|
4180
4167
|
},
|
|
4181
4168
|
"options": {
|
|
@@ -4183,8 +4170,8 @@
|
|
|
4183
4170
|
"properties": {
|
|
4184
4171
|
"attribute_elements": {
|
|
4185
4172
|
"$ref": "#/definitions/MarkdownAttributeElementOptions",
|
|
4186
|
-
"description": "Define positioning
|
|
4187
|
-
"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."
|
|
4188
4175
|
},
|
|
4189
4176
|
"attributes": {
|
|
4190
4177
|
"description": "Save element attributes in Markdown format instead of converting to HTML.",
|
|
@@ -4192,8 +4179,8 @@
|
|
|
4192
4179
|
"type": "boolean"
|
|
4193
4180
|
},
|
|
4194
4181
|
"breaks": {
|
|
4195
|
-
"description": "Convert
|
|
4196
|
-
"markdownDescription": "Convert
|
|
4182
|
+
"description": "Convert `\\n` in paragraphs into `<br>`.",
|
|
4183
|
+
"markdownDescription": "Convert `\\n` in paragraphs into `<br>`.",
|
|
4197
4184
|
"type": "boolean"
|
|
4198
4185
|
},
|
|
4199
4186
|
"code_block_fences": {
|
|
@@ -4216,8 +4203,8 @@
|
|
|
4216
4203
|
"type": "boolean"
|
|
4217
4204
|
},
|
|
4218
4205
|
"heading_ids": {
|
|
4219
|
-
"description": "Generate IDs for headings",
|
|
4220
|
-
"markdownDescription": "Generate IDs for headings",
|
|
4206
|
+
"description": "Generate IDs for headings.",
|
|
4207
|
+
"markdownDescription": "Generate IDs for headings.",
|
|
4221
4208
|
"type": "boolean"
|
|
4222
4209
|
},
|
|
4223
4210
|
"html": {
|
|
@@ -4231,8 +4218,8 @@
|
|
|
4231
4218
|
"type": "boolean"
|
|
4232
4219
|
},
|
|
4233
4220
|
"quotes": {
|
|
4234
|
-
"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).",
|
|
4235
|
-
"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`).",
|
|
4236
4223
|
"type": "string"
|
|
4237
4224
|
},
|
|
4238
4225
|
"sentence_per_line": {
|
|
@@ -4246,18 +4233,18 @@
|
|
|
4246
4233
|
"type": "boolean"
|
|
4247
4234
|
},
|
|
4248
4235
|
"strikethrough": {
|
|
4249
|
-
"description": "Output strikes in wrapped in double tildes (e.g.
|
|
4250
|
-
"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~~`).",
|
|
4251
4238
|
"type": "boolean"
|
|
4252
4239
|
},
|
|
4253
4240
|
"subscript": {
|
|
4254
|
-
"description": "Output subscript in wrapped in tildes (e.g.
|
|
4255
|
-
"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~`).",
|
|
4256
4243
|
"type": "boolean"
|
|
4257
4244
|
},
|
|
4258
4245
|
"superscript": {
|
|
4259
|
-
"description": "Output superscript in wrapped in carets (e.g.
|
|
4260
|
-
"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^`).",
|
|
4261
4248
|
"type": "boolean"
|
|
4262
4249
|
},
|
|
4263
4250
|
"table": {
|
|
@@ -4271,13 +4258,13 @@
|
|
|
4271
4258
|
"type": "boolean"
|
|
4272
4259
|
},
|
|
4273
4260
|
"typographer": {
|
|
4274
|
-
"description": "Enable some language-neutral replacement
|
|
4275
|
-
"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.",
|
|
4276
4263
|
"type": "boolean"
|
|
4277
4264
|
},
|
|
4278
4265
|
"xhtml": {
|
|
4279
|
-
"description": "Use
|
|
4280
|
-
"markdownDescription": "Use
|
|
4266
|
+
"description": "Use `/` to close single tags (e.g. `<br />`).",
|
|
4267
|
+
"markdownDescription": "Use `/` to close single tags (e.g. `<br />`).",
|
|
4281
4268
|
"type": "boolean"
|
|
4282
4269
|
}
|
|
4283
4270
|
},
|
|
@@ -4732,7 +4719,6 @@
|
|
|
4732
4719
|
"additionalProperties": false,
|
|
4733
4720
|
"properties": {
|
|
4734
4721
|
"cascade": {
|
|
4735
|
-
"default": true,
|
|
4736
4722
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
4737
4723
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
4738
4724
|
"type": "boolean"
|
|
@@ -4806,9 +4792,13 @@
|
|
|
4806
4792
|
"type": "boolean"
|
|
4807
4793
|
},
|
|
4808
4794
|
"empty_type": {
|
|
4809
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
4810
4795
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4811
|
-
"
|
|
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"
|
|
4812
4802
|
},
|
|
4813
4803
|
"picker_preview": {
|
|
4814
4804
|
"$ref": "#/definitions/Preview",
|
|
@@ -4864,6 +4854,8 @@
|
|
|
4864
4854
|
},
|
|
4865
4855
|
"type": {
|
|
4866
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.",
|
|
4867
4859
|
"type": "string"
|
|
4868
4860
|
}
|
|
4869
4861
|
},
|
|
@@ -4876,7 +4868,6 @@
|
|
|
4876
4868
|
"additionalProperties": false,
|
|
4877
4869
|
"properties": {
|
|
4878
4870
|
"cascade": {
|
|
4879
|
-
"default": true,
|
|
4880
4871
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
4881
4872
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
4882
4873
|
"type": "boolean"
|
|
@@ -4956,9 +4947,13 @@
|
|
|
4956
4947
|
"type": "boolean"
|
|
4957
4948
|
},
|
|
4958
4949
|
"empty_type": {
|
|
4959
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
4960
4950
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4961
|
-
"
|
|
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"
|
|
4962
4957
|
},
|
|
4963
4958
|
"picker_preview": {
|
|
4964
4959
|
"$ref": "#/definitions/Preview",
|
|
@@ -5014,6 +5009,8 @@
|
|
|
5014
5009
|
},
|
|
5015
5010
|
"type": {
|
|
5016
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.",
|
|
5017
5014
|
"type": "string"
|
|
5018
5015
|
}
|
|
5019
5016
|
},
|
|
@@ -5026,7 +5023,6 @@
|
|
|
5026
5023
|
"additionalProperties": false,
|
|
5027
5024
|
"properties": {
|
|
5028
5025
|
"cascade": {
|
|
5029
|
-
"default": true,
|
|
5030
5026
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5031
5027
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5032
5028
|
"type": "boolean"
|
|
@@ -5095,6 +5091,8 @@
|
|
|
5095
5091
|
},
|
|
5096
5092
|
"type": {
|
|
5097
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.",
|
|
5098
5096
|
"type": "string"
|
|
5099
5097
|
}
|
|
5100
5098
|
},
|
|
@@ -5107,9 +5105,13 @@
|
|
|
5107
5105
|
"additionalProperties": false,
|
|
5108
5106
|
"properties": {
|
|
5109
5107
|
"empty_type": {
|
|
5110
|
-
"$ref": "#/definitions/EmptyTypeNumber",
|
|
5111
5108
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5112
|
-
"
|
|
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"
|
|
5113
5115
|
},
|
|
5114
5116
|
"max": {
|
|
5115
5117
|
"description": "The greatest value in the range of permitted values.",
|
|
@@ -5133,7 +5135,6 @@
|
|
|
5133
5135
|
"additionalProperties": false,
|
|
5134
5136
|
"properties": {
|
|
5135
5137
|
"cascade": {
|
|
5136
|
-
"default": true,
|
|
5137
5138
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5138
5139
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5139
5140
|
"type": "boolean"
|
|
@@ -5202,6 +5203,8 @@
|
|
|
5202
5203
|
},
|
|
5203
5204
|
"type": {
|
|
5204
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.",
|
|
5205
5208
|
"type": "string"
|
|
5206
5209
|
}
|
|
5207
5210
|
},
|
|
@@ -5214,21 +5217,32 @@
|
|
|
5214
5217
|
"additionalProperties": false,
|
|
5215
5218
|
"properties": {
|
|
5216
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.",
|
|
5217
5223
|
"type": "boolean"
|
|
5218
5224
|
},
|
|
5219
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.",
|
|
5220
5228
|
"type": "string"
|
|
5221
5229
|
},
|
|
5222
5230
|
"documentation": {
|
|
5223
|
-
"$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."
|
|
5224
5234
|
},
|
|
5225
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.",
|
|
5226
5238
|
"type": "string"
|
|
5227
5239
|
},
|
|
5228
5240
|
"inputs": {
|
|
5241
|
+
"description": "The keys of each input in this group.",
|
|
5229
5242
|
"items": {
|
|
5230
5243
|
"type": "string"
|
|
5231
5244
|
},
|
|
5245
|
+
"markdownDescription": "The keys of each input in this group.",
|
|
5232
5246
|
"type": "array"
|
|
5233
5247
|
}
|
|
5234
5248
|
},
|
|
@@ -5238,14 +5252,19 @@
|
|
|
5238
5252
|
"additionalProperties": false,
|
|
5239
5253
|
"properties": {
|
|
5240
5254
|
"allow_label_formatting": {
|
|
5255
|
+
"default": false,
|
|
5241
5256
|
"description": "Controls whether or not labels on mutable object entries are formatted.",
|
|
5242
5257
|
"markdownDescription": "Controls whether or not labels on mutable object entries are formatted.",
|
|
5243
5258
|
"type": "boolean"
|
|
5244
5259
|
},
|
|
5245
5260
|
"empty_type": {
|
|
5246
|
-
"$ref": "#/definitions/EmptyTypeObject",
|
|
5247
5261
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5248
|
-
"
|
|
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"
|
|
5249
5268
|
},
|
|
5250
5269
|
"entries": {
|
|
5251
5270
|
"additionalProperties": false,
|
|
@@ -5295,6 +5314,7 @@
|
|
|
5295
5314
|
"type": "array"
|
|
5296
5315
|
},
|
|
5297
5316
|
"place_groups_below": {
|
|
5317
|
+
"default": false,
|
|
5298
5318
|
"description": "Controls which order input groups and ungrouped inputs appear in.",
|
|
5299
5319
|
"markdownDescription": "Controls which order input groups and ungrouped inputs appear in.",
|
|
5300
5320
|
"type": "boolean"
|
|
@@ -5317,6 +5337,7 @@
|
|
|
5317
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."
|
|
5318
5338
|
},
|
|
5319
5339
|
"subtype": {
|
|
5340
|
+
"default": "object",
|
|
5320
5341
|
"description": "Changes the appearance and behavior of the input.",
|
|
5321
5342
|
"enum": [
|
|
5322
5343
|
"object",
|
|
@@ -5343,13 +5364,11 @@
|
|
|
5343
5364
|
"additionalProperties": false,
|
|
5344
5365
|
"properties": {
|
|
5345
5366
|
"dam_static": {
|
|
5346
|
-
"default": "",
|
|
5347
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.",
|
|
5348
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.",
|
|
5349
5369
|
"type": "string"
|
|
5350
5370
|
},
|
|
5351
5371
|
"dam_uploads": {
|
|
5352
|
-
"default": "",
|
|
5353
5372
|
"description": "Default location of newly uploaded DAM files.",
|
|
5354
5373
|
"markdownDescription": "Default location of newly uploaded DAM files.",
|
|
5355
5374
|
"type": "string"
|
|
@@ -5457,6 +5476,7 @@
|
|
|
5457
5476
|
"additionalProperties": false,
|
|
5458
5477
|
"properties": {
|
|
5459
5478
|
"fit": {
|
|
5479
|
+
"default": "padded",
|
|
5460
5480
|
"description": "Controls how the gallery image is positioned within the gallery.",
|
|
5461
5481
|
"enum": [
|
|
5462
5482
|
"padded",
|
|
@@ -5534,7 +5554,6 @@
|
|
|
5534
5554
|
"additionalProperties": false,
|
|
5535
5555
|
"properties": {
|
|
5536
5556
|
"cascade": {
|
|
5537
|
-
"default": true,
|
|
5538
5557
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5539
5558
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5540
5559
|
"type": "boolean"
|
|
@@ -5603,6 +5622,8 @@
|
|
|
5603
5622
|
},
|
|
5604
5623
|
"type": {
|
|
5605
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.",
|
|
5606
5627
|
"type": "string"
|
|
5607
5628
|
}
|
|
5608
5629
|
},
|
|
@@ -5615,38 +5636,39 @@
|
|
|
5615
5636
|
"additionalProperties": false,
|
|
5616
5637
|
"properties": {
|
|
5617
5638
|
"empty_type": {
|
|
5618
|
-
"$ref": "#/definitions/EmptyTypeNumber",
|
|
5619
5639
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5620
|
-
"
|
|
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"
|
|
5621
5646
|
},
|
|
5622
5647
|
"max": {
|
|
5648
|
+
"default": 10,
|
|
5623
5649
|
"description": "The greatest value in the range of permitted values.",
|
|
5624
5650
|
"markdownDescription": "The greatest value in the range of permitted values.",
|
|
5625
5651
|
"type": "number"
|
|
5626
5652
|
},
|
|
5627
5653
|
"min": {
|
|
5654
|
+
"default": 0,
|
|
5628
5655
|
"description": "The lowest value in the range of permitted values.",
|
|
5629
5656
|
"markdownDescription": "The lowest value in the range of permitted values.",
|
|
5630
5657
|
"type": "number"
|
|
5631
5658
|
},
|
|
5632
5659
|
"step": {
|
|
5660
|
+
"default": 1,
|
|
5633
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`.",
|
|
5634
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`.",
|
|
5635
5663
|
"type": "number"
|
|
5636
5664
|
}
|
|
5637
5665
|
},
|
|
5638
|
-
"required": [
|
|
5639
|
-
"min",
|
|
5640
|
-
"max",
|
|
5641
|
-
"step"
|
|
5642
|
-
],
|
|
5643
5666
|
"type": "object"
|
|
5644
5667
|
},
|
|
5645
5668
|
"RichTextInput": {
|
|
5646
5669
|
"additionalProperties": false,
|
|
5647
5670
|
"properties": {
|
|
5648
5671
|
"cascade": {
|
|
5649
|
-
"default": true,
|
|
5650
5672
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
5651
5673
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
5652
5674
|
"type": "boolean"
|
|
@@ -5714,10 +5736,12 @@
|
|
|
5714
5736
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
5715
5737
|
},
|
|
5716
5738
|
"type": {
|
|
5739
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5717
5740
|
"enum": [
|
|
5718
5741
|
"html",
|
|
5719
5742
|
"markdown"
|
|
5720
5743
|
],
|
|
5744
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
5721
5745
|
"type": "string"
|
|
5722
5746
|
}
|
|
5723
5747
|
},
|
|
@@ -5735,6 +5759,7 @@
|
|
|
5735
5759
|
"type": "boolean"
|
|
5736
5760
|
},
|
|
5737
5761
|
"allow_resize": {
|
|
5762
|
+
"default": false,
|
|
5738
5763
|
"description": "Shows or hides the resize handler to vertically resize the input.",
|
|
5739
5764
|
"markdownDescription": "Shows or hides the resize handler to vertically resize the input.",
|
|
5740
5765
|
"type": "boolean"
|
|
@@ -5748,16 +5773,19 @@
|
|
|
5748
5773
|
"type": "array"
|
|
5749
5774
|
},
|
|
5750
5775
|
"blockquote": {
|
|
5776
|
+
"default": true,
|
|
5751
5777
|
"description": "Enables a control to wrap blocks of text in block quotes.",
|
|
5752
5778
|
"markdownDescription": "Enables a control to wrap blocks of text in block quotes.",
|
|
5753
5779
|
"type": "boolean"
|
|
5754
5780
|
},
|
|
5755
5781
|
"bold": {
|
|
5782
|
+
"default": true,
|
|
5756
5783
|
"description": "Enables a control to set selected text to bold.",
|
|
5757
5784
|
"markdownDescription": "Enables a control to set selected text to bold.",
|
|
5758
5785
|
"type": "boolean"
|
|
5759
5786
|
},
|
|
5760
5787
|
"bulletedlist": {
|
|
5788
|
+
"default": true,
|
|
5761
5789
|
"description": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list.",
|
|
5762
5790
|
"markdownDescription": "Enables a control to insert an unordered list, or to convert selected blocks of text into a\nunordered list.",
|
|
5763
5791
|
"type": "boolean"
|
|
@@ -5768,34 +5796,43 @@
|
|
|
5768
5796
|
"type": "string"
|
|
5769
5797
|
},
|
|
5770
5798
|
"code": {
|
|
5799
|
+
"default": false,
|
|
5771
5800
|
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5772
5801
|
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5773
5802
|
"type": "boolean"
|
|
5774
5803
|
},
|
|
5775
5804
|
"code_block": {
|
|
5805
|
+
"default": false,
|
|
5776
5806
|
"description": "Enables a control to insert a code block.",
|
|
5777
5807
|
"markdownDescription": "Enables a control to insert a code block.",
|
|
5778
5808
|
"type": "boolean"
|
|
5779
5809
|
},
|
|
5780
5810
|
"code_inline": {
|
|
5811
|
+
"default": false,
|
|
5781
5812
|
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
5782
5813
|
"markdownDescription": "Enables a control to create an inline code element, containing any selected text.",
|
|
5783
5814
|
"type": "boolean"
|
|
5784
5815
|
},
|
|
5785
5816
|
"copyformatting": {
|
|
5817
|
+
"default": false,
|
|
5786
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.",
|
|
5787
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.",
|
|
5788
5820
|
"type": "boolean"
|
|
5789
5821
|
},
|
|
5790
5822
|
"embed": {
|
|
5823
|
+
"default": false,
|
|
5791
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.",
|
|
5792
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.",
|
|
5793
5826
|
"type": "boolean"
|
|
5794
5827
|
},
|
|
5795
5828
|
"empty_type": {
|
|
5796
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
5797
5829
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5798
|
-
"
|
|
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"
|
|
5799
5836
|
},
|
|
5800
5837
|
"expandable": {
|
|
5801
5838
|
"default": false,
|
|
@@ -5804,6 +5841,7 @@
|
|
|
5804
5841
|
"type": "boolean"
|
|
5805
5842
|
},
|
|
5806
5843
|
"format": {
|
|
5844
|
+
"default": "p h1 h2 h3 h4 h5 h6",
|
|
5807
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\").",
|
|
5808
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\").",
|
|
5809
5847
|
"type": "string"
|
|
@@ -5814,11 +5852,13 @@
|
|
|
5814
5852
|
"type": "number"
|
|
5815
5853
|
},
|
|
5816
5854
|
"horizontalrule": {
|
|
5855
|
+
"default": false,
|
|
5817
5856
|
"description": "Enables a control to insert a horizontal rule.",
|
|
5818
5857
|
"markdownDescription": "Enables a control to insert a horizontal rule.",
|
|
5819
5858
|
"type": "boolean"
|
|
5820
5859
|
},
|
|
5821
5860
|
"image": {
|
|
5861
|
+
"default": true,
|
|
5822
5862
|
"description": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
5823
5863
|
"markdownDescription": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
5824
5864
|
"type": "boolean"
|
|
@@ -5830,16 +5870,19 @@
|
|
|
5830
5870
|
"type": "boolean"
|
|
5831
5871
|
},
|
|
5832
5872
|
"indent": {
|
|
5873
|
+
"default": false,
|
|
5833
5874
|
"description": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
5834
5875
|
"markdownDescription": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
5835
5876
|
"type": "boolean"
|
|
5836
5877
|
},
|
|
5837
5878
|
"initial_height": {
|
|
5879
|
+
"default": 320,
|
|
5838
5880
|
"description": "Defines the initial height of this input in pixels (px).",
|
|
5839
5881
|
"markdownDescription": "Defines the initial height of this input in pixels (px).",
|
|
5840
5882
|
"type": "number"
|
|
5841
5883
|
},
|
|
5842
5884
|
"italic": {
|
|
5885
|
+
"default": true,
|
|
5843
5886
|
"description": "Enables a control to italicize selected text.",
|
|
5844
5887
|
"markdownDescription": "Enables a control to italicize selected text.",
|
|
5845
5888
|
"type": "boolean"
|
|
@@ -5855,6 +5898,7 @@
|
|
|
5855
5898
|
"type": "string"
|
|
5856
5899
|
},
|
|
5857
5900
|
"link": {
|
|
5901
|
+
"default": true,
|
|
5858
5902
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
5859
5903
|
"markdownDescription": "Enables a control to create hyperlinks around selected text.",
|
|
5860
5904
|
"type": "boolean"
|
|
@@ -5870,11 +5914,13 @@
|
|
|
5870
5914
|
"type": "string"
|
|
5871
5915
|
},
|
|
5872
5916
|
"numberedlist": {
|
|
5917
|
+
"default": true,
|
|
5873
5918
|
"description": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list.",
|
|
5874
5919
|
"markdownDescription": "Enables a control to insert a numbered list, or to convert selected blocks of text into a\nnumbered list.",
|
|
5875
5920
|
"type": "boolean"
|
|
5876
5921
|
},
|
|
5877
5922
|
"outdent": {
|
|
5923
|
+
"default": false,
|
|
5878
5924
|
"description": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
5879
5925
|
"markdownDescription": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
5880
5926
|
"type": "boolean"
|
|
@@ -5891,6 +5937,7 @@
|
|
|
5891
5937
|
"type": "boolean"
|
|
5892
5938
|
},
|
|
5893
5939
|
"redo": {
|
|
5940
|
+
"default": false,
|
|
5894
5941
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
5895
5942
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through\nstandard OS-specific keyboard shortcuts.",
|
|
5896
5943
|
"type": "boolean"
|
|
@@ -5901,6 +5948,7 @@
|
|
|
5901
5948
|
"type": "boolean"
|
|
5902
5949
|
},
|
|
5903
5950
|
"removeformat": {
|
|
5951
|
+
"default": true,
|
|
5904
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.",
|
|
5905
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.",
|
|
5906
5954
|
"type": "boolean"
|
|
@@ -5947,11 +5995,13 @@
|
|
|
5947
5995
|
"type": "array"
|
|
5948
5996
|
},
|
|
5949
5997
|
"snippet": {
|
|
5998
|
+
"default": true,
|
|
5950
5999
|
"description": "Enables a control to insert snippets, if any are available.",
|
|
5951
6000
|
"markdownDescription": "Enables a control to insert snippets, if any are available.",
|
|
5952
6001
|
"type": "boolean"
|
|
5953
6002
|
},
|
|
5954
6003
|
"strike": {
|
|
6004
|
+
"default": false,
|
|
5955
6005
|
"description": "Enables a control to strike selected text.",
|
|
5956
6006
|
"markdownDescription": "Enables a control to strike selected text.",
|
|
5957
6007
|
"type": "boolean"
|
|
@@ -5962,26 +6012,31 @@
|
|
|
5962
6012
|
"type": "string"
|
|
5963
6013
|
},
|
|
5964
6014
|
"subscript": {
|
|
6015
|
+
"default": false,
|
|
5965
6016
|
"description": "Enables a control to set selected text to subscript.",
|
|
5966
6017
|
"markdownDescription": "Enables a control to set selected text to subscript.",
|
|
5967
6018
|
"type": "boolean"
|
|
5968
6019
|
},
|
|
5969
6020
|
"superscript": {
|
|
6021
|
+
"default": false,
|
|
5970
6022
|
"description": "Enables a control to set selected text to superscript.",
|
|
5971
6023
|
"markdownDescription": "Enables a control to set selected text to superscript.",
|
|
5972
6024
|
"type": "boolean"
|
|
5973
6025
|
},
|
|
5974
6026
|
"table": {
|
|
6027
|
+
"default": false,
|
|
5975
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.",
|
|
5976
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.",
|
|
5977
6030
|
"type": "boolean"
|
|
5978
6031
|
},
|
|
5979
6032
|
"underline": {
|
|
6033
|
+
"default": false,
|
|
5980
6034
|
"description": "Enables a control to underline selected text.",
|
|
5981
6035
|
"markdownDescription": "Enables a control to underline selected text.",
|
|
5982
6036
|
"type": "boolean"
|
|
5983
6037
|
},
|
|
5984
6038
|
"undo": {
|
|
6039
|
+
"default": false,
|
|
5985
6040
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
5986
6041
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific\nkeyboard shortcuts.",
|
|
5987
6042
|
"type": "boolean"
|
|
@@ -5997,22 +6052,6 @@
|
|
|
5997
6052
|
"Schema": {
|
|
5998
6053
|
"additionalProperties": false,
|
|
5999
6054
|
"properties": {
|
|
6000
|
-
"_array_structures": {
|
|
6001
|
-
"additionalProperties": {},
|
|
6002
|
-
"deprecated": "Use _structures instead.",
|
|
6003
|
-
"description": "Now known as _structures.",
|
|
6004
|
-
"markdownDescription": "Now known as _structures.",
|
|
6005
|
-
"type": "object"
|
|
6006
|
-
},
|
|
6007
|
-
"_comments": {
|
|
6008
|
-
"additionalProperties": {
|
|
6009
|
-
"type": "string"
|
|
6010
|
-
},
|
|
6011
|
-
"deprecated": "Use _inputs instead.",
|
|
6012
|
-
"description": "Now part of _inputs.*.comment.",
|
|
6013
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
6014
|
-
"type": "object"
|
|
6015
|
-
},
|
|
6016
6055
|
"_editables": {
|
|
6017
6056
|
"$ref": "#/definitions/Editables",
|
|
6018
6057
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -6035,16 +6074,6 @@
|
|
|
6035
6074
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
6036
6075
|
"type": "object"
|
|
6037
6076
|
},
|
|
6038
|
-
"_options": {
|
|
6039
|
-
"additionalProperties": {
|
|
6040
|
-
"additionalProperties": {},
|
|
6041
|
-
"type": "object"
|
|
6042
|
-
},
|
|
6043
|
-
"deprecated": "Use _inputs instead.",
|
|
6044
|
-
"description": "Now part of _inputs.*.options.",
|
|
6045
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
6046
|
-
"type": "object"
|
|
6047
|
-
},
|
|
6048
6077
|
"_select_data": {
|
|
6049
6078
|
"additionalProperties": {
|
|
6050
6079
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -6073,6 +6102,7 @@
|
|
|
6073
6102
|
},
|
|
6074
6103
|
"icon": {
|
|
6075
6104
|
"$ref": "#/definitions/Icon",
|
|
6105
|
+
"default": "notes",
|
|
6076
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.",
|
|
6077
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."
|
|
6078
6108
|
},
|
|
@@ -6121,7 +6151,6 @@
|
|
|
6121
6151
|
"additionalProperties": false,
|
|
6122
6152
|
"properties": {
|
|
6123
6153
|
"cascade": {
|
|
6124
|
-
"default": true,
|
|
6125
6154
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
6126
6155
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
6127
6156
|
"type": "boolean"
|
|
@@ -6201,9 +6230,13 @@
|
|
|
6201
6230
|
"type": "boolean"
|
|
6202
6231
|
},
|
|
6203
6232
|
"empty_type": {
|
|
6204
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
6205
6233
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
6206
|
-
"
|
|
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"
|
|
6207
6240
|
},
|
|
6208
6241
|
"picker_preview": {
|
|
6209
6242
|
"$ref": "#/definitions/Preview",
|
|
@@ -6259,6 +6292,8 @@
|
|
|
6259
6292
|
},
|
|
6260
6293
|
"type": {
|
|
6261
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.",
|
|
6262
6297
|
"type": "string"
|
|
6263
6298
|
}
|
|
6264
6299
|
},
|
|
@@ -6339,6 +6374,7 @@
|
|
|
6339
6374
|
"type": "array"
|
|
6340
6375
|
},
|
|
6341
6376
|
"definitions": {
|
|
6377
|
+
"additionalProperties": {},
|
|
6342
6378
|
"description": "The variables required for the selected template.",
|
|
6343
6379
|
"markdownDescription": "The variables required for the selected template.",
|
|
6344
6380
|
"type": "object"
|
|
@@ -6349,6 +6385,7 @@
|
|
|
6349
6385
|
"type": "boolean"
|
|
6350
6386
|
},
|
|
6351
6387
|
"params": {
|
|
6388
|
+
"additionalProperties": {},
|
|
6352
6389
|
"description": "The parameters of this snippet.",
|
|
6353
6390
|
"markdownDescription": "The parameters of this snippet.",
|
|
6354
6391
|
"type": "object"
|
|
@@ -6377,6 +6414,16 @@
|
|
|
6377
6414
|
"description": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6378
6415
|
"markdownDescription": "The template that this snippet should inherit, out of the available Shortcode Templates.",
|
|
6379
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"
|
|
6380
6427
|
}
|
|
6381
6428
|
},
|
|
6382
6429
|
"type": "object"
|
|
@@ -6404,7 +6451,8 @@
|
|
|
6404
6451
|
"type": "string"
|
|
6405
6452
|
},
|
|
6406
6453
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6407
|
-
"type": "array"
|
|
6454
|
+
"type": "array",
|
|
6455
|
+
"uniqueItems": true
|
|
6408
6456
|
}
|
|
6409
6457
|
},
|
|
6410
6458
|
"required": [
|
|
@@ -6427,7 +6475,8 @@
|
|
|
6427
6475
|
"type": "string"
|
|
6428
6476
|
},
|
|
6429
6477
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6430
|
-
"type": "array"
|
|
6478
|
+
"type": "array",
|
|
6479
|
+
"uniqueItems": true
|
|
6431
6480
|
}
|
|
6432
6481
|
},
|
|
6433
6482
|
"required": [
|
|
@@ -6459,7 +6508,8 @@
|
|
|
6459
6508
|
"type": "string"
|
|
6460
6509
|
},
|
|
6461
6510
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6462
|
-
"type": "array"
|
|
6511
|
+
"type": "array",
|
|
6512
|
+
"uniqueItems": true
|
|
6463
6513
|
}
|
|
6464
6514
|
},
|
|
6465
6515
|
"required": [
|
|
@@ -6482,7 +6532,8 @@
|
|
|
6482
6532
|
"type": "string"
|
|
6483
6533
|
},
|
|
6484
6534
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6485
|
-
"type": "array"
|
|
6535
|
+
"type": "array",
|
|
6536
|
+
"uniqueItems": true
|
|
6486
6537
|
}
|
|
6487
6538
|
},
|
|
6488
6539
|
"required": [
|
|
@@ -6515,7 +6566,8 @@
|
|
|
6515
6566
|
"type": "string"
|
|
6516
6567
|
},
|
|
6517
6568
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6518
|
-
"type": "array"
|
|
6569
|
+
"type": "array",
|
|
6570
|
+
"uniqueItems": true
|
|
6519
6571
|
}
|
|
6520
6572
|
},
|
|
6521
6573
|
"required": [
|
|
@@ -6539,7 +6591,8 @@
|
|
|
6539
6591
|
"type": "string"
|
|
6540
6592
|
},
|
|
6541
6593
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6542
|
-
"type": "array"
|
|
6594
|
+
"type": "array",
|
|
6595
|
+
"uniqueItems": true
|
|
6543
6596
|
}
|
|
6544
6597
|
},
|
|
6545
6598
|
"required": [
|
|
@@ -6582,7 +6635,8 @@
|
|
|
6582
6635
|
"type": "string"
|
|
6583
6636
|
},
|
|
6584
6637
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6585
|
-
"type": "array"
|
|
6638
|
+
"type": "array",
|
|
6639
|
+
"uniqueItems": true
|
|
6586
6640
|
}
|
|
6587
6641
|
},
|
|
6588
6642
|
"required": [
|
|
@@ -6616,7 +6670,8 @@
|
|
|
6616
6670
|
"type": "string"
|
|
6617
6671
|
},
|
|
6618
6672
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6619
|
-
"type": "array"
|
|
6673
|
+
"type": "array",
|
|
6674
|
+
"uniqueItems": true
|
|
6620
6675
|
}
|
|
6621
6676
|
},
|
|
6622
6677
|
"required": [
|
|
@@ -6651,7 +6706,8 @@
|
|
|
6651
6706
|
"type": "string"
|
|
6652
6707
|
},
|
|
6653
6708
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6654
|
-
"type": "array"
|
|
6709
|
+
"type": "array",
|
|
6710
|
+
"uniqueItems": true
|
|
6655
6711
|
}
|
|
6656
6712
|
},
|
|
6657
6713
|
"required": [
|
|
@@ -6677,7 +6733,8 @@
|
|
|
6677
6733
|
"type": "string"
|
|
6678
6734
|
},
|
|
6679
6735
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6680
|
-
"type": "array"
|
|
6736
|
+
"type": "array",
|
|
6737
|
+
"uniqueItems": true
|
|
6681
6738
|
}
|
|
6682
6739
|
},
|
|
6683
6740
|
"required": [
|
|
@@ -6711,7 +6768,8 @@
|
|
|
6711
6768
|
"type": "string"
|
|
6712
6769
|
},
|
|
6713
6770
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6714
|
-
"type": "array"
|
|
6771
|
+
"type": "array",
|
|
6772
|
+
"uniqueItems": true
|
|
6715
6773
|
}
|
|
6716
6774
|
},
|
|
6717
6775
|
"required": [
|
|
@@ -6736,7 +6794,8 @@
|
|
|
6736
6794
|
"type": "string"
|
|
6737
6795
|
},
|
|
6738
6796
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6739
|
-
"type": "array"
|
|
6797
|
+
"type": "array",
|
|
6798
|
+
"uniqueItems": true
|
|
6740
6799
|
}
|
|
6741
6800
|
},
|
|
6742
6801
|
"required": [
|
|
@@ -6771,7 +6830,8 @@
|
|
|
6771
6830
|
"type": "string"
|
|
6772
6831
|
},
|
|
6773
6832
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6774
|
-
"type": "array"
|
|
6833
|
+
"type": "array",
|
|
6834
|
+
"uniqueItems": true
|
|
6775
6835
|
}
|
|
6776
6836
|
},
|
|
6777
6837
|
"required": [
|
|
@@ -6797,7 +6857,8 @@
|
|
|
6797
6857
|
"type": "string"
|
|
6798
6858
|
},
|
|
6799
6859
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6800
|
-
"type": "array"
|
|
6860
|
+
"type": "array",
|
|
6861
|
+
"uniqueItems": true
|
|
6801
6862
|
}
|
|
6802
6863
|
},
|
|
6803
6864
|
"required": [
|
|
@@ -6847,7 +6908,8 @@
|
|
|
6847
6908
|
"type": "string"
|
|
6848
6909
|
},
|
|
6849
6910
|
"markdownDescription": "The list of excluded snippets. If unset, all snippets are excluded unless defined in\n`include`.",
|
|
6850
|
-
"type": "array"
|
|
6911
|
+
"type": "array",
|
|
6912
|
+
"uniqueItems": true
|
|
6851
6913
|
}
|
|
6852
6914
|
},
|
|
6853
6915
|
"required": [
|
|
@@ -6888,7 +6950,8 @@
|
|
|
6888
6950
|
"type": "string"
|
|
6889
6951
|
},
|
|
6890
6952
|
"markdownDescription": "The list of included snippets. If unset, all snippets are included unless defined in\n`exclude`.",
|
|
6891
|
-
"type": "array"
|
|
6953
|
+
"type": "array",
|
|
6954
|
+
"uniqueItems": true
|
|
6892
6955
|
}
|
|
6893
6956
|
},
|
|
6894
6957
|
"required": [
|
|
@@ -7010,6 +7073,7 @@
|
|
|
7010
7073
|
"type": "boolean"
|
|
7011
7074
|
},
|
|
7012
7075
|
"style": {
|
|
7076
|
+
"default": "select",
|
|
7013
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.",
|
|
7014
7078
|
"enum": [
|
|
7015
7079
|
"select",
|
|
@@ -7035,11 +7099,60 @@
|
|
|
7035
7099
|
"StructureValue": {
|
|
7036
7100
|
"additionalProperties": false,
|
|
7037
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
|
+
},
|
|
7038
7145
|
"default": {
|
|
7146
|
+
"default": false,
|
|
7039
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.",
|
|
7040
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.",
|
|
7041
7149
|
"type": "boolean"
|
|
7042
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
|
+
},
|
|
7043
7156
|
"groups": {
|
|
7044
7157
|
"description": "Allows you to group the inputs inside this object together without changing the data structure.",
|
|
7045
7158
|
"items": {
|
|
@@ -7079,6 +7192,7 @@
|
|
|
7079
7192
|
"markdownDescription": "Changes the way items are previewed in the CMS while being chosen."
|
|
7080
7193
|
},
|
|
7081
7194
|
"place_groups_below": {
|
|
7195
|
+
"default": false,
|
|
7082
7196
|
"description": "Controls which order input groups and ungrouped inputs appear in.",
|
|
7083
7197
|
"markdownDescription": "Controls which order input groups and ungrouped inputs appear in.",
|
|
7084
7198
|
"type": "boolean"
|
|
@@ -7104,6 +7218,7 @@
|
|
|
7104
7218
|
"type": "boolean"
|
|
7105
7219
|
},
|
|
7106
7220
|
"tabbed": {
|
|
7221
|
+
"default": false,
|
|
7107
7222
|
"description": "Show nested objects as tabs. Requires all top-level keys to be objects.",
|
|
7108
7223
|
"markdownDescription": "Show nested objects as tabs. Requires all top-level keys to be objects.",
|
|
7109
7224
|
"type": "boolean"
|
|
@@ -7311,21 +7426,25 @@
|
|
|
7311
7426
|
"type": "boolean"
|
|
7312
7427
|
},
|
|
7313
7428
|
"bold": {
|
|
7429
|
+
"default": true,
|
|
7314
7430
|
"description": "Enables a control to set selected text to bold.",
|
|
7315
7431
|
"markdownDescription": "Enables a control to set selected text to bold.",
|
|
7316
7432
|
"type": "boolean"
|
|
7317
7433
|
},
|
|
7318
7434
|
"copyformatting": {
|
|
7435
|
+
"default": false,
|
|
7319
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.",
|
|
7320
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.",
|
|
7321
7438
|
"type": "boolean"
|
|
7322
7439
|
},
|
|
7323
7440
|
"italic": {
|
|
7441
|
+
"default": true,
|
|
7324
7442
|
"description": "Enables a control to italicize selected text.",
|
|
7325
7443
|
"markdownDescription": "Enables a control to italicize selected text.",
|
|
7326
7444
|
"type": "boolean"
|
|
7327
7445
|
},
|
|
7328
7446
|
"link": {
|
|
7447
|
+
"default": true,
|
|
7329
7448
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
7330
7449
|
"markdownDescription": "Enables a control to create hyperlinks around selected text.",
|
|
7331
7450
|
"type": "boolean"
|
|
@@ -7336,6 +7455,7 @@
|
|
|
7336
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`."
|
|
7337
7456
|
},
|
|
7338
7457
|
"redo": {
|
|
7458
|
+
"default": false,
|
|
7339
7459
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
7340
7460
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through\nstandard OS-specific keyboard shortcuts.",
|
|
7341
7461
|
"type": "boolean"
|
|
@@ -7346,31 +7466,37 @@
|
|
|
7346
7466
|
"type": "boolean"
|
|
7347
7467
|
},
|
|
7348
7468
|
"removeformat": {
|
|
7469
|
+
"default": true,
|
|
7349
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.",
|
|
7350
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.",
|
|
7351
7472
|
"type": "boolean"
|
|
7352
7473
|
},
|
|
7353
7474
|
"strike": {
|
|
7475
|
+
"default": false,
|
|
7354
7476
|
"description": "Enables a control to strike selected text.",
|
|
7355
7477
|
"markdownDescription": "Enables a control to strike selected text.",
|
|
7356
7478
|
"type": "boolean"
|
|
7357
7479
|
},
|
|
7358
7480
|
"subscript": {
|
|
7481
|
+
"default": false,
|
|
7359
7482
|
"description": "Enables a control to set selected text to subscript.",
|
|
7360
7483
|
"markdownDescription": "Enables a control to set selected text to subscript.",
|
|
7361
7484
|
"type": "boolean"
|
|
7362
7485
|
},
|
|
7363
7486
|
"superscript": {
|
|
7487
|
+
"default": false,
|
|
7364
7488
|
"description": "Enables a control to set selected text to superscript.",
|
|
7365
7489
|
"markdownDescription": "Enables a control to set selected text to superscript.",
|
|
7366
7490
|
"type": "boolean"
|
|
7367
7491
|
},
|
|
7368
7492
|
"underline": {
|
|
7493
|
+
"default": false,
|
|
7369
7494
|
"description": "Enables a control to underline selected text.",
|
|
7370
7495
|
"markdownDescription": "Enables a control to underline selected text.",
|
|
7371
7496
|
"type": "boolean"
|
|
7372
7497
|
},
|
|
7373
7498
|
"undo": {
|
|
7499
|
+
"default": false,
|
|
7374
7500
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
7375
7501
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific\nkeyboard shortcuts.",
|
|
7376
7502
|
"type": "boolean"
|
|
@@ -7382,7 +7508,6 @@
|
|
|
7382
7508
|
"additionalProperties": false,
|
|
7383
7509
|
"properties": {
|
|
7384
7510
|
"cascade": {
|
|
7385
|
-
"default": true,
|
|
7386
7511
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
7387
7512
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
7388
7513
|
"type": "boolean"
|
|
@@ -7450,6 +7575,7 @@
|
|
|
7450
7575
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
7451
7576
|
},
|
|
7452
7577
|
"type": {
|
|
7578
|
+
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
7453
7579
|
"enum": [
|
|
7454
7580
|
"text",
|
|
7455
7581
|
"email",
|
|
@@ -7460,6 +7586,7 @@
|
|
|
7460
7586
|
"github",
|
|
7461
7587
|
"instagram"
|
|
7462
7588
|
],
|
|
7589
|
+
"markdownDescription": "Sets an input type, which controls how this input appears and behaves.",
|
|
7463
7590
|
"type": "string"
|
|
7464
7591
|
}
|
|
7465
7592
|
},
|
|
@@ -7472,9 +7599,13 @@
|
|
|
7472
7599
|
"additionalProperties": false,
|
|
7473
7600
|
"properties": {
|
|
7474
7601
|
"empty_type": {
|
|
7475
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
7476
7602
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
7477
|
-
"
|
|
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"
|
|
7478
7609
|
},
|
|
7479
7610
|
"icon": {
|
|
7480
7611
|
"$ref": "#/definitions/Icon",
|
|
@@ -8136,7 +8267,6 @@
|
|
|
8136
8267
|
"additionalProperties": false,
|
|
8137
8268
|
"properties": {
|
|
8138
8269
|
"cascade": {
|
|
8139
|
-
"default": true,
|
|
8140
8270
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
8141
8271
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
8142
8272
|
"type": "boolean"
|
|
@@ -8204,7 +8334,10 @@
|
|
|
8204
8334
|
"markdownDescription": "Options that are specific to this `type` of input."
|
|
8205
8335
|
},
|
|
8206
8336
|
"type": {
|
|
8207
|
-
"
|
|
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"
|
|
8208
8341
|
}
|
|
8209
8342
|
},
|
|
8210
8343
|
"type": "object"
|
|
@@ -8213,7 +8346,6 @@
|
|
|
8213
8346
|
"additionalProperties": false,
|
|
8214
8347
|
"properties": {
|
|
8215
8348
|
"cascade": {
|
|
8216
|
-
"default": true,
|
|
8217
8349
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
8218
8350
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less\nspecific configuration.",
|
|
8219
8351
|
"type": "boolean"
|
|
@@ -8282,6 +8414,8 @@
|
|
|
8282
8414
|
},
|
|
8283
8415
|
"type": {
|
|
8284
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.",
|
|
8285
8419
|
"type": "string"
|
|
8286
8420
|
}
|
|
8287
8421
|
},
|
|
@@ -8294,9 +8428,13 @@
|
|
|
8294
8428
|
"additionalProperties": false,
|
|
8295
8429
|
"properties": {
|
|
8296
8430
|
"empty_type": {
|
|
8297
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
8298
8431
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8299
|
-
"
|
|
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"
|
|
8300
8438
|
},
|
|
8301
8439
|
"paths": {
|
|
8302
8440
|
"$ref": "#/definitions/Paths",
|
|
@@ -8310,9 +8448,13 @@
|
|
|
8310
8448
|
"additionalProperties": false,
|
|
8311
8449
|
"properties": {
|
|
8312
8450
|
"empty_type": {
|
|
8313
|
-
"$ref": "#/definitions/EmptyTypeArray",
|
|
8314
8451
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8315
|
-
"
|
|
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"
|
|
8316
8458
|
}
|
|
8317
8459
|
},
|
|
8318
8460
|
"type": "object"
|
|
@@ -8321,9 +8463,13 @@
|
|
|
8321
8463
|
"additionalProperties": false,
|
|
8322
8464
|
"properties": {
|
|
8323
8465
|
"empty_type": {
|
|
8324
|
-
"$ref": "#/definitions/EmptyTypeNumber",
|
|
8325
8466
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8326
|
-
"
|
|
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"
|
|
8327
8473
|
}
|
|
8328
8474
|
},
|
|
8329
8475
|
"type": "object"
|
|
@@ -8332,9 +8478,13 @@
|
|
|
8332
8478
|
"additionalProperties": false,
|
|
8333
8479
|
"properties": {
|
|
8334
8480
|
"empty_type": {
|
|
8335
|
-
"$ref": "#/definitions/EmptyTypeObject",
|
|
8336
8481
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8337
|
-
"
|
|
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"
|
|
8338
8488
|
}
|
|
8339
8489
|
},
|
|
8340
8490
|
"type": "object"
|
|
@@ -8343,9 +8493,24 @@
|
|
|
8343
8493
|
"additionalProperties": false,
|
|
8344
8494
|
"properties": {
|
|
8345
8495
|
"empty_type": {
|
|
8346
|
-
"$ref": "#/definitions/EmptyTypeText",
|
|
8347
8496
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8348
|
-
"
|
|
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`."
|
|
8349
8514
|
}
|
|
8350
8515
|
},
|
|
8351
8516
|
"type": "object"
|
|
@@ -8354,22 +8519,6 @@
|
|
|
8354
8519
|
"description": "The base format for the configuration file.",
|
|
8355
8520
|
"markdownDescription": "The base format for the configuration file.",
|
|
8356
8521
|
"properties": {
|
|
8357
|
-
"_array_structures": {
|
|
8358
|
-
"additionalProperties": {},
|
|
8359
|
-
"deprecated": "Use _structures instead.",
|
|
8360
|
-
"description": "Now known as _structures.",
|
|
8361
|
-
"markdownDescription": "Now known as _structures.",
|
|
8362
|
-
"type": "object"
|
|
8363
|
-
},
|
|
8364
|
-
"_comments": {
|
|
8365
|
-
"additionalProperties": {
|
|
8366
|
-
"type": "string"
|
|
8367
|
-
},
|
|
8368
|
-
"deprecated": "Use _inputs instead.",
|
|
8369
|
-
"description": "Now part of _inputs.*.comment.",
|
|
8370
|
-
"markdownDescription": "Now part of _inputs.*.comment.",
|
|
8371
|
-
"type": "object"
|
|
8372
|
-
},
|
|
8373
8522
|
"_editables": {
|
|
8374
8523
|
"$ref": "#/definitions/Editables",
|
|
8375
8524
|
"description": "Contains input options for Editable Regions and the Content Editor.",
|
|
@@ -8392,16 +8541,6 @@
|
|
|
8392
8541
|
"markdownDescription": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
8393
8542
|
"type": "object"
|
|
8394
8543
|
},
|
|
8395
|
-
"_options": {
|
|
8396
|
-
"additionalProperties": {
|
|
8397
|
-
"additionalProperties": {},
|
|
8398
|
-
"type": "object"
|
|
8399
|
-
},
|
|
8400
|
-
"deprecated": "Use _inputs instead.",
|
|
8401
|
-
"description": "Now part of _inputs.*.options.",
|
|
8402
|
-
"markdownDescription": "Now part of _inputs.*.options.",
|
|
8403
|
-
"type": "object"
|
|
8404
|
-
},
|
|
8405
8544
|
"_select_data": {
|
|
8406
8545
|
"additionalProperties": {
|
|
8407
8546
|
"$ref": "#/definitions/SelectValues"
|
|
@@ -8414,29 +8553,29 @@
|
|
|
8414
8553
|
"additionalProperties": {
|
|
8415
8554
|
"$ref": "#/definitions/SnippetConfig"
|
|
8416
8555
|
},
|
|
8417
|
-
"description": "Configuration for custom snippets.",
|
|
8418
|
-
"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",
|
|
8419
8558
|
"type": "object"
|
|
8420
8559
|
},
|
|
8421
8560
|
"_snippets_definitions": {
|
|
8422
8561
|
"additionalProperties": {
|
|
8423
8562
|
"$ref": "#/definitions/SnippetConfig"
|
|
8424
8563
|
},
|
|
8425
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
8426
|
-
"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",
|
|
8427
8566
|
"type": "object"
|
|
8428
8567
|
},
|
|
8429
8568
|
"_snippets_imports": {
|
|
8430
8569
|
"$ref": "#/definitions/SnippetsImports",
|
|
8431
|
-
"description": "Provides control over which snippets are available to use and/or extend within `_snippets
|
|
8432
|
-
"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"
|
|
8433
8572
|
},
|
|
8434
8573
|
"_snippets_templates": {
|
|
8435
8574
|
"additionalProperties": {
|
|
8436
8575
|
"$ref": "#/definitions/SnippetConfig"
|
|
8437
8576
|
},
|
|
8438
|
-
"description": "Extended option used when creating more complex custom snippets.",
|
|
8439
|
-
"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",
|
|
8440
8579
|
"type": "object"
|
|
8441
8580
|
},
|
|
8442
8581
|
"_structures": {
|
|
@@ -8448,59 +8587,59 @@
|
|
|
8448
8587
|
"type": "object"
|
|
8449
8588
|
},
|
|
8450
8589
|
"base_url": {
|
|
8451
|
-
"description": "The subpath where your output files are hosted.",
|
|
8452
|
-
"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",
|
|
8453
8592
|
"type": "string"
|
|
8454
8593
|
},
|
|
8455
8594
|
"collection_groups": {
|
|
8456
|
-
"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",
|
|
8457
8596
|
"items": {
|
|
8458
8597
|
"$ref": "#/definitions/CollectionGroup"
|
|
8459
8598
|
},
|
|
8460
|
-
"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",
|
|
8461
8600
|
"type": "array"
|
|
8462
8601
|
},
|
|
8463
8602
|
"collections_config": {
|
|
8464
8603
|
"additionalProperties": {
|
|
8465
8604
|
"$ref": "#/definitions/CollectionConfig"
|
|
8466
8605
|
},
|
|
8467
|
-
"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.",
|
|
8468
|
-
"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",
|
|
8469
8608
|
"type": "object"
|
|
8470
8609
|
},
|
|
8471
8610
|
"commit_templates": {
|
|
8472
|
-
"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",
|
|
8473
8612
|
"items": {
|
|
8474
8613
|
"$ref": "#/definitions/CommitTemplate"
|
|
8475
8614
|
},
|
|
8476
|
-
"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",
|
|
8477
8616
|
"type": "array"
|
|
8478
8617
|
},
|
|
8479
8618
|
"data_config": {
|
|
8480
8619
|
"additionalProperties": {
|
|
8481
8620
|
"$ref": "#/definitions/DataConfigEntry"
|
|
8482
8621
|
},
|
|
8483
|
-
"description": "Controls what data sets are available to populate select and multiselect inputs.",
|
|
8484
|
-
"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",
|
|
8485
8624
|
"type": "object"
|
|
8486
8625
|
},
|
|
8487
8626
|
"editor": {
|
|
8488
8627
|
"$ref": "#/definitions/Editor",
|
|
8489
|
-
"description": "Contains settings for the default editor actions on your site.",
|
|
8490
|
-
"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"
|
|
8491
8630
|
},
|
|
8492
8631
|
"file_config": {
|
|
8493
|
-
"
|
|
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": {
|
|
8494
8634
|
"$ref": "#/definitions/FileConfigEntry"
|
|
8495
8635
|
},
|
|
8496
|
-
"
|
|
8497
|
-
"
|
|
8498
|
-
"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"
|
|
8499
8638
|
},
|
|
8500
8639
|
"markdown": {
|
|
8501
8640
|
"$ref": "#/definitions/MarkdownSettings",
|
|
8502
|
-
"description": "Contains settings for various Markdown engines.",
|
|
8503
|
-
"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"
|
|
8504
8643
|
},
|
|
8505
8644
|
"paths": {
|
|
8506
8645
|
"$ref": "#/definitions/Paths",
|
|
@@ -8508,20 +8647,20 @@
|
|
|
8508
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`."
|
|
8509
8648
|
},
|
|
8510
8649
|
"source": {
|
|
8511
|
-
"description": "
|
|
8512
|
-
"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",
|
|
8513
8652
|
"type": "string"
|
|
8514
8653
|
},
|
|
8515
8654
|
"source_editor": {
|
|
8516
8655
|
"$ref": "#/definitions/SourceEditor",
|
|
8517
|
-
"description": "Settings for the behavior and appearance of the Source Editor.",
|
|
8518
|
-
"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"
|
|
8519
8658
|
},
|
|
8520
8659
|
"timezone": {
|
|
8521
8660
|
"$ref": "#/definitions/Timezone",
|
|
8522
8661
|
"default": "Etc/UTC",
|
|
8523
|
-
"description": "Specifies the time zone that dates are displayed and edited in. Also changes the suffix the date is persisted to the file with.",
|
|
8524
|
-
"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"
|
|
8525
8664
|
}
|
|
8526
8665
|
},
|
|
8527
8666
|
"type": "object"
|