@cloudcannon/configuration-types 0.0.44 → 0.0.46

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.
@@ -105,10 +105,11 @@
105
105
  ]
106
106
  },
107
107
  "_inputs_from_glob": {
108
- "type": "array",
109
- "items": {
110
- "type": "string"
111
- }
108
+ "allOf": [
109
+ {
110
+ "$ref": "#/definitions/type._inputs_from_glob"
111
+ }
112
+ ]
112
113
  },
113
114
  "_select_data": {
114
115
  "allOf": [
@@ -125,10 +126,11 @@
125
126
  ]
126
127
  },
127
128
  "_structures_from_glob": {
128
- "type": "array",
129
- "items": {
130
- "type": "string"
131
- }
129
+ "allOf": [
130
+ {
131
+ "$ref": "#/definitions/type._structures_from_glob"
132
+ }
133
+ ]
132
134
  },
133
135
  "id": {
134
136
  "description": "A unique reference value used when referring to this structure value from the Object input's assigned_structures option.",
@@ -202,7 +204,7 @@
202
204
  "description": "Provides a custom link for documentation for editors shown above the collection file list.",
203
205
  "allOf": [
204
206
  {
205
- "$ref": "#/definitions/documentation"
207
+ "$ref": "#/definitions/type.documentation"
206
208
  }
207
209
  ],
208
210
  "markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
@@ -237,7 +239,7 @@
237
239
  "description": "Provides a custom link for documentation for editors shown in the Data Editor for expanded values matching this Structure value. Has no default.",
238
240
  "allOf": [
239
241
  {
240
- "$ref": "#/definitions/documentation"
242
+ "$ref": "#/definitions/type.documentation"
241
243
  }
242
244
  ],
243
245
  "markdownDescription": "Provides a custom link for documentation for editors shown in the Data Editor for expanded values matching this Structure value. Has no default."
@@ -285,46 +287,22 @@
285
287
  "type": "object",
286
288
  "properties": {
287
289
  "text": {
288
- "allOf": [
289
- {
290
- "$ref": "#/definitions/PreviewEntries"
291
- }
292
- ]
290
+ "$ref": "#/definitions/type.preview.text"
293
291
  },
294
292
  "subtext": {
295
- "allOf": [
296
- {
297
- "$ref": "#/definitions/PreviewEntries"
298
- }
299
- ]
293
+ "$ref": "#/definitions/type.preview.subtext"
300
294
  },
301
295
  "image": {
302
- "allOf": [
303
- {
304
- "$ref": "#/definitions/PreviewEntries"
305
- }
306
- ]
296
+ "$ref": "#/definitions/type.preview.image"
307
297
  },
308
298
  "icon": {
309
- "allOf": [
310
- {
311
- "$ref": "#/definitions/PreviewEntries"
312
- }
313
- ]
299
+ "$ref": "#/definitions/type.preview.icon"
314
300
  },
315
301
  "icon_color": {
316
- "allOf": [
317
- {
318
- "$ref": "#/definitions/PreviewEntries"
319
- }
320
- ]
302
+ "$ref": "#/definitions/type.preview.icon_color"
321
303
  },
322
304
  "icon_background_color": {
323
- "allOf": [
324
- {
325
- "$ref": "#/definitions/PreviewEntries"
326
- }
327
- ]
305
+ "$ref": "#/definitions/type.preview.icon_background_color"
328
306
  },
329
307
  "tags": {
330
308
  "$ref": "#/definitions/preview.tags"
@@ -342,78 +320,136 @@
342
320
  },
343
321
  "additionalProperties": false
344
322
  },
323
+ "type.preview.text": {
324
+ "allOf": [
325
+ {
326
+ "$ref": "#/definitions/PreviewEntries"
327
+ }
328
+ ]
329
+ },
345
330
  "PreviewEntries": {
346
331
  "anyOf": [
347
332
  {
348
- "title": "Array",
349
- "type": "array",
350
- "items": {
351
- "$ref": "#/definitions/PreviewEntry"
352
- }
333
+ "$ref": "#/definitions/type.preview-entry.(array)"
353
334
  },
354
335
  {
355
- "title": "Raw Text",
356
- "type": "string"
336
+ "$ref": "#/definitions/type.preview-entry.(raw-text)"
357
337
  },
358
338
  {
359
- "title": "False",
360
- "type": "boolean",
361
- "const": false
339
+ "$ref": "#/definitions/type.preview-entry.(false)"
362
340
  }
363
341
  ]
364
342
  },
365
- "PreviewEntry": {
343
+ "type.preview-entry.(array)": {
344
+ "title": "Array",
345
+ "type": "array",
346
+ "items": {
347
+ "$ref": "#/definitions/type.preview-entry"
348
+ }
349
+ },
350
+ "type.preview-entry": {
351
+ "title": "Preview Entry",
366
352
  "anyOf": [
367
353
  {
368
- "title": "Key",
369
- "type": "object",
370
- "properties": {
371
- "key": {
372
- "title": "Key Value",
373
- "type": "string"
374
- }
375
- },
376
- "required": [
377
- "key"
378
- ],
379
- "additionalProperties": false
354
+ "$ref": "#/definitions/type.preview-entry.(key)"
380
355
  },
381
356
  {
382
- "title": "Template",
383
- "type": "object",
384
- "properties": {
385
- "template": {
386
- "title": "Template Value",
387
- "type": "string"
388
- }
389
- },
390
- "required": [
391
- "template"
392
- ],
393
- "additionalProperties": false
357
+ "$ref": "#/definitions/type.preview-entry.(template)"
394
358
  },
395
359
  {
396
- "title": "Text",
397
- "type": "object",
398
- "properties": {
399
- "text": {
400
- "title": "Text Value",
401
- "type": "string"
402
- }
403
- },
404
- "required": [
405
- "text"
406
- ],
407
- "additionalProperties": false
360
+ "$ref": "#/definitions/type.preview-entry.(text)"
408
361
  },
409
362
  {
410
- "title": "Raw Text",
411
- "type": "string"
363
+ "$ref": "#/definitions/type.preview-entry.(raw-text)"
412
364
  },
413
365
  {
414
- "title": "False",
415
- "type": "boolean",
416
- "const": false
366
+ "$ref": "#/definitions/type.preview-entry.(false)"
367
+ }
368
+ ]
369
+ },
370
+ "type.preview-entry.(key)": {
371
+ "title": "Key",
372
+ "type": "object",
373
+ "properties": {
374
+ "key": {
375
+ "title": "Key Value",
376
+ "type": "string"
377
+ }
378
+ },
379
+ "required": [
380
+ "key"
381
+ ],
382
+ "additionalProperties": false
383
+ },
384
+ "type.preview-entry.(template)": {
385
+ "title": "Template",
386
+ "type": "object",
387
+ "properties": {
388
+ "template": {
389
+ "title": "Template Value",
390
+ "type": "string"
391
+ }
392
+ },
393
+ "required": [
394
+ "template"
395
+ ],
396
+ "additionalProperties": false
397
+ },
398
+ "type.preview-entry.(text)": {
399
+ "title": "Text",
400
+ "type": "object",
401
+ "properties": {
402
+ "text": {
403
+ "title": "Text Value",
404
+ "type": "string"
405
+ }
406
+ },
407
+ "required": [
408
+ "text"
409
+ ],
410
+ "additionalProperties": false
411
+ },
412
+ "type.preview-entry.(raw-text)": {
413
+ "title": "Raw Text",
414
+ "type": "string"
415
+ },
416
+ "type.preview-entry.(false)": {
417
+ "title": "False",
418
+ "type": "boolean",
419
+ "const": false
420
+ },
421
+ "type.preview.subtext": {
422
+ "allOf": [
423
+ {
424
+ "$ref": "#/definitions/PreviewEntries"
425
+ }
426
+ ]
427
+ },
428
+ "type.preview.image": {
429
+ "allOf": [
430
+ {
431
+ "$ref": "#/definitions/PreviewEntries"
432
+ }
433
+ ]
434
+ },
435
+ "type.preview.icon": {
436
+ "allOf": [
437
+ {
438
+ "$ref": "#/definitions/PreviewEntries"
439
+ }
440
+ ]
441
+ },
442
+ "type.preview.icon_color": {
443
+ "allOf": [
444
+ {
445
+ "$ref": "#/definitions/PreviewEntries"
446
+ }
447
+ ]
448
+ },
449
+ "type.preview.icon_background_color": {
450
+ "allOf": [
451
+ {
452
+ "$ref": "#/definitions/PreviewEntries"
417
453
  }
418
454
  ]
419
455
  },
@@ -433,39 +469,19 @@
433
469
  "type": "object",
434
470
  "properties": {
435
471
  "text": {
436
- "allOf": [
437
- {
438
- "$ref": "#/definitions/PreviewEntries"
439
- }
440
- ]
472
+ "$ref": "#/definitions/type.preview.text"
441
473
  },
442
474
  "image": {
443
- "allOf": [
444
- {
445
- "$ref": "#/definitions/PreviewEntries"
446
- }
447
- ]
475
+ "$ref": "#/definitions/type.preview.image"
448
476
  },
449
477
  "icon": {
450
- "allOf": [
451
- {
452
- "$ref": "#/definitions/PreviewEntries"
453
- }
454
- ]
478
+ "$ref": "#/definitions/type.preview.icon"
455
479
  },
456
480
  "icon_color": {
457
- "allOf": [
458
- {
459
- "$ref": "#/definitions/PreviewEntries"
460
- }
461
- ]
481
+ "$ref": "#/definitions/type.preview.icon_color"
462
482
  },
463
483
  "icon_background_color": {
464
- "allOf": [
465
- {
466
- "$ref": "#/definitions/PreviewEntries"
467
- }
468
- ]
484
+ "$ref": "#/definitions/type.preview.icon_background_color"
469
485
  }
470
486
  },
471
487
  "additionalProperties": false
@@ -474,49 +490,25 @@
474
490
  "type": "object",
475
491
  "properties": {
476
492
  "text": {
477
- "allOf": [
478
- {
479
- "$ref": "#/definitions/PreviewEntries"
480
- }
481
- ]
493
+ "$ref": "#/definitions/type.preview.text"
482
494
  },
483
495
  "image": {
484
- "allOf": [
485
- {
486
- "$ref": "#/definitions/PreviewEntries"
487
- }
488
- ]
496
+ "$ref": "#/definitions/type.preview.image"
489
497
  },
490
498
  "icon": {
491
- "allOf": [
492
- {
493
- "$ref": "#/definitions/PreviewEntries"
494
- }
495
- ]
499
+ "$ref": "#/definitions/type.preview.icon"
496
500
  },
497
501
  "icon_color": {
498
- "allOf": [
499
- {
500
- "$ref": "#/definitions/PreviewEntries"
501
- }
502
- ]
502
+ "$ref": "#/definitions/type.preview.icon_color"
503
503
  },
504
504
  "icon_background_color": {
505
- "allOf": [
506
- {
507
- "$ref": "#/definitions/PreviewEntries"
508
- }
509
- ]
505
+ "$ref": "#/definitions/type.preview.icon_background_color"
510
506
  },
511
507
  "fit": {
512
508
  "$ref": "#/definitions/preview.gallery.fit"
513
509
  },
514
510
  "background_color": {
515
- "allOf": [
516
- {
517
- "$ref": "#/definitions/PreviewEntries"
518
- }
519
- ]
511
+ "$ref": "#/definitions/type.preview.gallery.background_color"
520
512
  }
521
513
  },
522
514
  "additionalProperties": false
@@ -531,6 +523,13 @@
531
523
  "cover-top"
532
524
  ]
533
525
  },
526
+ "type.preview.gallery.background_color": {
527
+ "allOf": [
528
+ {
529
+ "$ref": "#/definitions/PreviewEntries"
530
+ }
531
+ ]
532
+ },
534
533
  "type._inputs": {
535
534
  "title": "Inputs",
536
535
  "description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
@@ -621,12 +620,12 @@
621
620
  "type": "object",
622
621
  "properties": {
623
622
  "comment": {
624
- "$ref": "#/definitions/comment"
623
+ "$ref": "#/definitions/type._inputs.*.comment"
625
624
  },
626
625
  "context": {
627
626
  "allOf": [
628
627
  {
629
- "$ref": "#/definitions/context"
628
+ "$ref": "#/definitions/type._inputs.*.context"
630
629
  }
631
630
  ]
632
631
  },
@@ -634,28 +633,28 @@
634
633
  "description": "Provides a custom link for documentation for editors shown above input.",
635
634
  "allOf": [
636
635
  {
637
- "$ref": "#/definitions/documentation"
636
+ "$ref": "#/definitions/type.documentation"
638
637
  }
639
638
  ],
640
639
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
641
640
  },
642
641
  "label": {
643
- "$ref": "#/definitions/label"
642
+ "$ref": "#/definitions/type._inputs.*.label"
644
643
  },
645
644
  "hidden": {
646
- "$ref": "#/definitions/hidden"
645
+ "$ref": "#/definitions/type._inputs.*.hidden"
647
646
  },
648
647
  "disabled": {
649
- "$ref": "#/definitions/disabled"
648
+ "$ref": "#/definitions/type._inputs.*.disabled"
650
649
  },
651
650
  "instance_value": {
652
- "$ref": "#/definitions/instance_value"
651
+ "$ref": "#/definitions/type._inputs.*.instance_value"
653
652
  },
654
653
  "disable_instance_value_rehydration": {
655
- "$ref": "#/definitions/disable_instance_value_rehydration"
654
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
656
655
  },
657
656
  "cascade": {
658
- "$ref": "#/definitions/cascade"
657
+ "$ref": "#/definitions/type._inputs.*.cascade"
659
658
  },
660
659
  "type": {
661
660
  "title": "Type",
@@ -678,36 +677,36 @@
678
677
  "type": "object",
679
678
  "properties": {
680
679
  "max_length": {
681
- "$ref": "#/definitions/max_length"
680
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
682
681
  },
683
682
  "max_length_message": {
684
- "$ref": "#/definitions/max_length_message"
683
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
685
684
  },
686
685
  "min_length": {
687
- "$ref": "#/definitions/min_length"
686
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
688
687
  },
689
688
  "min_length_message": {
690
- "$ref": "#/definitions/min_length_message"
689
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
691
690
  },
692
691
  "pattern": {
693
- "$ref": "#/definitions/pattern"
692
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
694
693
  },
695
694
  "pattern_message": {
696
- "$ref": "#/definitions/pattern_message"
695
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
697
696
  },
698
697
  "pattern_flags": {
699
- "$ref": "#/definitions/pattern_flags"
698
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
700
699
  },
701
700
  "required": {
702
- "$ref": "#/definitions/required"
701
+ "$ref": "#/definitions/type._inputs.*.options.required"
703
702
  },
704
703
  "required_message": {
705
- "$ref": "#/definitions/required_message"
704
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
706
705
  },
707
706
  "empty_type": {
708
707
  "allOf": [
709
708
  {
710
- "$ref": "#/definitions/empty_type_text"
709
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
711
710
  }
712
711
  ]
713
712
  },
@@ -750,12 +749,12 @@
750
749
  "additionalProperties": false,
751
750
  "markdownDescription": "Provides a simple editing interface for plain text."
752
751
  },
753
- "comment": {
752
+ "type._inputs.*.comment": {
754
753
  "description": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.",
755
754
  "type": "string",
756
755
  "markdownDescription": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed."
757
756
  },
758
- "context": {
757
+ "type._inputs.*.context": {
759
758
  "description": "Adds an expandable section of rich text below the input.",
760
759
  "type": "object",
761
760
  "properties": {
@@ -4380,7 +4379,7 @@
4380
4379
  ],
4381
4380
  "markdownDescription": "Material Symbol icon names available in CloudCannon for UI elements and content previews."
4382
4381
  },
4383
- "documentation": {
4382
+ "type.documentation": {
4384
4383
  "title": "Documentation",
4385
4384
  "description": "Configuration for documentation links displayed in the CloudCannon interface.",
4386
4385
  "type": "object",
@@ -4412,12 +4411,12 @@
4412
4411
  "additionalProperties": false,
4413
4412
  "markdownDescription": "Configuration for documentation links displayed in the CloudCannon interface."
4414
4413
  },
4415
- "label": {
4414
+ "type._inputs.*.label": {
4416
4415
  "description": "Optionally changes the text above this input.",
4417
4416
  "type": "string",
4418
4417
  "markdownDescription": "Optionally changes the text above this input."
4419
4418
  },
4420
- "hidden": {
4419
+ "type._inputs.*.hidden": {
4421
4420
  "description": "Toggles the visibility of this input.",
4422
4421
  "default": false,
4423
4422
  "anyOf": [
@@ -4432,7 +4431,7 @@
4432
4431
  ],
4433
4432
  "markdownDescription": "Toggles the visibility of this input."
4434
4433
  },
4435
- "disabled": {
4434
+ "type._inputs.*.disabled": {
4436
4435
  "description": "Toggles if this input can be edited.",
4437
4436
  "default": false,
4438
4437
  "anyOf": [
@@ -4447,7 +4446,7 @@
4447
4446
  ],
4448
4447
  "markdownDescription": "Toggles if this input can be edited."
4449
4448
  },
4450
- "instance_value": {
4449
+ "type._inputs.*.instance_value": {
4451
4450
  "title": "Instance Value",
4452
4451
  "description": "Controls if and how the value of this input is instantiated when created. This occurs when creating files, or adding array items containing the configured input.",
4453
4452
  "type": "string",
@@ -4457,49 +4456,49 @@
4457
4456
  ],
4458
4457
  "markdownDescription": "Controls if and how the value of this input is instantiated when created. This occurs when creating files, or adding array items containing the configured input."
4459
4458
  },
4460
- "disable_instance_value_rehydration": {
4459
+ "type._inputs.*.disable_instance_value_rehydration": {
4461
4460
  "description": "Prevents the default where inputs configured with an `instance_value` are rehydrated with a new value when duplicated in the CMS.",
4462
4461
  "default": false,
4463
4462
  "type": "boolean",
4464
4463
  "markdownDescription": "Prevents the default where inputs configured with an `instance_value` are rehydrated with a new value when duplicated in the CMS."
4465
4464
  },
4466
- "cascade": {
4465
+ "type._inputs.*.cascade": {
4467
4466
  "description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
4468
4467
  "default": true,
4469
4468
  "type": "boolean",
4470
4469
  "markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration."
4471
4470
  },
4472
- "max_length": {
4471
+ "type._inputs.*.options.max_length": {
4473
4472
  "description": "This key defines the maximum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too long. If the Input already contains a longer value, CloudCannon will require you to remove characters until the Input contains a valid string to save your changes, or discard your unsaved changes.",
4474
4473
  "type": "number",
4475
4474
  "markdownDescription": "This key defines the maximum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too long. If the Input already contains a longer value, CloudCannon will require you to remove characters until the Input contains a valid string to save your changes, or discard your unsaved changes."
4476
4475
  },
4477
- "max_length_message": {
4476
+ "type._inputs.*.options.max_length_message": {
4478
4477
  "description": "This key defines the message that explains which maximum string length an Input will accept. This key requires you to define `options.max_length`.",
4479
4478
  "type": "string",
4480
4479
  "markdownDescription": "This key defines the message that explains which maximum string length an Input will accept. This key requires you to define `options.max_length`."
4481
4480
  },
4482
- "min_length": {
4481
+ "type._inputs.*.options.min_length": {
4483
4482
  "description": "This key defines the minimum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too short. If the Input already contains a shorter value, CloudCannon will require you to add characters until the Input contains a valid string to save your changes, or discard your unsaved changes.",
4484
4483
  "type": "number",
4485
4484
  "markdownDescription": "This key defines the minimum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too short. If the Input already contains a shorter value, CloudCannon will require you to add characters until the Input contains a valid string to save your changes, or discard your unsaved changes."
4486
4485
  },
4487
- "min_length_message": {
4486
+ "type._inputs.*.options.min_length_message": {
4488
4487
  "description": "This key defines the message that explains which minimum string length an Input will accept. This key requires you to define `options.min_length`.",
4489
4488
  "type": "string",
4490
4489
  "markdownDescription": "This key defines the message that explains which minimum string length an Input will accept. This key requires you to define `options.min_length`."
4491
4490
  },
4492
- "pattern": {
4491
+ "type._inputs.*.options.pattern": {
4493
4492
  "description": "This key defines a regular expression that the Input value must match. When configured, CloudCannon will require you to enter a value that matches the REGEX pattern. If the Input already contains an invalid value, CloudCannon will require you to enter a valid string to save your changes, or discard your unsaved changes.",
4494
4493
  "type": "string",
4495
4494
  "markdownDescription": "This key defines a regular expression that the Input value must match. When configured, CloudCannon will require you to enter a value that matches the REGEX pattern. If the Input already contains an invalid value, CloudCannon will require you to enter a valid string to save your changes, or discard your unsaved changes."
4496
4495
  },
4497
- "pattern_message": {
4496
+ "type._inputs.*.options.pattern_message": {
4498
4497
  "description": "This key defines the message that explains which regular expression an Input will accept. This key requires you to define `options.pattern`.",
4499
4498
  "type": "string",
4500
4499
  "markdownDescription": "This key defines the message that explains which regular expression an Input will accept. This key requires you to define `options.pattern`."
4501
4500
  },
4502
- "pattern_flags": {
4501
+ "type._inputs.*.options.pattern_flags": {
4503
4502
  "description": "This key defines the flags (e.g. case-insensitive searching) for the regular expression set in `options.pattern`.",
4504
4503
  "type": "object",
4505
4504
  "properties": {
@@ -4537,18 +4536,18 @@
4537
4536
  "additionalProperties": false,
4538
4537
  "markdownDescription": "This key defines the flags (e.g. case-insensitive searching) for the regular expression set in `options.pattern`."
4539
4538
  },
4540
- "required": {
4539
+ "type._inputs.*.options.required": {
4541
4540
  "description": "This key toggles whether CloudCannon requires this Input to have a value. If set to true, CloudCannon will require you to enter a value to save your changes, or discard your unsaved changes.",
4542
4541
  "default": false,
4543
4542
  "type": "boolean",
4544
4543
  "markdownDescription": "This key toggles whether CloudCannon requires this Input to have a value. If set to true, CloudCannon will require you to enter a value to save your changes, or discard your unsaved changes."
4545
4544
  },
4546
- "required_message": {
4545
+ "type._inputs.*.options.required_message": {
4547
4546
  "description": "This key defines the message that explains why an Input is required. This key requires you to define `options.required`.",
4548
4547
  "type": "string",
4549
4548
  "markdownDescription": "This key defines the message that explains why an Input is required. This key requires you to define `options.required`."
4550
4549
  },
4551
- "empty_type_text": {
4550
+ "type._inputs.*.options.empty_type_text": {
4552
4551
  "description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
4553
4552
  "default": "null",
4554
4553
  "type": "string",
@@ -4564,12 +4563,12 @@
4564
4563
  "type": "object",
4565
4564
  "properties": {
4566
4565
  "comment": {
4567
- "$ref": "#/definitions/comment"
4566
+ "$ref": "#/definitions/type._inputs.*.comment"
4568
4567
  },
4569
4568
  "context": {
4570
4569
  "allOf": [
4571
4570
  {
4572
- "$ref": "#/definitions/context"
4571
+ "$ref": "#/definitions/type._inputs.*.context"
4573
4572
  }
4574
4573
  ]
4575
4574
  },
@@ -4577,28 +4576,28 @@
4577
4576
  "description": "Provides a custom link for documentation for editors shown above input.",
4578
4577
  "allOf": [
4579
4578
  {
4580
- "$ref": "#/definitions/documentation"
4579
+ "$ref": "#/definitions/type.documentation"
4581
4580
  }
4582
4581
  ],
4583
4582
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
4584
4583
  },
4585
4584
  "label": {
4586
- "$ref": "#/definitions/label"
4585
+ "$ref": "#/definitions/type._inputs.*.label"
4587
4586
  },
4588
4587
  "hidden": {
4589
- "$ref": "#/definitions/hidden"
4588
+ "$ref": "#/definitions/type._inputs.*.hidden"
4590
4589
  },
4591
4590
  "disabled": {
4592
- "$ref": "#/definitions/disabled"
4591
+ "$ref": "#/definitions/type._inputs.*.disabled"
4593
4592
  },
4594
4593
  "instance_value": {
4595
- "$ref": "#/definitions/instance_value"
4594
+ "$ref": "#/definitions/type._inputs.*.instance_value"
4596
4595
  },
4597
4596
  "disable_instance_value_rehydration": {
4598
- "$ref": "#/definitions/disable_instance_value_rehydration"
4597
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
4599
4598
  },
4600
4599
  "cascade": {
4601
- "$ref": "#/definitions/cascade"
4600
+ "$ref": "#/definitions/type._inputs.*.cascade"
4602
4601
  },
4603
4602
  "type": {
4604
4603
  "title": "Type",
@@ -4612,36 +4611,36 @@
4612
4611
  "type": "object",
4613
4612
  "properties": {
4614
4613
  "max_length": {
4615
- "$ref": "#/definitions/max_length"
4614
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
4616
4615
  },
4617
4616
  "max_length_message": {
4618
- "$ref": "#/definitions/max_length_message"
4617
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
4619
4618
  },
4620
4619
  "min_length": {
4621
- "$ref": "#/definitions/min_length"
4620
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
4622
4621
  },
4623
4622
  "min_length_message": {
4624
- "$ref": "#/definitions/min_length_message"
4623
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
4625
4624
  },
4626
4625
  "pattern": {
4627
- "$ref": "#/definitions/pattern"
4626
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
4628
4627
  },
4629
4628
  "pattern_message": {
4630
- "$ref": "#/definitions/pattern_message"
4629
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
4631
4630
  },
4632
4631
  "pattern_flags": {
4633
- "$ref": "#/definitions/pattern_flags"
4632
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
4634
4633
  },
4635
4634
  "required": {
4636
- "$ref": "#/definitions/required"
4635
+ "$ref": "#/definitions/type._inputs.*.options.required"
4637
4636
  },
4638
4637
  "required_message": {
4639
- "$ref": "#/definitions/required_message"
4638
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
4640
4639
  },
4641
4640
  "empty_type": {
4642
4641
  "allOf": [
4643
4642
  {
4644
- "$ref": "#/definitions/empty_type_text"
4643
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
4645
4644
  }
4646
4645
  ]
4647
4646
  },
@@ -4673,12 +4672,12 @@
4673
4672
  "type": "object",
4674
4673
  "properties": {
4675
4674
  "comment": {
4676
- "$ref": "#/definitions/comment"
4675
+ "$ref": "#/definitions/type._inputs.*.comment"
4677
4676
  },
4678
4677
  "context": {
4679
4678
  "allOf": [
4680
4679
  {
4681
- "$ref": "#/definitions/context"
4680
+ "$ref": "#/definitions/type._inputs.*.context"
4682
4681
  }
4683
4682
  ]
4684
4683
  },
@@ -4686,28 +4685,28 @@
4686
4685
  "description": "Provides a custom link for documentation for editors shown above input.",
4687
4686
  "allOf": [
4688
4687
  {
4689
- "$ref": "#/definitions/documentation"
4688
+ "$ref": "#/definitions/type.documentation"
4690
4689
  }
4691
4690
  ],
4692
4691
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
4693
4692
  },
4694
4693
  "label": {
4695
- "$ref": "#/definitions/label"
4694
+ "$ref": "#/definitions/type._inputs.*.label"
4696
4695
  },
4697
4696
  "hidden": {
4698
- "$ref": "#/definitions/hidden"
4697
+ "$ref": "#/definitions/type._inputs.*.hidden"
4699
4698
  },
4700
4699
  "disabled": {
4701
- "$ref": "#/definitions/disabled"
4700
+ "$ref": "#/definitions/type._inputs.*.disabled"
4702
4701
  },
4703
4702
  "instance_value": {
4704
- "$ref": "#/definitions/instance_value"
4703
+ "$ref": "#/definitions/type._inputs.*.instance_value"
4705
4704
  },
4706
4705
  "disable_instance_value_rehydration": {
4707
- "$ref": "#/definitions/disable_instance_value_rehydration"
4706
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
4708
4707
  },
4709
4708
  "cascade": {
4710
- "$ref": "#/definitions/cascade"
4709
+ "$ref": "#/definitions/type._inputs.*.cascade"
4711
4710
  },
4712
4711
  "type": {
4713
4712
  "title": "Type",
@@ -4741,36 +4740,36 @@
4741
4740
  "type": "boolean"
4742
4741
  },
4743
4742
  "max_length": {
4744
- "$ref": "#/definitions/max_length"
4743
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
4745
4744
  },
4746
4745
  "max_length_message": {
4747
- "$ref": "#/definitions/max_length_message"
4746
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
4748
4747
  },
4749
4748
  "min_length": {
4750
- "$ref": "#/definitions/min_length"
4749
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
4751
4750
  },
4752
4751
  "min_length_message": {
4753
- "$ref": "#/definitions/min_length_message"
4752
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
4754
4753
  },
4755
4754
  "pattern": {
4756
- "$ref": "#/definitions/pattern"
4755
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
4757
4756
  },
4758
4757
  "pattern_message": {
4759
- "$ref": "#/definitions/pattern_message"
4758
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
4760
4759
  },
4761
4760
  "pattern_flags": {
4762
- "$ref": "#/definitions/pattern_flags"
4761
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
4763
4762
  },
4764
4763
  "required": {
4765
- "$ref": "#/definitions/required"
4764
+ "$ref": "#/definitions/type._inputs.*.options.required"
4766
4765
  },
4767
4766
  "required_message": {
4768
- "$ref": "#/definitions/required_message"
4767
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
4769
4768
  },
4770
4769
  "empty_type": {
4771
4770
  "allOf": [
4772
4771
  {
4773
- "$ref": "#/definitions/empty_type_text"
4772
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
4774
4773
  }
4775
4774
  ]
4776
4775
  },
@@ -4916,12 +4915,12 @@
4916
4915
  "type": "object",
4917
4916
  "properties": {
4918
4917
  "comment": {
4919
- "$ref": "#/definitions/comment"
4918
+ "$ref": "#/definitions/type._inputs.*.comment"
4920
4919
  },
4921
4920
  "context": {
4922
4921
  "allOf": [
4923
4922
  {
4924
- "$ref": "#/definitions/context"
4923
+ "$ref": "#/definitions/type._inputs.*.context"
4925
4924
  }
4926
4925
  ]
4927
4926
  },
@@ -4929,28 +4928,28 @@
4929
4928
  "description": "Provides a custom link for documentation for editors shown above input.",
4930
4929
  "allOf": [
4931
4930
  {
4932
- "$ref": "#/definitions/documentation"
4931
+ "$ref": "#/definitions/type.documentation"
4933
4932
  }
4934
4933
  ],
4935
4934
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
4936
4935
  },
4937
4936
  "label": {
4938
- "$ref": "#/definitions/label"
4937
+ "$ref": "#/definitions/type._inputs.*.label"
4939
4938
  },
4940
4939
  "hidden": {
4941
- "$ref": "#/definitions/hidden"
4940
+ "$ref": "#/definitions/type._inputs.*.hidden"
4942
4941
  },
4943
4942
  "disabled": {
4944
- "$ref": "#/definitions/disabled"
4943
+ "$ref": "#/definitions/type._inputs.*.disabled"
4945
4944
  },
4946
4945
  "instance_value": {
4947
- "$ref": "#/definitions/instance_value"
4946
+ "$ref": "#/definitions/type._inputs.*.instance_value"
4948
4947
  },
4949
4948
  "disable_instance_value_rehydration": {
4950
- "$ref": "#/definitions/disable_instance_value_rehydration"
4949
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
4951
4950
  },
4952
4951
  "cascade": {
4953
- "$ref": "#/definitions/cascade"
4952
+ "$ref": "#/definitions/type._inputs.*.cascade"
4954
4953
  },
4955
4954
  "type": {
4956
4955
  "title": "Type",
@@ -4964,36 +4963,36 @@
4964
4963
  "type": "object",
4965
4964
  "properties": {
4966
4965
  "max_length": {
4967
- "$ref": "#/definitions/max_length"
4966
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
4968
4967
  },
4969
4968
  "max_length_message": {
4970
- "$ref": "#/definitions/max_length_message"
4969
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
4971
4970
  },
4972
4971
  "min_length": {
4973
- "$ref": "#/definitions/min_length"
4972
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
4974
4973
  },
4975
4974
  "min_length_message": {
4976
- "$ref": "#/definitions/min_length_message"
4975
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
4977
4976
  },
4978
4977
  "pattern": {
4979
- "$ref": "#/definitions/pattern"
4978
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
4980
4979
  },
4981
4980
  "pattern_message": {
4982
- "$ref": "#/definitions/pattern_message"
4981
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
4983
4982
  },
4984
4983
  "pattern_flags": {
4985
- "$ref": "#/definitions/pattern_flags"
4984
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
4986
4985
  },
4987
4986
  "required": {
4988
- "$ref": "#/definitions/required"
4987
+ "$ref": "#/definitions/type._inputs.*.options.required"
4989
4988
  },
4990
4989
  "required_message": {
4991
- "$ref": "#/definitions/required_message"
4990
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
4992
4991
  },
4993
4992
  "empty_type": {
4994
4993
  "allOf": [
4995
4994
  {
4996
- "$ref": "#/definitions/empty_type_text"
4995
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
4997
4996
  }
4998
4997
  ]
4999
4998
  },
@@ -5030,12 +5029,12 @@
5030
5029
  "type": "object",
5031
5030
  "properties": {
5032
5031
  "comment": {
5033
- "$ref": "#/definitions/comment"
5032
+ "$ref": "#/definitions/type._inputs.*.comment"
5034
5033
  },
5035
5034
  "context": {
5036
5035
  "allOf": [
5037
5036
  {
5038
- "$ref": "#/definitions/context"
5037
+ "$ref": "#/definitions/type._inputs.*.context"
5039
5038
  }
5040
5039
  ]
5041
5040
  },
@@ -5043,28 +5042,28 @@
5043
5042
  "description": "Provides a custom link for documentation for editors shown above input.",
5044
5043
  "allOf": [
5045
5044
  {
5046
- "$ref": "#/definitions/documentation"
5045
+ "$ref": "#/definitions/type.documentation"
5047
5046
  }
5048
5047
  ],
5049
5048
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
5050
5049
  },
5051
5050
  "label": {
5052
- "$ref": "#/definitions/label"
5051
+ "$ref": "#/definitions/type._inputs.*.label"
5053
5052
  },
5054
5053
  "hidden": {
5055
- "$ref": "#/definitions/hidden"
5054
+ "$ref": "#/definitions/type._inputs.*.hidden"
5056
5055
  },
5057
5056
  "disabled": {
5058
- "$ref": "#/definitions/disabled"
5057
+ "$ref": "#/definitions/type._inputs.*.disabled"
5059
5058
  },
5060
5059
  "instance_value": {
5061
- "$ref": "#/definitions/instance_value"
5060
+ "$ref": "#/definitions/type._inputs.*.instance_value"
5062
5061
  },
5063
5062
  "disable_instance_value_rehydration": {
5064
- "$ref": "#/definitions/disable_instance_value_rehydration"
5063
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
5065
5064
  },
5066
5065
  "cascade": {
5067
- "$ref": "#/definitions/cascade"
5066
+ "$ref": "#/definitions/type._inputs.*.cascade"
5068
5067
  },
5069
5068
  "type": {
5070
5069
  "title": "Type",
@@ -5089,12 +5088,12 @@
5089
5088
  "type": "object",
5090
5089
  "properties": {
5091
5090
  "comment": {
5092
- "$ref": "#/definitions/comment"
5091
+ "$ref": "#/definitions/type._inputs.*.comment"
5093
5092
  },
5094
5093
  "context": {
5095
5094
  "allOf": [
5096
5095
  {
5097
- "$ref": "#/definitions/context"
5096
+ "$ref": "#/definitions/type._inputs.*.context"
5098
5097
  }
5099
5098
  ]
5100
5099
  },
@@ -5102,28 +5101,28 @@
5102
5101
  "description": "Provides a custom link for documentation for editors shown above input.",
5103
5102
  "allOf": [
5104
5103
  {
5105
- "$ref": "#/definitions/documentation"
5104
+ "$ref": "#/definitions/type.documentation"
5106
5105
  }
5107
5106
  ],
5108
5107
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
5109
5108
  },
5110
5109
  "label": {
5111
- "$ref": "#/definitions/label"
5110
+ "$ref": "#/definitions/type._inputs.*.label"
5112
5111
  },
5113
5112
  "hidden": {
5114
- "$ref": "#/definitions/hidden"
5113
+ "$ref": "#/definitions/type._inputs.*.hidden"
5115
5114
  },
5116
5115
  "disabled": {
5117
- "$ref": "#/definitions/disabled"
5116
+ "$ref": "#/definitions/type._inputs.*.disabled"
5118
5117
  },
5119
5118
  "instance_value": {
5120
- "$ref": "#/definitions/instance_value"
5119
+ "$ref": "#/definitions/type._inputs.*.instance_value"
5121
5120
  },
5122
5121
  "disable_instance_value_rehydration": {
5123
- "$ref": "#/definitions/disable_instance_value_rehydration"
5122
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
5124
5123
  },
5125
5124
  "cascade": {
5126
- "$ref": "#/definitions/cascade"
5125
+ "$ref": "#/definitions/type._inputs.*.cascade"
5127
5126
  },
5128
5127
  "type": {
5129
5128
  "title": "Type",
@@ -5137,40 +5136,40 @@
5137
5136
  "type": "object",
5138
5137
  "properties": {
5139
5138
  "required": {
5140
- "$ref": "#/definitions/required"
5139
+ "$ref": "#/definitions/type._inputs.*.options.required"
5141
5140
  },
5142
5141
  "required_message": {
5143
- "$ref": "#/definitions/required_message"
5142
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
5144
5143
  },
5145
5144
  "empty_type": {
5146
5145
  "allOf": [
5147
5146
  {
5148
- "$ref": "#/definitions/empty_type_number"
5147
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_number"
5149
5148
  }
5150
5149
  ]
5151
5150
  },
5152
5151
  "min": {
5153
5152
  "allOf": [
5154
5153
  {
5155
- "$ref": "#/definitions/min"
5154
+ "$ref": "#/definitions/type._inputs.*.options.min"
5156
5155
  }
5157
5156
  ]
5158
5157
  },
5159
5158
  "max": {
5160
5159
  "allOf": [
5161
5160
  {
5162
- "$ref": "#/definitions/max"
5161
+ "$ref": "#/definitions/type._inputs.*.options.max"
5163
5162
  }
5164
5163
  ]
5165
5164
  },
5166
5165
  "step": {
5167
- "$ref": "#/definitions/step"
5166
+ "$ref": "#/definitions/type._inputs.*.options.step"
5168
5167
  },
5169
5168
  "min_message": {
5170
- "$ref": "#/definitions/min_message"
5169
+ "$ref": "#/definitions/type._inputs.*.options.min_message"
5171
5170
  },
5172
5171
  "max_message": {
5173
- "$ref": "#/definitions/max_message"
5172
+ "$ref": "#/definitions/type._inputs.*.options.max_message"
5174
5173
  }
5175
5174
  },
5176
5175
  "additionalProperties": false,
@@ -5183,7 +5182,7 @@
5183
5182
  "additionalProperties": false,
5184
5183
  "markdownDescription": "Provides an editing interface for numeric values."
5185
5184
  },
5186
- "empty_type_number": {
5185
+ "type._inputs.*.options.empty_type_number": {
5187
5186
  "description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
5188
5187
  "default": "null",
5189
5188
  "type": "string",
@@ -5193,27 +5192,27 @@
5193
5192
  ],
5194
5193
  "markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
5195
5194
  },
5196
- "min": {
5195
+ "type._inputs.*.options.min": {
5197
5196
  "description": "This key defines the minimum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a lesser numerical value. If the Input already contains a lesser numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes.",
5198
5197
  "type": "number",
5199
5198
  "markdownDescription": "This key defines the minimum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a lesser numerical value. If the Input already contains a lesser numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes."
5200
5199
  },
5201
- "max": {
5200
+ "type._inputs.*.options.max": {
5202
5201
  "description": "This key defines the maximum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a greater numerical value. If the Input already contains a greater numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes.",
5203
5202
  "type": "number",
5204
5203
  "markdownDescription": "This key defines the maximum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a greater numerical value. If the Input already contains a greater numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes."
5205
5204
  },
5206
- "step": {
5205
+ "type._inputs.*.options.step": {
5207
5206
  "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`.",
5208
5207
  "type": "number",
5209
5208
  "markdownDescription": "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`."
5210
5209
  },
5211
- "min_message": {
5210
+ "type._inputs.*.options.min_message": {
5212
5211
  "description": "This key defines the message that explains why an Input needs to have a minimum numerical value. This key requires you to define `options.min`.",
5213
5212
  "type": "string",
5214
5213
  "markdownDescription": "This key defines the message that explains why an Input needs to have a minimum numerical value. This key requires you to define `options.min`."
5215
5214
  },
5216
- "max_message": {
5215
+ "type._inputs.*.options.max_message": {
5217
5216
  "description": "This key defines the message that explains why an Input needs to have a maximum numerical value. This key requires you to define `options.max`.",
5218
5217
  "type": "string",
5219
5218
  "markdownDescription": "This key defines the message that explains why an Input needs to have a maximum numerical value. This key requires you to define `options.max`."
@@ -5224,12 +5223,12 @@
5224
5223
  "type": "object",
5225
5224
  "properties": {
5226
5225
  "comment": {
5227
- "$ref": "#/definitions/comment"
5226
+ "$ref": "#/definitions/type._inputs.*.comment"
5228
5227
  },
5229
5228
  "context": {
5230
5229
  "allOf": [
5231
5230
  {
5232
- "$ref": "#/definitions/context"
5231
+ "$ref": "#/definitions/type._inputs.*.context"
5233
5232
  }
5234
5233
  ]
5235
5234
  },
@@ -5237,28 +5236,28 @@
5237
5236
  "description": "Provides a custom link for documentation for editors shown above input.",
5238
5237
  "allOf": [
5239
5238
  {
5240
- "$ref": "#/definitions/documentation"
5239
+ "$ref": "#/definitions/type.documentation"
5241
5240
  }
5242
5241
  ],
5243
5242
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
5244
5243
  },
5245
5244
  "label": {
5246
- "$ref": "#/definitions/label"
5245
+ "$ref": "#/definitions/type._inputs.*.label"
5247
5246
  },
5248
5247
  "hidden": {
5249
- "$ref": "#/definitions/hidden"
5248
+ "$ref": "#/definitions/type._inputs.*.hidden"
5250
5249
  },
5251
5250
  "disabled": {
5252
- "$ref": "#/definitions/disabled"
5251
+ "$ref": "#/definitions/type._inputs.*.disabled"
5253
5252
  },
5254
5253
  "instance_value": {
5255
- "$ref": "#/definitions/instance_value"
5254
+ "$ref": "#/definitions/type._inputs.*.instance_value"
5256
5255
  },
5257
5256
  "disable_instance_value_rehydration": {
5258
- "$ref": "#/definitions/disable_instance_value_rehydration"
5257
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
5259
5258
  },
5260
5259
  "cascade": {
5261
- "$ref": "#/definitions/cascade"
5260
+ "$ref": "#/definitions/type._inputs.*.cascade"
5262
5261
  },
5263
5262
  "type": {
5264
5263
  "title": "Type",
@@ -5272,32 +5271,32 @@
5272
5271
  "type": "object",
5273
5272
  "properties": {
5274
5273
  "required": {
5275
- "$ref": "#/definitions/required"
5274
+ "$ref": "#/definitions/type._inputs.*.options.required"
5276
5275
  },
5277
5276
  "required_message": {
5278
- "$ref": "#/definitions/required_message"
5277
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
5279
5278
  },
5280
5279
  "empty_type": {
5281
5280
  "allOf": [
5282
5281
  {
5283
- "$ref": "#/definitions/empty_type_number"
5282
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_number"
5284
5283
  }
5285
5284
  ]
5286
5285
  },
5287
5286
  "min": {
5288
- "$ref": "#/definitions/min"
5287
+ "$ref": "#/definitions/type._inputs.*.options.min"
5289
5288
  },
5290
5289
  "max": {
5291
- "$ref": "#/definitions/max"
5290
+ "$ref": "#/definitions/type._inputs.*.options.max"
5292
5291
  },
5293
5292
  "step": {
5294
- "$ref": "#/definitions/step"
5293
+ "$ref": "#/definitions/type._inputs.*.options.step"
5295
5294
  },
5296
5295
  "min_message": {
5297
- "$ref": "#/definitions/min_message"
5296
+ "$ref": "#/definitions/type._inputs.*.options.min_message"
5298
5297
  },
5299
5298
  "max_message": {
5300
- "$ref": "#/definitions/max_message"
5299
+ "$ref": "#/definitions/type._inputs.*.options.max_message"
5301
5300
  }
5302
5301
  },
5303
5302
  "required": [
@@ -5320,12 +5319,12 @@
5320
5319
  "type": "object",
5321
5320
  "properties": {
5322
5321
  "comment": {
5323
- "$ref": "#/definitions/comment"
5322
+ "$ref": "#/definitions/type._inputs.*.comment"
5324
5323
  },
5325
5324
  "context": {
5326
5325
  "allOf": [
5327
5326
  {
5328
- "$ref": "#/definitions/context"
5327
+ "$ref": "#/definitions/type._inputs.*.context"
5329
5328
  }
5330
5329
  ]
5331
5330
  },
@@ -5333,28 +5332,28 @@
5333
5332
  "description": "Provides a custom link for documentation for editors shown above input.",
5334
5333
  "allOf": [
5335
5334
  {
5336
- "$ref": "#/definitions/documentation"
5335
+ "$ref": "#/definitions/type.documentation"
5337
5336
  }
5338
5337
  ],
5339
5338
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
5340
5339
  },
5341
5340
  "label": {
5342
- "$ref": "#/definitions/label"
5341
+ "$ref": "#/definitions/type._inputs.*.label"
5343
5342
  },
5344
5343
  "hidden": {
5345
- "$ref": "#/definitions/hidden"
5344
+ "$ref": "#/definitions/type._inputs.*.hidden"
5346
5345
  },
5347
5346
  "disabled": {
5348
- "$ref": "#/definitions/disabled"
5347
+ "$ref": "#/definitions/type._inputs.*.disabled"
5349
5348
  },
5350
5349
  "instance_value": {
5351
- "$ref": "#/definitions/instance_value"
5350
+ "$ref": "#/definitions/type._inputs.*.instance_value"
5352
5351
  },
5353
5352
  "disable_instance_value_rehydration": {
5354
- "$ref": "#/definitions/disable_instance_value_rehydration"
5353
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
5355
5354
  },
5356
5355
  "cascade": {
5357
- "$ref": "#/definitions/cascade"
5356
+ "$ref": "#/definitions/type._inputs.*.cascade"
5358
5357
  },
5359
5358
  "type": {
5360
5359
  "title": "Type",
@@ -5371,31 +5370,31 @@
5371
5370
  "type": "object",
5372
5371
  "properties": {
5373
5372
  "mime_type": {
5374
- "$ref": "#/definitions/mime_type"
5373
+ "$ref": "#/definitions/type._inputs.*.options.mime_type"
5375
5374
  },
5376
5375
  "resize_style": {
5377
- "$ref": "#/definitions/resize_style"
5376
+ "$ref": "#/definitions/type._inputs.*.options.resize_style"
5378
5377
  },
5379
5378
  "width": {
5380
- "$ref": "#/definitions/width"
5379
+ "$ref": "#/definitions/type._inputs.*.options.width"
5381
5380
  },
5382
5381
  "height": {
5383
- "$ref": "#/definitions/height"
5382
+ "$ref": "#/definitions/type._inputs.*.options.height"
5384
5383
  },
5385
5384
  "expandable": {
5386
- "$ref": "#/definitions/expandable"
5385
+ "$ref": "#/definitions/type._inputs.*.options.expandable"
5387
5386
  },
5388
5387
  "image_size_attributes": {
5389
- "$ref": "#/definitions/image_size_attributes"
5388
+ "$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
5390
5389
  },
5391
5390
  "allowed_sources": {
5392
- "$ref": "#/definitions/allowed_sources"
5391
+ "$ref": "#/definitions/type._inputs.*.options.allowed_sources"
5393
5392
  },
5394
5393
  "prevent_resize_existing_files": {
5395
- "$ref": "#/definitions/prevent_resize_existing_files"
5394
+ "$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
5396
5395
  },
5397
5396
  "sizes": {
5398
- "$ref": "#/definitions/sizes"
5397
+ "$ref": "#/definitions/type._inputs.*.options.sizes"
5399
5398
  },
5400
5399
  "paths": {
5401
5400
  "allOf": [
@@ -5405,138 +5404,138 @@
5405
5404
  ]
5406
5405
  },
5407
5406
  "bold": {
5408
- "$ref": "#/definitions/bold"
5407
+ "$ref": "#/definitions/type._editables.*.bold"
5409
5408
  },
5410
5409
  "copyformatting": {
5411
- "$ref": "#/definitions/copyformatting"
5410
+ "$ref": "#/definitions/type._editables.*.copyformatting"
5412
5411
  },
5413
5412
  "italic": {
5414
- "$ref": "#/definitions/italic"
5413
+ "$ref": "#/definitions/type._editables.*.italic"
5415
5414
  },
5416
5415
  "link": {
5417
- "$ref": "#/definitions/link"
5416
+ "$ref": "#/definitions/type._editables.*.link"
5418
5417
  },
5419
5418
  "redo": {
5420
- "$ref": "#/definitions/redo"
5419
+ "$ref": "#/definitions/type._editables.*.redo"
5421
5420
  },
5422
5421
  "removeformat": {
5423
- "$ref": "#/definitions/removeformat"
5422
+ "$ref": "#/definitions/type._editables.*.removeformat"
5424
5423
  },
5425
5424
  "strike": {
5426
- "$ref": "#/definitions/strike"
5425
+ "$ref": "#/definitions/type._editables.*.strike"
5427
5426
  },
5428
5427
  "subscript": {
5429
- "$ref": "#/definitions/subscript"
5428
+ "$ref": "#/definitions/type._editables.*.subscript"
5430
5429
  },
5431
5430
  "superscript": {
5432
- "$ref": "#/definitions/superscript"
5431
+ "$ref": "#/definitions/type._editables.*.superscript"
5433
5432
  },
5434
5433
  "underline": {
5435
- "$ref": "#/definitions/underline"
5434
+ "$ref": "#/definitions/type._editables.*.underline"
5436
5435
  },
5437
5436
  "undo": {
5438
- "$ref": "#/definitions/undo"
5437
+ "$ref": "#/definitions/type._editables.*.undo"
5439
5438
  },
5440
5439
  "remove_custom_markup": {
5441
- "$ref": "#/definitions/remove_custom_markup"
5440
+ "$ref": "#/definitions/type._editables.*.remove_custom_markup"
5442
5441
  },
5443
5442
  "allow_custom_markup": {
5444
- "$ref": "#/definitions/allow_custom_markup"
5443
+ "$ref": "#/definitions/type._editables.*.allow_custom_markup"
5445
5444
  },
5446
5445
  "blockquote": {
5447
- "$ref": "#/definitions/blockquote"
5446
+ "$ref": "#/definitions/type._editables.*.blockquote"
5448
5447
  },
5449
5448
  "bulletedlist": {
5450
- "$ref": "#/definitions/bulletedlist"
5449
+ "$ref": "#/definitions/type._editables.*.bulletedlist"
5451
5450
  },
5452
5451
  "center": {
5453
- "$ref": "#/definitions/center"
5452
+ "$ref": "#/definitions/type._editables.*.center"
5454
5453
  },
5455
5454
  "code_inline": {
5456
- "$ref": "#/definitions/code_inline"
5455
+ "$ref": "#/definitions/type._editables.*.code_inline"
5457
5456
  },
5458
5457
  "code_block": {
5459
- "$ref": "#/definitions/code_block"
5458
+ "$ref": "#/definitions/type._editables.*.code_block"
5460
5459
  },
5461
5460
  "code": {
5462
- "$ref": "#/definitions/code"
5461
+ "$ref": "#/definitions/type._editables.*.code"
5463
5462
  },
5464
5463
  "embed": {
5465
- "$ref": "#/definitions/embed"
5464
+ "$ref": "#/definitions/type._editables.*.embed"
5466
5465
  },
5467
5466
  "format": {
5468
- "$ref": "#/definitions/format"
5467
+ "$ref": "#/definitions/type._editables.*.format"
5469
5468
  },
5470
5469
  "horizontalrule": {
5471
- "$ref": "#/definitions/horizontalrule"
5470
+ "$ref": "#/definitions/type._editables.*.horizontalrule"
5472
5471
  },
5473
5472
  "image": {
5474
- "$ref": "#/definitions/image"
5473
+ "$ref": "#/definitions/type._editables.*.image"
5475
5474
  },
5476
5475
  "indent": {
5477
- "$ref": "#/definitions/indent"
5476
+ "$ref": "#/definitions/type._editables.*.indent"
5478
5477
  },
5479
5478
  "justify": {
5480
- "$ref": "#/definitions/justify"
5479
+ "$ref": "#/definitions/type._editables.*.justify"
5481
5480
  },
5482
5481
  "left": {
5483
- "$ref": "#/definitions/left"
5482
+ "$ref": "#/definitions/type._editables.*.left"
5484
5483
  },
5485
5484
  "numberedlist": {
5486
- "$ref": "#/definitions/numberedlist"
5485
+ "$ref": "#/definitions/type._editables.*.numberedlist"
5487
5486
  },
5488
5487
  "outdent": {
5489
- "$ref": "#/definitions/outdent"
5488
+ "$ref": "#/definitions/type._editables.*.outdent"
5490
5489
  },
5491
5490
  "right": {
5492
- "$ref": "#/definitions/right"
5491
+ "$ref": "#/definitions/type._editables.*.right"
5493
5492
  },
5494
5493
  "snippet": {
5495
- "$ref": "#/definitions/snippet"
5494
+ "$ref": "#/definitions/type._editables.*.snippet"
5496
5495
  },
5497
5496
  "styles": {
5498
- "$ref": "#/definitions/styles"
5497
+ "$ref": "#/definitions/type._editables.*.styles"
5499
5498
  },
5500
5499
  "table": {
5501
- "$ref": "#/definitions/table"
5500
+ "$ref": "#/definitions/type._editables.*.table"
5502
5501
  },
5503
5502
  "join_above": {
5504
- "$ref": "#/definitions/join_above"
5503
+ "$ref": "#/definitions/type._editables.*.join_above"
5505
5504
  },
5506
5505
  "join_below": {
5507
- "$ref": "#/definitions/join_below"
5506
+ "$ref": "#/definitions/type._editables.*.join_below"
5508
5507
  },
5509
5508
  "max_length": {
5510
- "$ref": "#/definitions/max_length"
5509
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
5511
5510
  },
5512
5511
  "max_length_message": {
5513
- "$ref": "#/definitions/max_length_message"
5512
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
5514
5513
  },
5515
5514
  "min_length": {
5516
- "$ref": "#/definitions/min_length"
5515
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
5517
5516
  },
5518
5517
  "min_length_message": {
5519
- "$ref": "#/definitions/min_length_message"
5518
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
5520
5519
  },
5521
5520
  "pattern": {
5522
- "$ref": "#/definitions/pattern"
5521
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
5523
5522
  },
5524
5523
  "pattern_message": {
5525
- "$ref": "#/definitions/pattern_message"
5524
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
5526
5525
  },
5527
5526
  "pattern_flags": {
5528
- "$ref": "#/definitions/pattern_flags"
5527
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
5529
5528
  },
5530
5529
  "required": {
5531
- "$ref": "#/definitions/required"
5530
+ "$ref": "#/definitions/type._inputs.*.options.required"
5532
5531
  },
5533
5532
  "required_message": {
5534
- "$ref": "#/definitions/required_message"
5533
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
5535
5534
  },
5536
5535
  "empty_type": {
5537
5536
  "allOf": [
5538
5537
  {
5539
- "$ref": "#/definitions/empty_type_text"
5538
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
5540
5539
  }
5541
5540
  ]
5542
5541
  },
@@ -5562,7 +5561,7 @@
5562
5561
  "additionalProperties": false,
5563
5562
  "markdownDescription": "Provides an editing interface for HTML markup content."
5564
5563
  },
5565
- "mime_type": {
5564
+ "type._inputs.*.options.mime_type": {
5566
5565
  "title": "Mime Type",
5567
5566
  "description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
5568
5567
  "type": "string",
@@ -5573,7 +5572,7 @@
5573
5572
  ],
5574
5573
  "markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file."
5575
5574
  },
5576
- "resize_style": {
5575
+ "type._inputs.*.options.resize_style": {
5577
5576
  "title": "Resize Style",
5578
5577
  "description": "Sets how uploaded image files are resized with a bounding box defined by width and height prior to upload. Has no effect when selecting existing images, or if width and height are unset.",
5579
5578
  "default": "contain",
@@ -5586,33 +5585,33 @@
5586
5585
  ],
5587
5586
  "markdownDescription": "Sets how uploaded image files are resized with a bounding box defined by width and height prior to upload. Has no effect when selecting existing images, or if width and height are unset."
5588
5587
  },
5589
- "width": {
5588
+ "type._inputs.*.options.width": {
5590
5589
  "title": "Width",
5591
5590
  "description": "Defines the width of the bounding box used in the image resizing process defined with resize_style.",
5592
5591
  "type": "number",
5593
5592
  "markdownDescription": "Defines the width of the bounding box used in the image resizing process defined with resize_style."
5594
5593
  },
5595
- "height": {
5594
+ "type._inputs.*.options.height": {
5596
5595
  "title": "Height",
5597
5596
  "description": "Defines the height of the bounding box used in the image resizing process defined with resize_style.",
5598
5597
  "type": "number",
5599
5598
  "markdownDescription": "Defines the height of the bounding box used in the image resizing process defined with resize_style."
5600
5599
  },
5601
- "expandable": {
5600
+ "type._inputs.*.options.expandable": {
5602
5601
  "title": "Expandable",
5603
5602
  "description": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized.",
5604
5603
  "default": false,
5605
5604
  "type": "boolean",
5606
5605
  "markdownDescription": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized."
5607
5606
  },
5608
- "image_size_attributes": {
5607
+ "type._inputs.*.options.image_size_attributes": {
5609
5608
  "title": "Image Size Attributes",
5610
5609
  "description": "Instructs the editor to save `width` and `height` attributes on the image elements. This can prevent pop-in as a page loads.",
5611
5610
  "default": true,
5612
5611
  "type": "boolean",
5613
5612
  "markdownDescription": "Instructs the editor to save `width` and `height` attributes on the image elements. This can prevent pop-in as a page loads."
5614
5613
  },
5615
- "allowed_sources": {
5614
+ "type._inputs.*.options.allowed_sources": {
5616
5615
  "title": "Allowed Sources",
5617
5616
  "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.",
5618
5617
  "type": "array",
@@ -5621,14 +5620,14 @@
5621
5620
  },
5622
5621
  "markdownDescription": "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."
5623
5622
  },
5624
- "prevent_resize_existing_files": {
5623
+ "type._inputs.*.options.prevent_resize_existing_files": {
5625
5624
  "title": "Prevent Resize Existing Files",
5626
5625
  "description": "Enable to skip the image resizing process configured for this input when selecting existing images.",
5627
5626
  "default": false,
5628
5627
  "type": "boolean",
5629
5628
  "markdownDescription": "Enable to skip the image resizing process configured for this input when selecting existing images."
5630
5629
  },
5631
- "sizes": {
5630
+ "type._inputs.*.options.sizes": {
5632
5631
  "title": "Sizes",
5633
5632
  "description": "Definitions for creating additional images of different sizes when uploading or selecting existing files.",
5634
5633
  "type": "array",
@@ -5703,198 +5702,198 @@
5703
5702
  "paths.uploads_use_relative_path": {
5704
5703
  "type": "boolean"
5705
5704
  },
5706
- "bold": {
5705
+ "type._editables.*.bold": {
5707
5706
  "description": "Enables a control to set selected text to bold.",
5708
5707
  "default": true,
5709
5708
  "type": "boolean",
5710
5709
  "markdownDescription": "Enables a control to set selected text to bold."
5711
5710
  },
5712
- "copyformatting": {
5711
+ "type._editables.*.copyformatting": {
5713
5712
  "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.",
5714
5713
  "default": false,
5715
5714
  "type": "boolean",
5716
5715
  "markdownDescription": "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."
5717
5716
  },
5718
- "italic": {
5717
+ "type._editables.*.italic": {
5719
5718
  "description": "Enables a control to italicize selected text.",
5720
5719
  "default": true,
5721
5720
  "type": "boolean",
5722
5721
  "markdownDescription": "Enables a control to italicize selected text."
5723
5722
  },
5724
- "link": {
5723
+ "type._editables.*.link": {
5725
5724
  "description": "Enables a control to create hyperlinks around selected text.",
5726
5725
  "default": true,
5727
5726
  "type": "boolean",
5728
5727
  "markdownDescription": "Enables a control to create hyperlinks around selected text."
5729
5728
  },
5730
- "redo": {
5729
+ "type._editables.*.redo": {
5731
5730
  "description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
5732
5731
  "default": false,
5733
5732
  "type": "boolean",
5734
5733
  "markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts."
5735
5734
  },
5736
- "removeformat": {
5735
+ "type._editables.*.removeformat": {
5737
5736
  "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.",
5738
5737
  "default": true,
5739
5738
  "type": "boolean",
5740
5739
  "markdownDescription": "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."
5741
5740
  },
5742
- "strike": {
5741
+ "type._editables.*.strike": {
5743
5742
  "description": "Enables a control to strike selected text.",
5744
5743
  "default": false,
5745
5744
  "type": "boolean",
5746
5745
  "markdownDescription": "Enables a control to strike selected text."
5747
5746
  },
5748
- "subscript": {
5747
+ "type._editables.*.subscript": {
5749
5748
  "description": "Enables a control to set selected text to subscript.",
5750
5749
  "default": false,
5751
5750
  "type": "boolean",
5752
5751
  "markdownDescription": "Enables a control to set selected text to subscript."
5753
5752
  },
5754
- "superscript": {
5753
+ "type._editables.*.superscript": {
5755
5754
  "description": "Enables a control to set selected text to superscript.",
5756
5755
  "default": false,
5757
5756
  "type": "boolean",
5758
5757
  "markdownDescription": "Enables a control to set selected text to superscript."
5759
5758
  },
5760
- "underline": {
5759
+ "type._editables.*.underline": {
5761
5760
  "description": "Enables a control to underline selected text.",
5762
5761
  "default": false,
5763
5762
  "type": "boolean",
5764
5763
  "markdownDescription": "Enables a control to underline selected text."
5765
5764
  },
5766
- "undo": {
5765
+ "type._editables.*.undo": {
5767
5766
  "description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
5768
5767
  "default": false,
5769
5768
  "type": "boolean",
5770
5769
  "markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts."
5771
5770
  },
5772
- "remove_custom_markup": {
5771
+ "type._editables.*.remove_custom_markup": {
5773
5772
  "description": "Defines if the content should be stripped of \"custom markup\". It is recommended to have this option turned on once you have all of your rich text options configured. Having `allow_custom_markup` turned on disables this option. Defaults to false.",
5774
5773
  "type": "boolean",
5775
5774
  "markdownDescription": "Defines if the content should be stripped of \"custom markup\". It is recommended to have this option turned on once you have all of your rich text options configured. Having `allow_custom_markup` turned on disables this option. Defaults to false."
5776
5775
  },
5777
- "allow_custom_markup": {
5776
+ "type._editables.*.allow_custom_markup": {
5778
5777
  "description": "Defines if the content can contain \"custom markup\". It is not recommended to have this option turned on. Defaults to true for non-content editable regions, false otherwise.",
5779
5778
  "type": "boolean",
5780
5779
  "markdownDescription": "Defines if the content can contain \"custom markup\". It is not recommended to have this option turned on. Defaults to true for non-content editable regions, false otherwise."
5781
5780
  },
5782
- "blockquote": {
5781
+ "type._editables.*.blockquote": {
5783
5782
  "description": "Enables a control to wrap blocks of text in block quotes.",
5784
5783
  "default": true,
5785
5784
  "type": "boolean",
5786
5785
  "markdownDescription": "Enables a control to wrap blocks of text in block quotes."
5787
5786
  },
5788
- "bulletedlist": {
5787
+ "type._editables.*.bulletedlist": {
5789
5788
  "description": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list.",
5790
5789
  "default": true,
5791
5790
  "type": "boolean",
5792
5791
  "markdownDescription": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list."
5793
5792
  },
5794
- "center": {
5793
+ "type._editables.*.center": {
5795
5794
  "description": "Enables a control to center align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
5796
5795
  "type": "string",
5797
5796
  "markdownDescription": "Enables a control to center align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
5798
5797
  },
5799
- "code_inline": {
5798
+ "type._editables.*.code_inline": {
5800
5799
  "description": "Enables a control to create an inline code element, containing any selected text.",
5801
5800
  "default": false,
5802
5801
  "type": "boolean",
5803
5802
  "markdownDescription": "Enables a control to create an inline code element, containing any selected text."
5804
5803
  },
5805
- "code_block": {
5804
+ "type._editables.*.code_block": {
5806
5805
  "description": "Enables a control to insert a code block.",
5807
5806
  "default": false,
5808
5807
  "type": "boolean",
5809
5808
  "markdownDescription": "Enables a control to insert a code block."
5810
5809
  },
5811
- "code": {
5810
+ "type._editables.*.code": {
5812
5811
  "description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
5813
5812
  "default": false,
5814
5813
  "type": "boolean",
5815
5814
  "markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`."
5816
5815
  },
5817
- "embed": {
5816
+ "type._editables.*.embed": {
5818
5817
  "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.",
5819
5818
  "default": false,
5820
5819
  "type": "boolean",
5821
5820
  "markdownDescription": "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."
5822
5821
  },
5823
- "format": {
5822
+ "type._editables.*.format": {
5824
5823
  "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\").",
5825
5824
  "default": "p h1 h2 h3 h4 h5 h6",
5826
5825
  "type": "string",
5827
5826
  "markdownDescription": "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\")."
5828
5827
  },
5829
- "horizontalrule": {
5828
+ "type._editables.*.horizontalrule": {
5830
5829
  "description": "Enables a control to insert a horizontal rule.",
5831
5830
  "default": false,
5832
5831
  "type": "boolean",
5833
5832
  "markdownDescription": "Enables a control to insert a horizontal rule."
5834
5833
  },
5835
- "image": {
5834
+ "type._editables.*.image": {
5836
5835
  "description": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
5837
5836
  "default": true,
5838
5837
  "type": "boolean",
5839
5838
  "markdownDescription": "Enables a control to insert an image. The image can be uploaded, existing or an external link."
5840
5839
  },
5841
- "indent": {
5840
+ "type._editables.*.indent": {
5842
5841
  "description": "Enables a control to increase indentation for numbered and unordered lists.",
5843
5842
  "default": false,
5844
5843
  "type": "boolean",
5845
5844
  "markdownDescription": "Enables a control to increase indentation for numbered and unordered lists."
5846
5845
  },
5847
- "justify": {
5846
+ "type._editables.*.justify": {
5848
5847
  "description": "Enables a control to justify text by toggling a class name for a block of text. The value is the class name the editor should add to justify the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
5849
5848
  "type": "string",
5850
5849
  "markdownDescription": "Enables a control to justify text by toggling a class name for a block of text. The value is the class name the editor should add to justify the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
5851
5850
  },
5852
- "left": {
5851
+ "type._editables.*.left": {
5853
5852
  "description": "Enables a control to left align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
5854
5853
  "type": "string",
5855
5854
  "markdownDescription": "Enables a control to left align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
5856
5855
  },
5857
- "numberedlist": {
5856
+ "type._editables.*.numberedlist": {
5858
5857
  "description": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list.",
5859
5858
  "default": true,
5860
5859
  "type": "boolean",
5861
5860
  "markdownDescription": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list."
5862
5861
  },
5863
- "outdent": {
5862
+ "type._editables.*.outdent": {
5864
5863
  "description": "Enables a control to reduce indentation for numbered and unordered lists.",
5865
5864
  "default": false,
5866
5865
  "type": "boolean",
5867
5866
  "markdownDescription": "Enables a control to reduce indentation for numbered and unordered lists."
5868
5867
  },
5869
- "right": {
5868
+ "type._editables.*.right": {
5870
5869
  "description": "Enables a control to right align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
5871
5870
  "type": "string",
5872
5871
  "markdownDescription": "Enables a control to right align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
5873
5872
  },
5874
- "snippet": {
5873
+ "type._editables.*.snippet": {
5875
5874
  "description": "Enables a control to insert snippets, if any are available.",
5876
5875
  "default": true,
5877
5876
  "type": "boolean",
5878
5877
  "markdownDescription": "Enables a control to insert snippets, if any are available."
5879
5878
  },
5880
- "styles": {
5879
+ "type._editables.*.styles": {
5881
5880
  "description": "Enables a drop down menu for editors to style selected text or blocks or text. Styles are the combination of an element and class name. The value for this option is the path (either source or build output) to the CSS file containing the styles.",
5882
5881
  "type": "string",
5883
5882
  "markdownDescription": "Enables a drop down menu for editors to style selected text or blocks or text. Styles are the combination of an element and class name. The value for this option is the path (either source or build output) to the CSS file containing the styles."
5884
5883
  },
5885
- "table": {
5884
+ "type._editables.*.table": {
5886
5885
  "description": "Enables a control to insert a table. Further options for table cells are available in the context menu for cells within the editor.",
5887
5886
  "default": false,
5888
5887
  "type": "boolean",
5889
5888
  "markdownDescription": "Enables a control to insert a table. Further options for table cells are available in the context menu for cells within the editor."
5890
5889
  },
5891
- "join_above": {
5890
+ "type._editables.*.join_above": {
5892
5891
  "description": "Enables a control to join the selected block with the block above it.",
5893
5892
  "default": false,
5894
5893
  "type": "boolean",
5895
5894
  "markdownDescription": "Enables a control to join the selected block with the block above it."
5896
5895
  },
5897
- "join_below": {
5896
+ "type._editables.*.join_below": {
5898
5897
  "description": "Enables a control to join the selected block with the block below it.",
5899
5898
  "default": false,
5900
5899
  "type": "boolean",
@@ -5906,12 +5905,12 @@
5906
5905
  "type": "object",
5907
5906
  "properties": {
5908
5907
  "comment": {
5909
- "$ref": "#/definitions/comment"
5908
+ "$ref": "#/definitions/type._inputs.*.comment"
5910
5909
  },
5911
5910
  "context": {
5912
5911
  "allOf": [
5913
5912
  {
5914
- "$ref": "#/definitions/context"
5913
+ "$ref": "#/definitions/type._inputs.*.context"
5915
5914
  }
5916
5915
  ]
5917
5916
  },
@@ -5919,28 +5918,28 @@
5919
5918
  "description": "Provides a custom link for documentation for editors shown above input.",
5920
5919
  "allOf": [
5921
5920
  {
5922
- "$ref": "#/definitions/documentation"
5921
+ "$ref": "#/definitions/type.documentation"
5923
5922
  }
5924
5923
  ],
5925
5924
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
5926
5925
  },
5927
5926
  "label": {
5928
- "$ref": "#/definitions/label"
5927
+ "$ref": "#/definitions/type._inputs.*.label"
5929
5928
  },
5930
5929
  "hidden": {
5931
- "$ref": "#/definitions/hidden"
5930
+ "$ref": "#/definitions/type._inputs.*.hidden"
5932
5931
  },
5933
5932
  "disabled": {
5934
- "$ref": "#/definitions/disabled"
5933
+ "$ref": "#/definitions/type._inputs.*.disabled"
5935
5934
  },
5936
5935
  "instance_value": {
5937
- "$ref": "#/definitions/instance_value"
5936
+ "$ref": "#/definitions/type._inputs.*.instance_value"
5938
5937
  },
5939
5938
  "disable_instance_value_rehydration": {
5940
- "$ref": "#/definitions/disable_instance_value_rehydration"
5939
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
5941
5940
  },
5942
5941
  "cascade": {
5943
- "$ref": "#/definitions/cascade"
5942
+ "$ref": "#/definitions/type._inputs.*.cascade"
5944
5943
  },
5945
5944
  "type": {
5946
5945
  "title": "Type",
@@ -5957,15 +5956,15 @@
5957
5956
  "type": "object",
5958
5957
  "properties": {
5959
5958
  "required": {
5960
- "$ref": "#/definitions/required"
5959
+ "$ref": "#/definitions/type._inputs.*.options.required"
5961
5960
  },
5962
5961
  "required_message": {
5963
- "$ref": "#/definitions/required_message"
5962
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
5964
5963
  },
5965
5964
  "empty_type": {
5966
5965
  "allOf": [
5967
5966
  {
5968
- "$ref": "#/definitions/empty_type_text"
5967
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
5969
5968
  }
5970
5969
  ]
5971
5970
  },
@@ -6636,12 +6635,12 @@
6636
6635
  "type": "object",
6637
6636
  "properties": {
6638
6637
  "comment": {
6639
- "$ref": "#/definitions/comment"
6638
+ "$ref": "#/definitions/type._inputs.*.comment"
6640
6639
  },
6641
6640
  "context": {
6642
6641
  "allOf": [
6643
6642
  {
6644
- "$ref": "#/definitions/context"
6643
+ "$ref": "#/definitions/type._inputs.*.context"
6645
6644
  }
6646
6645
  ]
6647
6646
  },
@@ -6649,28 +6648,28 @@
6649
6648
  "description": "Provides a custom link for documentation for editors shown above input.",
6650
6649
  "allOf": [
6651
6650
  {
6652
- "$ref": "#/definitions/documentation"
6651
+ "$ref": "#/definitions/type.documentation"
6653
6652
  }
6654
6653
  ],
6655
6654
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
6656
6655
  },
6657
6656
  "label": {
6658
- "$ref": "#/definitions/label"
6657
+ "$ref": "#/definitions/type._inputs.*.label"
6659
6658
  },
6660
6659
  "hidden": {
6661
- "$ref": "#/definitions/hidden"
6660
+ "$ref": "#/definitions/type._inputs.*.hidden"
6662
6661
  },
6663
6662
  "disabled": {
6664
- "$ref": "#/definitions/disabled"
6663
+ "$ref": "#/definitions/type._inputs.*.disabled"
6665
6664
  },
6666
6665
  "instance_value": {
6667
- "$ref": "#/definitions/instance_value"
6666
+ "$ref": "#/definitions/type._inputs.*.instance_value"
6668
6667
  },
6669
6668
  "disable_instance_value_rehydration": {
6670
- "$ref": "#/definitions/disable_instance_value_rehydration"
6669
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
6671
6670
  },
6672
6671
  "cascade": {
6673
- "$ref": "#/definitions/cascade"
6672
+ "$ref": "#/definitions/type._inputs.*.cascade"
6674
6673
  },
6675
6674
  "type": {
6676
6675
  "title": "Type",
@@ -6684,15 +6683,15 @@
6684
6683
  "type": "object",
6685
6684
  "properties": {
6686
6685
  "required": {
6687
- "$ref": "#/definitions/required"
6686
+ "$ref": "#/definitions/type._inputs.*.options.required"
6688
6687
  },
6689
6688
  "required_message": {
6690
- "$ref": "#/definitions/required_message"
6689
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
6691
6690
  },
6692
6691
  "empty_type": {
6693
6692
  "allOf": [
6694
6693
  {
6695
- "$ref": "#/definitions/empty_type_text"
6694
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
6696
6695
  }
6697
6696
  ]
6698
6697
  }
@@ -6713,12 +6712,12 @@
6713
6712
  "type": "object",
6714
6713
  "properties": {
6715
6714
  "comment": {
6716
- "$ref": "#/definitions/comment"
6715
+ "$ref": "#/definitions/type._inputs.*.comment"
6717
6716
  },
6718
6717
  "context": {
6719
6718
  "allOf": [
6720
6719
  {
6721
- "$ref": "#/definitions/context"
6720
+ "$ref": "#/definitions/type._inputs.*.context"
6722
6721
  }
6723
6722
  ]
6724
6723
  },
@@ -6726,28 +6725,28 @@
6726
6725
  "description": "Provides a custom link for documentation for editors shown above input.",
6727
6726
  "allOf": [
6728
6727
  {
6729
- "$ref": "#/definitions/documentation"
6728
+ "$ref": "#/definitions/type.documentation"
6730
6729
  }
6731
6730
  ],
6732
6731
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
6733
6732
  },
6734
6733
  "label": {
6735
- "$ref": "#/definitions/label"
6734
+ "$ref": "#/definitions/type._inputs.*.label"
6736
6735
  },
6737
6736
  "hidden": {
6738
- "$ref": "#/definitions/hidden"
6737
+ "$ref": "#/definitions/type._inputs.*.hidden"
6739
6738
  },
6740
6739
  "disabled": {
6741
- "$ref": "#/definitions/disabled"
6740
+ "$ref": "#/definitions/type._inputs.*.disabled"
6742
6741
  },
6743
6742
  "instance_value": {
6744
- "$ref": "#/definitions/instance_value"
6743
+ "$ref": "#/definitions/type._inputs.*.instance_value"
6745
6744
  },
6746
6745
  "disable_instance_value_rehydration": {
6747
- "$ref": "#/definitions/disable_instance_value_rehydration"
6746
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
6748
6747
  },
6749
6748
  "cascade": {
6750
- "$ref": "#/definitions/cascade"
6749
+ "$ref": "#/definitions/type._inputs.*.cascade"
6751
6750
  },
6752
6751
  "type": {
6753
6752
  "title": "Type",
@@ -6765,63 +6764,63 @@
6765
6764
  "type": "object",
6766
6765
  "properties": {
6767
6766
  "mime_type": {
6768
- "$ref": "#/definitions/mime_type"
6767
+ "$ref": "#/definitions/type._inputs.*.options.mime_type"
6769
6768
  },
6770
6769
  "resize_style": {
6771
- "$ref": "#/definitions/resize_style"
6770
+ "$ref": "#/definitions/type._inputs.*.options.resize_style"
6772
6771
  },
6773
6772
  "width": {
6774
- "$ref": "#/definitions/width"
6773
+ "$ref": "#/definitions/type._inputs.*.options.width"
6775
6774
  },
6776
6775
  "height": {
6777
- "$ref": "#/definitions/height"
6776
+ "$ref": "#/definitions/type._inputs.*.options.height"
6778
6777
  },
6779
6778
  "expandable": {
6780
- "$ref": "#/definitions/expandable"
6779
+ "$ref": "#/definitions/type._inputs.*.options.expandable"
6781
6780
  },
6782
6781
  "image_size_attributes": {
6783
- "$ref": "#/definitions/image_size_attributes"
6782
+ "$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
6784
6783
  },
6785
6784
  "allowed_sources": {
6786
- "$ref": "#/definitions/allowed_sources"
6785
+ "$ref": "#/definitions/type._inputs.*.options.allowed_sources"
6787
6786
  },
6788
6787
  "prevent_resize_existing_files": {
6789
- "$ref": "#/definitions/prevent_resize_existing_files"
6788
+ "$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
6790
6789
  },
6791
6790
  "sizes": {
6792
- "$ref": "#/definitions/sizes"
6791
+ "$ref": "#/definitions/type._inputs.*.options.sizes"
6793
6792
  },
6794
6793
  "max_length": {
6795
- "$ref": "#/definitions/max_length"
6794
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
6796
6795
  },
6797
6796
  "max_length_message": {
6798
- "$ref": "#/definitions/max_length_message"
6797
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
6799
6798
  },
6800
6799
  "min_length": {
6801
- "$ref": "#/definitions/min_length"
6800
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
6802
6801
  },
6803
6802
  "min_length_message": {
6804
- "$ref": "#/definitions/min_length_message"
6803
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
6805
6804
  },
6806
6805
  "pattern": {
6807
- "$ref": "#/definitions/pattern"
6806
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
6808
6807
  },
6809
6808
  "pattern_message": {
6810
- "$ref": "#/definitions/pattern_message"
6809
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
6811
6810
  },
6812
6811
  "pattern_flags": {
6813
- "$ref": "#/definitions/pattern_flags"
6812
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
6814
6813
  },
6815
6814
  "required": {
6816
- "$ref": "#/definitions/required"
6815
+ "$ref": "#/definitions/type._inputs.*.options.required"
6817
6816
  },
6818
6817
  "required_message": {
6819
- "$ref": "#/definitions/required_message"
6818
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
6820
6819
  },
6821
6820
  "empty_type": {
6822
6821
  "allOf": [
6823
6822
  {
6824
- "$ref": "#/definitions/empty_type_text"
6823
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
6825
6824
  }
6826
6825
  ]
6827
6826
  },
@@ -6833,22 +6832,22 @@
6833
6832
  ]
6834
6833
  },
6835
6834
  "accepts_mime_types": {
6836
- "$ref": "#/definitions/accepts_mime_types"
6835
+ "$ref": "#/definitions/type._inputs.*.options.accepts_mime_types"
6837
6836
  },
6838
6837
  "max_file_size": {
6839
- "$ref": "#/definitions/max_file_size"
6838
+ "$ref": "#/definitions/type._inputs.*.options.max_file_size"
6840
6839
  },
6841
6840
  "max_file_size_message": {
6842
- "$ref": "#/definitions/max_file_size_message"
6841
+ "$ref": "#/definitions/type._inputs.*.options.max_file_size_message"
6843
6842
  },
6844
6843
  "disable_upload_file": {
6845
- "$ref": "#/definitions/disable_upload_file"
6844
+ "$ref": "#/definitions/type._inputs.*.options.disable_upload_file"
6846
6845
  },
6847
6846
  "disable_direct_input": {
6848
- "$ref": "#/definitions/disable_direct_input"
6847
+ "$ref": "#/definitions/type._inputs.*.options.disable_direct_input"
6849
6848
  },
6850
6849
  "disable_upload_file_in_file_browser": {
6851
- "$ref": "#/definitions/disable_upload_file_in_file_browser"
6850
+ "$ref": "#/definitions/type._inputs.*.options.disable_upload_file_in_file_browser"
6852
6851
  }
6853
6852
  },
6854
6853
  "additionalProperties": false,
@@ -6861,7 +6860,7 @@
6861
6860
  "additionalProperties": false,
6862
6861
  "markdownDescription": "Provides an editing interface for uploading files to your repository or DAM and browsing existing assets."
6863
6862
  },
6864
- "accepts_mime_types": {
6863
+ "type._inputs.*.options.accepts_mime_types": {
6865
6864
  "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.",
6866
6865
  "anyOf": [
6867
6866
  {
@@ -7319,29 +7318,29 @@
7319
7318
  ],
7320
7319
  "markdownDescription": "MIME type identifiers for file type validation and handling in CloudCannon."
7321
7320
  },
7322
- "max_file_size": {
7321
+ "type._inputs.*.options.max_file_size": {
7323
7322
  "description": "This key defines the maximum file size, in kilobytes, that CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from uploading a file larger than the specified size. If the Input already contains a file larger than the specified size, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes. Value can be any positive integer.",
7324
7323
  "type": "number",
7325
7324
  "markdownDescription": "This key defines the maximum file size, in kilobytes, that CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from uploading a file larger than the specified size. If the Input already contains a file larger than the specified size, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes. Value can be any positive integer."
7326
7325
  },
7327
- "max_file_size_message": {
7326
+ "type._inputs.*.options.max_file_size_message": {
7328
7327
  "description": "This key defines the message that explains why an Input needs to have a maximum file size. This key requires you to define `options.max_file_size`. This key has no default.",
7329
7328
  "type": "string",
7330
7329
  "markdownDescription": "This key defines the message that explains why an Input needs to have a maximum file size. This key requires you to define `options.max_file_size`. This key has no default."
7331
7330
  },
7332
- "disable_upload_file": {
7331
+ "type._inputs.*.options.disable_upload_file": {
7333
7332
  "description": "Disables the context menu option and the drop area for uploading files.",
7334
7333
  "default": false,
7335
7334
  "type": "boolean",
7336
7335
  "markdownDescription": "Disables the context menu option and the drop area for uploading files."
7337
7336
  },
7338
- "disable_direct_input": {
7337
+ "type._inputs.*.options.disable_direct_input": {
7339
7338
  "description": "Prevents typing into the text input, while still allowing context menu options to change the value.",
7340
7339
  "default": false,
7341
7340
  "type": "boolean",
7342
7341
  "markdownDescription": "Prevents typing into the text input, while still allowing context menu options to change the value."
7343
7342
  },
7344
- "disable_upload_file_in_file_browser": {
7343
+ "type._inputs.*.options.disable_upload_file_in_file_browser": {
7345
7344
  "description": "Prevents file uploads inside the \"Select existing file/image\" file browser modal window.",
7346
7345
  "default": false,
7347
7346
  "type": "boolean",
@@ -7353,12 +7352,12 @@
7353
7352
  "type": "object",
7354
7353
  "properties": {
7355
7354
  "comment": {
7356
- "$ref": "#/definitions/comment"
7355
+ "$ref": "#/definitions/type._inputs.*.comment"
7357
7356
  },
7358
7357
  "context": {
7359
7358
  "allOf": [
7360
7359
  {
7361
- "$ref": "#/definitions/context"
7360
+ "$ref": "#/definitions/type._inputs.*.context"
7362
7361
  }
7363
7362
  ]
7364
7363
  },
@@ -7366,28 +7365,28 @@
7366
7365
  "description": "Provides a custom link for documentation for editors shown above input.",
7367
7366
  "allOf": [
7368
7367
  {
7369
- "$ref": "#/definitions/documentation"
7368
+ "$ref": "#/definitions/type.documentation"
7370
7369
  }
7371
7370
  ],
7372
7371
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
7373
7372
  },
7374
7373
  "label": {
7375
- "$ref": "#/definitions/label"
7374
+ "$ref": "#/definitions/type._inputs.*.label"
7376
7375
  },
7377
7376
  "hidden": {
7378
- "$ref": "#/definitions/hidden"
7377
+ "$ref": "#/definitions/type._inputs.*.hidden"
7379
7378
  },
7380
7379
  "disabled": {
7381
- "$ref": "#/definitions/disabled"
7380
+ "$ref": "#/definitions/type._inputs.*.disabled"
7382
7381
  },
7383
7382
  "instance_value": {
7384
- "$ref": "#/definitions/instance_value"
7383
+ "$ref": "#/definitions/type._inputs.*.instance_value"
7385
7384
  },
7386
7385
  "disable_instance_value_rehydration": {
7387
- "$ref": "#/definitions/disable_instance_value_rehydration"
7386
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
7388
7387
  },
7389
7388
  "cascade": {
7390
- "$ref": "#/definitions/cascade"
7389
+ "$ref": "#/definitions/type._inputs.*.cascade"
7391
7390
  },
7392
7391
  "type": {
7393
7392
  "title": "Type",
@@ -7401,63 +7400,63 @@
7401
7400
  "type": "object",
7402
7401
  "properties": {
7403
7402
  "mime_type": {
7404
- "$ref": "#/definitions/mime_type"
7403
+ "$ref": "#/definitions/type._inputs.*.options.mime_type"
7405
7404
  },
7406
7405
  "resize_style": {
7407
- "$ref": "#/definitions/resize_style"
7406
+ "$ref": "#/definitions/type._inputs.*.options.resize_style"
7408
7407
  },
7409
7408
  "width": {
7410
- "$ref": "#/definitions/width"
7409
+ "$ref": "#/definitions/type._inputs.*.options.width"
7411
7410
  },
7412
7411
  "height": {
7413
- "$ref": "#/definitions/height"
7412
+ "$ref": "#/definitions/type._inputs.*.options.height"
7414
7413
  },
7415
7414
  "expandable": {
7416
- "$ref": "#/definitions/expandable"
7415
+ "$ref": "#/definitions/type._inputs.*.options.expandable"
7417
7416
  },
7418
7417
  "image_size_attributes": {
7419
- "$ref": "#/definitions/image_size_attributes"
7418
+ "$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
7420
7419
  },
7421
7420
  "allowed_sources": {
7422
- "$ref": "#/definitions/allowed_sources"
7421
+ "$ref": "#/definitions/type._inputs.*.options.allowed_sources"
7423
7422
  },
7424
7423
  "prevent_resize_existing_files": {
7425
- "$ref": "#/definitions/prevent_resize_existing_files"
7424
+ "$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
7426
7425
  },
7427
7426
  "sizes": {
7428
- "$ref": "#/definitions/sizes"
7427
+ "$ref": "#/definitions/type._inputs.*.options.sizes"
7429
7428
  },
7430
7429
  "max_length": {
7431
- "$ref": "#/definitions/max_length"
7430
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
7432
7431
  },
7433
7432
  "max_length_message": {
7434
- "$ref": "#/definitions/max_length_message"
7433
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
7435
7434
  },
7436
7435
  "min_length": {
7437
- "$ref": "#/definitions/min_length"
7436
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
7438
7437
  },
7439
7438
  "min_length_message": {
7440
- "$ref": "#/definitions/min_length_message"
7439
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
7441
7440
  },
7442
7441
  "pattern": {
7443
- "$ref": "#/definitions/pattern"
7442
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
7444
7443
  },
7445
7444
  "pattern_message": {
7446
- "$ref": "#/definitions/pattern_message"
7445
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
7447
7446
  },
7448
7447
  "pattern_flags": {
7449
- "$ref": "#/definitions/pattern_flags"
7448
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
7450
7449
  },
7451
7450
  "required": {
7452
- "$ref": "#/definitions/required"
7451
+ "$ref": "#/definitions/type._inputs.*.options.required"
7453
7452
  },
7454
7453
  "required_message": {
7455
- "$ref": "#/definitions/required_message"
7454
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
7456
7455
  },
7457
7456
  "empty_type": {
7458
7457
  "allOf": [
7459
7458
  {
7460
- "$ref": "#/definitions/empty_type_text"
7459
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
7461
7460
  }
7462
7461
  ]
7463
7462
  },
@@ -7469,22 +7468,22 @@
7469
7468
  ]
7470
7469
  },
7471
7470
  "accepts_mime_types": {
7472
- "$ref": "#/definitions/accepts_mime_types"
7471
+ "$ref": "#/definitions/type._inputs.*.options.accepts_mime_types"
7473
7472
  },
7474
7473
  "max_file_size": {
7475
- "$ref": "#/definitions/max_file_size"
7474
+ "$ref": "#/definitions/type._inputs.*.options.max_file_size"
7476
7475
  },
7477
7476
  "max_file_size_message": {
7478
- "$ref": "#/definitions/max_file_size_message"
7477
+ "$ref": "#/definitions/type._inputs.*.options.max_file_size_message"
7479
7478
  },
7480
7479
  "disable_upload_file": {
7481
- "$ref": "#/definitions/disable_upload_file"
7480
+ "$ref": "#/definitions/type._inputs.*.options.disable_upload_file"
7482
7481
  },
7483
7482
  "disable_direct_input": {
7484
- "$ref": "#/definitions/disable_direct_input"
7483
+ "$ref": "#/definitions/type._inputs.*.options.disable_direct_input"
7485
7484
  },
7486
7485
  "disable_upload_file_in_file_browser": {
7487
- "$ref": "#/definitions/disable_upload_file_in_file_browser"
7486
+ "$ref": "#/definitions/type._inputs.*.options.disable_upload_file_in_file_browser"
7488
7487
  },
7489
7488
  "hide_link_to_file": {
7490
7489
  "description": "Hides the options to link to an existing file, and upload a new file. This does not prevent typing a file path in the input.",
@@ -7527,12 +7526,12 @@
7527
7526
  "type": "object",
7528
7527
  "properties": {
7529
7528
  "comment": {
7530
- "$ref": "#/definitions/comment"
7529
+ "$ref": "#/definitions/type._inputs.*.comment"
7531
7530
  },
7532
7531
  "context": {
7533
7532
  "allOf": [
7534
7533
  {
7535
- "$ref": "#/definitions/context"
7534
+ "$ref": "#/definitions/type._inputs.*.context"
7536
7535
  }
7537
7536
  ]
7538
7537
  },
@@ -7540,28 +7539,28 @@
7540
7539
  "description": "Provides a custom link for documentation for editors shown above input.",
7541
7540
  "allOf": [
7542
7541
  {
7543
- "$ref": "#/definitions/documentation"
7542
+ "$ref": "#/definitions/type.documentation"
7544
7543
  }
7545
7544
  ],
7546
7545
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
7547
7546
  },
7548
7547
  "label": {
7549
- "$ref": "#/definitions/label"
7548
+ "$ref": "#/definitions/type._inputs.*.label"
7550
7549
  },
7551
7550
  "hidden": {
7552
- "$ref": "#/definitions/hidden"
7551
+ "$ref": "#/definitions/type._inputs.*.hidden"
7553
7552
  },
7554
7553
  "disabled": {
7555
- "$ref": "#/definitions/disabled"
7554
+ "$ref": "#/definitions/type._inputs.*.disabled"
7556
7555
  },
7557
7556
  "instance_value": {
7558
- "$ref": "#/definitions/instance_value"
7557
+ "$ref": "#/definitions/type._inputs.*.instance_value"
7559
7558
  },
7560
7559
  "disable_instance_value_rehydration": {
7561
- "$ref": "#/definitions/disable_instance_value_rehydration"
7560
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
7562
7561
  },
7563
7562
  "cascade": {
7564
- "$ref": "#/definitions/cascade"
7563
+ "$ref": "#/definitions/type._inputs.*.cascade"
7565
7564
  },
7566
7565
  "type": {
7567
7566
  "title": "Type",
@@ -7575,10 +7574,10 @@
7575
7574
  "type": "object",
7576
7575
  "properties": {
7577
7576
  "required": {
7578
- "$ref": "#/definitions/required"
7577
+ "$ref": "#/definitions/type._inputs.*.options.required"
7579
7578
  },
7580
7579
  "required_message": {
7581
- "$ref": "#/definitions/required_message"
7580
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
7582
7581
  },
7583
7582
  "preview": {
7584
7583
  "allOf": [
@@ -7595,48 +7594,48 @@
7595
7594
  ]
7596
7595
  },
7597
7596
  "allow_create": {
7598
- "$ref": "#/definitions/allow_create"
7597
+ "$ref": "#/definitions/type._inputs.*.options.allow_create"
7599
7598
  },
7600
7599
  "allow_empty": {
7601
- "$ref": "#/definitions/allow_empty"
7600
+ "$ref": "#/definitions/type._inputs.*.options.allow_empty"
7602
7601
  },
7603
7602
  "values": {
7604
- "$ref": "#/definitions/values"
7603
+ "$ref": "#/definitions/type._inputs.*.options.values"
7605
7604
  },
7606
7605
  "value_key": {
7607
- "$ref": "#/definitions/value_key"
7606
+ "$ref": "#/definitions/type._inputs.*.options.value_key"
7608
7607
  },
7609
7608
  "view": {
7610
- "$ref": "#/definitions/view"
7609
+ "$ref": "#/definitions/type._inputs.*.options.view"
7611
7610
  },
7612
7611
  "picker_view": {
7613
- "$ref": "#/definitions/picker_view"
7612
+ "$ref": "#/definitions/type._inputs.*.options.picker_view"
7614
7613
  },
7615
7614
  "max_length": {
7616
- "$ref": "#/definitions/max_length"
7615
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
7617
7616
  },
7618
7617
  "max_length_message": {
7619
- "$ref": "#/definitions/max_length_message"
7618
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
7620
7619
  },
7621
7620
  "min_length": {
7622
- "$ref": "#/definitions/min_length"
7621
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
7623
7622
  },
7624
7623
  "min_length_message": {
7625
- "$ref": "#/definitions/min_length_message"
7624
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
7626
7625
  },
7627
7626
  "pattern": {
7628
- "$ref": "#/definitions/pattern"
7627
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
7629
7628
  },
7630
7629
  "pattern_message": {
7631
- "$ref": "#/definitions/pattern_message"
7630
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
7632
7631
  },
7633
7632
  "pattern_flags": {
7634
- "$ref": "#/definitions/pattern_flags"
7633
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
7635
7634
  },
7636
7635
  "empty_type": {
7637
7636
  "allOf": [
7638
7637
  {
7639
- "$ref": "#/definitions/empty_type_text"
7638
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
7640
7639
  }
7641
7640
  ]
7642
7641
  }
@@ -7651,19 +7650,19 @@
7651
7650
  "additionalProperties": false,
7652
7651
  "markdownDescription": "Provides an editing interface for data with multiple predefined options. Select inputs only allow one value."
7653
7652
  },
7654
- "allow_create": {
7653
+ "type._inputs.*.options.allow_create": {
7655
7654
  "description": "Allows new text values to be created at edit time.",
7656
7655
  "default": false,
7657
7656
  "type": "boolean",
7658
7657
  "markdownDescription": "Allows new text values to be created at edit time."
7659
7658
  },
7660
- "allow_empty": {
7659
+ "type._inputs.*.options.allow_empty": {
7661
7660
  "description": "Provides an empty option alongside the options provided by values.",
7662
7661
  "default": true,
7663
7662
  "type": "boolean",
7664
7663
  "markdownDescription": "Provides an empty option alongside the options provided by values."
7665
7664
  },
7666
- "values": {
7665
+ "type._inputs.*.options.values": {
7667
7666
  "description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
7668
7667
  "anyOf": [
7669
7668
  {
@@ -7717,12 +7716,12 @@
7717
7716
  ],
7718
7717
  "markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors)."
7719
7718
  },
7720
- "value_key": {
7719
+ "type._inputs.*.options.value_key": {
7721
7720
  "description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
7722
7721
  "type": "string",
7723
7722
  "markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types."
7724
7723
  },
7725
- "view": {
7724
+ "type._inputs.*.options.view": {
7726
7725
  "description": "Controls how selected items are rendered.",
7727
7726
  "type": "string",
7728
7727
  "enum": [
@@ -7733,7 +7732,7 @@
7733
7732
  ],
7734
7733
  "markdownDescription": "Controls how selected items are rendered."
7735
7734
  },
7736
- "picker_view": {
7735
+ "type._inputs.*.options.picker_view": {
7737
7736
  "description": "Controls how selectable options are rendered.",
7738
7737
  "type": "string",
7739
7738
  "enum": [
@@ -7750,12 +7749,12 @@
7750
7749
  "type": "object",
7751
7750
  "properties": {
7752
7751
  "comment": {
7753
- "$ref": "#/definitions/comment"
7752
+ "$ref": "#/definitions/type._inputs.*.comment"
7754
7753
  },
7755
7754
  "context": {
7756
7755
  "allOf": [
7757
7756
  {
7758
- "$ref": "#/definitions/context"
7757
+ "$ref": "#/definitions/type._inputs.*.context"
7759
7758
  }
7760
7759
  ]
7761
7760
  },
@@ -7763,28 +7762,28 @@
7763
7762
  "description": "Provides a custom link for documentation for editors shown above input.",
7764
7763
  "allOf": [
7765
7764
  {
7766
- "$ref": "#/definitions/documentation"
7765
+ "$ref": "#/definitions/type.documentation"
7767
7766
  }
7768
7767
  ],
7769
7768
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
7770
7769
  },
7771
7770
  "label": {
7772
- "$ref": "#/definitions/label"
7771
+ "$ref": "#/definitions/type._inputs.*.label"
7773
7772
  },
7774
7773
  "hidden": {
7775
- "$ref": "#/definitions/hidden"
7774
+ "$ref": "#/definitions/type._inputs.*.hidden"
7776
7775
  },
7777
7776
  "disabled": {
7778
- "$ref": "#/definitions/disabled"
7777
+ "$ref": "#/definitions/type._inputs.*.disabled"
7779
7778
  },
7780
7779
  "instance_value": {
7781
- "$ref": "#/definitions/instance_value"
7780
+ "$ref": "#/definitions/type._inputs.*.instance_value"
7782
7781
  },
7783
7782
  "disable_instance_value_rehydration": {
7784
- "$ref": "#/definitions/disable_instance_value_rehydration"
7783
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
7785
7784
  },
7786
7785
  "cascade": {
7787
- "$ref": "#/definitions/cascade"
7786
+ "$ref": "#/definitions/type._inputs.*.cascade"
7788
7787
  },
7789
7788
  "type": {
7790
7789
  "title": "Type",
@@ -7798,10 +7797,10 @@
7798
7797
  "type": "object",
7799
7798
  "properties": {
7800
7799
  "required": {
7801
- "$ref": "#/definitions/required"
7800
+ "$ref": "#/definitions/type._inputs.*.options.required"
7802
7801
  },
7803
7802
  "required_message": {
7804
- "$ref": "#/definitions/required_message"
7803
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
7805
7804
  },
7806
7805
  "preview": {
7807
7806
  "allOf": [
@@ -7818,45 +7817,45 @@
7818
7817
  ]
7819
7818
  },
7820
7819
  "allow_create": {
7821
- "$ref": "#/definitions/allow_create"
7820
+ "$ref": "#/definitions/type._inputs.*.options.allow_create"
7822
7821
  },
7823
7822
  "allow_empty": {
7824
- "$ref": "#/definitions/allow_empty"
7823
+ "$ref": "#/definitions/type._inputs.*.options.allow_empty"
7825
7824
  },
7826
7825
  "values": {
7827
- "$ref": "#/definitions/values"
7826
+ "$ref": "#/definitions/type._inputs.*.options.values"
7828
7827
  },
7829
7828
  "value_key": {
7830
- "$ref": "#/definitions/value_key"
7829
+ "$ref": "#/definitions/type._inputs.*.options.value_key"
7831
7830
  },
7832
7831
  "view": {
7833
- "$ref": "#/definitions/view"
7832
+ "$ref": "#/definitions/type._inputs.*.options.view"
7834
7833
  },
7835
7834
  "picker_view": {
7836
- "$ref": "#/definitions/picker_view"
7835
+ "$ref": "#/definitions/type._inputs.*.options.picker_view"
7837
7836
  },
7838
7837
  "max_items": {
7839
- "$ref": "#/definitions/max_items"
7838
+ "$ref": "#/definitions/type._inputs.*.options.max_items"
7840
7839
  },
7841
7840
  "max_items_message": {
7842
- "$ref": "#/definitions/max_items_message"
7841
+ "$ref": "#/definitions/type._inputs.*.options.max_items_message"
7843
7842
  },
7844
7843
  "min_items": {
7845
- "$ref": "#/definitions/min_items"
7844
+ "$ref": "#/definitions/type._inputs.*.options.min_items"
7846
7845
  },
7847
7846
  "min_items_message": {
7848
- "$ref": "#/definitions/min_items_message"
7847
+ "$ref": "#/definitions/type._inputs.*.options.min_items_message"
7849
7848
  },
7850
7849
  "unique_on": {
7851
- "$ref": "#/definitions/unique_on"
7850
+ "$ref": "#/definitions/type._inputs.*.options.unique_on"
7852
7851
  },
7853
7852
  "unique_on_message": {
7854
- "$ref": "#/definitions/unique_on_message"
7853
+ "$ref": "#/definitions/type._inputs.*.options.unique_on_message"
7855
7854
  },
7856
7855
  "empty_type": {
7857
7856
  "allOf": [
7858
7857
  {
7859
- "$ref": "#/definitions/empty_type_array"
7858
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_array"
7860
7859
  }
7861
7860
  ]
7862
7861
  }
@@ -7871,37 +7870,37 @@
7871
7870
  "additionalProperties": false,
7872
7871
  "markdownDescription": "Provides an editing interface for data with multiple predefined options. Multiselect inputs allow several values."
7873
7872
  },
7874
- "max_items": {
7873
+ "type._inputs.*.options.max_items": {
7875
7874
  "description": "This key defines the maximum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from adding more items to this Input. If the Input already contains more items, CloudCannon will require you to remove items until the Input contains a valid number to save your changes, or discard your unsaved changes.",
7876
7875
  "type": "number",
7877
7876
  "markdownDescription": "This key defines the maximum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from adding more items to this Input. If the Input already contains more items, CloudCannon will require you to remove items until the Input contains a valid number to save your changes, or discard your unsaved changes."
7878
7877
  },
7879
- "max_items_message": {
7878
+ "type._inputs.*.options.max_items_message": {
7880
7879
  "description": "This key defines the message that explains why an Input needs to have a maximum number of items. This key requires you to define `options.max_items`.",
7881
7880
  "type": "string",
7882
7881
  "markdownDescription": "This key defines the message that explains why an Input needs to have a maximum number of items. This key requires you to define `options.max_items`."
7883
7882
  },
7884
- "min_items": {
7883
+ "type._inputs.*.options.min_items": {
7885
7884
  "description": "This key defines the minimum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from removing items from this Input below this value. If the Input already contains fewer items, CloudCannon will require you to add items until the Input contains a valid number to save your changes, or discard your unsaved changes.",
7886
7885
  "type": "number",
7887
7886
  "markdownDescription": "This key defines the minimum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from removing items from this Input below this value. If the Input already contains fewer items, CloudCannon will require you to add items until the Input contains a valid number to save your changes, or discard your unsaved changes."
7888
7887
  },
7889
- "min_items_message": {
7888
+ "type._inputs.*.options.min_items_message": {
7890
7889
  "description": "This key defines the message that explains why an Input needs to have a minimum number of items. This key requires you to define `options.min_items`.",
7891
7890
  "type": "string",
7892
7891
  "markdownDescription": "This key defines the message that explains why an Input needs to have a minimum number of items. This key requires you to define `options.min_items`."
7893
7892
  },
7894
- "unique_on": {
7893
+ "type._inputs.*.options.unique_on": {
7895
7894
  "description": "This key defines the JSON Path selector that CloudCannon should use to determine if the value of an Input is unique. When configured, CloudCannon will require the value of the Input to be unique compared to the value defined on the JSON Path. If the Input already contains a non-unique value, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes.",
7896
7895
  "type": "string",
7897
7896
  "markdownDescription": "This key defines the JSON Path selector that CloudCannon should use to determine if the value of an Input is unique. When configured, CloudCannon will require the value of the Input to be unique compared to the value defined on the JSON Path. If the Input already contains a non-unique value, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes."
7898
7897
  },
7899
- "unique_on_message": {
7898
+ "type._inputs.*.options.unique_on_message": {
7900
7899
  "description": "This key defines the message that explains why an Input needs to be unique. This key requires you to define `options.unique_on`.",
7901
7900
  "type": "string",
7902
7901
  "markdownDescription": "This key defines the message that explains why an Input needs to be unique. This key requires you to define `options.unique_on`."
7903
7902
  },
7904
- "empty_type_array": {
7903
+ "type._inputs.*.options.empty_type_array": {
7905
7904
  "description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
7906
7905
  "default": "null",
7907
7906
  "type": "string",
@@ -7917,12 +7916,12 @@
7917
7916
  "type": "object",
7918
7917
  "properties": {
7919
7918
  "comment": {
7920
- "$ref": "#/definitions/comment"
7919
+ "$ref": "#/definitions/type._inputs.*.comment"
7921
7920
  },
7922
7921
  "context": {
7923
7922
  "allOf": [
7924
7923
  {
7925
- "$ref": "#/definitions/context"
7924
+ "$ref": "#/definitions/type._inputs.*.context"
7926
7925
  }
7927
7926
  ]
7928
7927
  },
@@ -7930,28 +7929,28 @@
7930
7929
  "description": "Provides a custom link for documentation for editors shown above input.",
7931
7930
  "allOf": [
7932
7931
  {
7933
- "$ref": "#/definitions/documentation"
7932
+ "$ref": "#/definitions/type.documentation"
7934
7933
  }
7935
7934
  ],
7936
7935
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
7937
7936
  },
7938
7937
  "label": {
7939
- "$ref": "#/definitions/label"
7938
+ "$ref": "#/definitions/type._inputs.*.label"
7940
7939
  },
7941
7940
  "hidden": {
7942
- "$ref": "#/definitions/hidden"
7941
+ "$ref": "#/definitions/type._inputs.*.hidden"
7943
7942
  },
7944
7943
  "disabled": {
7945
- "$ref": "#/definitions/disabled"
7944
+ "$ref": "#/definitions/type._inputs.*.disabled"
7946
7945
  },
7947
7946
  "instance_value": {
7948
- "$ref": "#/definitions/instance_value"
7947
+ "$ref": "#/definitions/type._inputs.*.instance_value"
7949
7948
  },
7950
7949
  "disable_instance_value_rehydration": {
7951
- "$ref": "#/definitions/disable_instance_value_rehydration"
7950
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
7952
7951
  },
7953
7952
  "cascade": {
7954
- "$ref": "#/definitions/cascade"
7953
+ "$ref": "#/definitions/type._inputs.*.cascade"
7955
7954
  },
7956
7955
  "type": {
7957
7956
  "title": "Type",
@@ -7965,10 +7964,10 @@
7965
7964
  "type": "object",
7966
7965
  "properties": {
7967
7966
  "required": {
7968
- "$ref": "#/definitions/required"
7967
+ "$ref": "#/definitions/type._inputs.*.options.required"
7969
7968
  },
7970
7969
  "required_message": {
7971
- "$ref": "#/definitions/required_message"
7970
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
7972
7971
  },
7973
7972
  "preview": {
7974
7973
  "allOf": [
@@ -7985,45 +7984,45 @@
7985
7984
  ]
7986
7985
  },
7987
7986
  "allow_empty": {
7988
- "$ref": "#/definitions/allow_empty"
7987
+ "$ref": "#/definitions/type._inputs.*.options.allow_empty"
7989
7988
  },
7990
7989
  "values": {
7991
- "$ref": "#/definitions/values"
7990
+ "$ref": "#/definitions/type._inputs.*.options.values"
7992
7991
  },
7993
7992
  "value_key": {
7994
- "$ref": "#/definitions/value_key"
7993
+ "$ref": "#/definitions/type._inputs.*.options.value_key"
7995
7994
  },
7996
7995
  "view": {
7997
- "$ref": "#/definitions/view"
7996
+ "$ref": "#/definitions/type._inputs.*.options.view"
7998
7997
  },
7999
7998
  "picker_view": {
8000
- "$ref": "#/definitions/picker_view"
7999
+ "$ref": "#/definitions/type._inputs.*.options.picker_view"
8001
8000
  },
8002
8001
  "max_length": {
8003
- "$ref": "#/definitions/max_length"
8002
+ "$ref": "#/definitions/type._inputs.*.options.max_length"
8004
8003
  },
8005
8004
  "max_length_message": {
8006
- "$ref": "#/definitions/max_length_message"
8005
+ "$ref": "#/definitions/type._inputs.*.options.max_length_message"
8007
8006
  },
8008
8007
  "min_length": {
8009
- "$ref": "#/definitions/min_length"
8008
+ "$ref": "#/definitions/type._inputs.*.options.min_length"
8010
8009
  },
8011
8010
  "min_length_message": {
8012
- "$ref": "#/definitions/min_length_message"
8011
+ "$ref": "#/definitions/type._inputs.*.options.min_length_message"
8013
8012
  },
8014
8013
  "pattern": {
8015
- "$ref": "#/definitions/pattern"
8014
+ "$ref": "#/definitions/type._inputs.*.options.pattern"
8016
8015
  },
8017
8016
  "pattern_message": {
8018
- "$ref": "#/definitions/pattern_message"
8017
+ "$ref": "#/definitions/type._inputs.*.options.pattern_message"
8019
8018
  },
8020
8019
  "pattern_flags": {
8021
- "$ref": "#/definitions/pattern_flags"
8020
+ "$ref": "#/definitions/type._inputs.*.options.pattern_flags"
8022
8021
  },
8023
8022
  "empty_type": {
8024
8023
  "allOf": [
8025
8024
  {
8026
- "$ref": "#/definitions/empty_type_text"
8025
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_text"
8027
8026
  }
8028
8027
  ]
8029
8028
  }
@@ -8044,12 +8043,12 @@
8044
8043
  "type": "object",
8045
8044
  "properties": {
8046
8045
  "comment": {
8047
- "$ref": "#/definitions/comment"
8046
+ "$ref": "#/definitions/type._inputs.*.comment"
8048
8047
  },
8049
8048
  "context": {
8050
8049
  "allOf": [
8051
8050
  {
8052
- "$ref": "#/definitions/context"
8051
+ "$ref": "#/definitions/type._inputs.*.context"
8053
8052
  }
8054
8053
  ]
8055
8054
  },
@@ -8057,28 +8056,28 @@
8057
8056
  "description": "Provides a custom link for documentation for editors shown above input.",
8058
8057
  "allOf": [
8059
8058
  {
8060
- "$ref": "#/definitions/documentation"
8059
+ "$ref": "#/definitions/type.documentation"
8061
8060
  }
8062
8061
  ],
8063
8062
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
8064
8063
  },
8065
8064
  "label": {
8066
- "$ref": "#/definitions/label"
8065
+ "$ref": "#/definitions/type._inputs.*.label"
8067
8066
  },
8068
8067
  "hidden": {
8069
- "$ref": "#/definitions/hidden"
8068
+ "$ref": "#/definitions/type._inputs.*.hidden"
8070
8069
  },
8071
8070
  "disabled": {
8072
- "$ref": "#/definitions/disabled"
8071
+ "$ref": "#/definitions/type._inputs.*.disabled"
8073
8072
  },
8074
8073
  "instance_value": {
8075
- "$ref": "#/definitions/instance_value"
8074
+ "$ref": "#/definitions/type._inputs.*.instance_value"
8076
8075
  },
8077
8076
  "disable_instance_value_rehydration": {
8078
- "$ref": "#/definitions/disable_instance_value_rehydration"
8077
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
8079
8078
  },
8080
8079
  "cascade": {
8081
- "$ref": "#/definitions/cascade"
8080
+ "$ref": "#/definitions/type._inputs.*.cascade"
8082
8081
  },
8083
8082
  "type": {
8084
8083
  "title": "Type",
@@ -8092,10 +8091,10 @@
8092
8091
  "type": "object",
8093
8092
  "properties": {
8094
8093
  "required": {
8095
- "$ref": "#/definitions/required"
8094
+ "$ref": "#/definitions/type._inputs.*.options.required"
8096
8095
  },
8097
8096
  "required_message": {
8098
- "$ref": "#/definitions/required_message"
8097
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
8099
8098
  },
8100
8099
  "preview": {
8101
8100
  "allOf": [
@@ -8112,42 +8111,42 @@
8112
8111
  ]
8113
8112
  },
8114
8113
  "allow_empty": {
8115
- "$ref": "#/definitions/allow_empty"
8114
+ "$ref": "#/definitions/type._inputs.*.options.allow_empty"
8116
8115
  },
8117
8116
  "values": {
8118
- "$ref": "#/definitions/values"
8117
+ "$ref": "#/definitions/type._inputs.*.options.values"
8119
8118
  },
8120
8119
  "value_key": {
8121
- "$ref": "#/definitions/value_key"
8120
+ "$ref": "#/definitions/type._inputs.*.options.value_key"
8122
8121
  },
8123
8122
  "view": {
8124
- "$ref": "#/definitions/view"
8123
+ "$ref": "#/definitions/type._inputs.*.options.view"
8125
8124
  },
8126
8125
  "picker_view": {
8127
- "$ref": "#/definitions/picker_view"
8126
+ "$ref": "#/definitions/type._inputs.*.options.picker_view"
8128
8127
  },
8129
8128
  "max_items": {
8130
- "$ref": "#/definitions/max_items"
8129
+ "$ref": "#/definitions/type._inputs.*.options.max_items"
8131
8130
  },
8132
8131
  "max_items_message": {
8133
- "$ref": "#/definitions/max_items_message"
8132
+ "$ref": "#/definitions/type._inputs.*.options.max_items_message"
8134
8133
  },
8135
8134
  "min_items": {
8136
- "$ref": "#/definitions/min_items"
8135
+ "$ref": "#/definitions/type._inputs.*.options.min_items"
8137
8136
  },
8138
8137
  "min_items_message": {
8139
- "$ref": "#/definitions/min_items_message"
8138
+ "$ref": "#/definitions/type._inputs.*.options.min_items_message"
8140
8139
  },
8141
8140
  "unique_on": {
8142
- "$ref": "#/definitions/unique_on"
8141
+ "$ref": "#/definitions/type._inputs.*.options.unique_on"
8143
8142
  },
8144
8143
  "unique_on_message": {
8145
- "$ref": "#/definitions/unique_on_message"
8144
+ "$ref": "#/definitions/type._inputs.*.options.unique_on_message"
8146
8145
  },
8147
8146
  "empty_type": {
8148
8147
  "allOf": [
8149
8148
  {
8150
- "$ref": "#/definitions/empty_type_array"
8149
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_array"
8151
8150
  }
8152
8151
  ]
8153
8152
  }
@@ -8168,12 +8167,12 @@
8168
8167
  "type": "object",
8169
8168
  "properties": {
8170
8169
  "comment": {
8171
- "$ref": "#/definitions/comment"
8170
+ "$ref": "#/definitions/type._inputs.*.comment"
8172
8171
  },
8173
8172
  "context": {
8174
8173
  "allOf": [
8175
8174
  {
8176
- "$ref": "#/definitions/context"
8175
+ "$ref": "#/definitions/type._inputs.*.context"
8177
8176
  }
8178
8177
  ]
8179
8178
  },
@@ -8181,28 +8180,28 @@
8181
8180
  "description": "Provides a custom link for documentation for editors shown above input.",
8182
8181
  "allOf": [
8183
8182
  {
8184
- "$ref": "#/definitions/documentation"
8183
+ "$ref": "#/definitions/type.documentation"
8185
8184
  }
8186
8185
  ],
8187
8186
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
8188
8187
  },
8189
8188
  "label": {
8190
- "$ref": "#/definitions/label"
8189
+ "$ref": "#/definitions/type._inputs.*.label"
8191
8190
  },
8192
8191
  "hidden": {
8193
- "$ref": "#/definitions/hidden"
8192
+ "$ref": "#/definitions/type._inputs.*.hidden"
8194
8193
  },
8195
8194
  "disabled": {
8196
- "$ref": "#/definitions/disabled"
8195
+ "$ref": "#/definitions/type._inputs.*.disabled"
8197
8196
  },
8198
8197
  "instance_value": {
8199
- "$ref": "#/definitions/instance_value"
8198
+ "$ref": "#/definitions/type._inputs.*.instance_value"
8200
8199
  },
8201
8200
  "disable_instance_value_rehydration": {
8202
- "$ref": "#/definitions/disable_instance_value_rehydration"
8201
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
8203
8202
  },
8204
8203
  "cascade": {
8205
- "$ref": "#/definitions/cascade"
8204
+ "$ref": "#/definitions/type._inputs.*.cascade"
8206
8205
  },
8207
8206
  "type": {
8208
8207
  "title": "Type",
@@ -8216,15 +8215,15 @@
8216
8215
  "type": "object",
8217
8216
  "properties": {
8218
8217
  "required": {
8219
- "$ref": "#/definitions/required"
8218
+ "$ref": "#/definitions/type._inputs.*.options.required"
8220
8219
  },
8221
8220
  "required_message": {
8222
- "$ref": "#/definitions/required_message"
8221
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
8223
8222
  },
8224
8223
  "empty_type": {
8225
8224
  "allOf": [
8226
8225
  {
8227
- "$ref": "#/definitions/empty_type_object"
8226
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_object"
8228
8227
  }
8229
8228
  ]
8230
8229
  },
@@ -8287,7 +8286,13 @@
8287
8286
  "$ref": "#/definitions/entries_comment"
8288
8287
  },
8289
8288
  "documentation": {
8290
- "$ref": "#/definitions/entries_documentation"
8289
+ "description": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input.",
8290
+ "allOf": [
8291
+ {
8292
+ "$ref": "#/definitions/type.documentation"
8293
+ }
8294
+ ],
8295
+ "markdownDescription": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input."
8291
8296
  }
8292
8297
  },
8293
8298
  "additionalProperties": false,
@@ -8327,7 +8332,7 @@
8327
8332
  "description": "Provides a custom link for documentation for editors shown above the collection file list.",
8328
8333
  "allOf": [
8329
8334
  {
8330
- "$ref": "#/definitions/documentation"
8335
+ "$ref": "#/definitions/type.documentation"
8331
8336
  }
8332
8337
  ],
8333
8338
  "markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
@@ -8382,7 +8387,7 @@
8382
8387
  "additionalProperties": false,
8383
8388
  "markdownDescription": "Provides a user interface for a group of inputs."
8384
8389
  },
8385
- "empty_type_object": {
8390
+ "type._inputs.*.options.empty_type_object": {
8386
8391
  "description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
8387
8392
  "default": "null",
8388
8393
  "type": "string",
@@ -8403,27 +8408,18 @@
8403
8408
  "type": "string",
8404
8409
  "markdownDescription": "Used to supply help text above the key input when adding/renaming within a mutable object input. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript and inline code elements are allowed."
8405
8410
  },
8406
- "entries_documentation": {
8407
- "description": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input.",
8408
- "allOf": [
8409
- {
8410
- "$ref": "#/definitions/documentation"
8411
- }
8412
- ],
8413
- "markdownDescription": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input."
8414
- },
8415
8411
  "ArrayInput": {
8416
8412
  "title": "Array Input",
8417
8413
  "description": "Provides a user interface for lists of inputs or input groups.",
8418
8414
  "type": "object",
8419
8415
  "properties": {
8420
8416
  "comment": {
8421
- "$ref": "#/definitions/comment"
8417
+ "$ref": "#/definitions/type._inputs.*.comment"
8422
8418
  },
8423
8419
  "context": {
8424
8420
  "allOf": [
8425
8421
  {
8426
- "$ref": "#/definitions/context"
8422
+ "$ref": "#/definitions/type._inputs.*.context"
8427
8423
  }
8428
8424
  ]
8429
8425
  },
@@ -8431,28 +8427,28 @@
8431
8427
  "description": "Provides a custom link for documentation for editors shown above input.",
8432
8428
  "allOf": [
8433
8429
  {
8434
- "$ref": "#/definitions/documentation"
8430
+ "$ref": "#/definitions/type.documentation"
8435
8431
  }
8436
8432
  ],
8437
8433
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
8438
8434
  },
8439
8435
  "label": {
8440
- "$ref": "#/definitions/label"
8436
+ "$ref": "#/definitions/type._inputs.*.label"
8441
8437
  },
8442
8438
  "hidden": {
8443
- "$ref": "#/definitions/hidden"
8439
+ "$ref": "#/definitions/type._inputs.*.hidden"
8444
8440
  },
8445
8441
  "disabled": {
8446
- "$ref": "#/definitions/disabled"
8442
+ "$ref": "#/definitions/type._inputs.*.disabled"
8447
8443
  },
8448
8444
  "instance_value": {
8449
- "$ref": "#/definitions/instance_value"
8445
+ "$ref": "#/definitions/type._inputs.*.instance_value"
8450
8446
  },
8451
8447
  "disable_instance_value_rehydration": {
8452
- "$ref": "#/definitions/disable_instance_value_rehydration"
8448
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
8453
8449
  },
8454
8450
  "cascade": {
8455
- "$ref": "#/definitions/cascade"
8451
+ "$ref": "#/definitions/type._inputs.*.cascade"
8456
8452
  },
8457
8453
  "type": {
8458
8454
  "title": "Type",
@@ -8466,28 +8462,28 @@
8466
8462
  "type": "object",
8467
8463
  "properties": {
8468
8464
  "required": {
8469
- "$ref": "#/definitions/required"
8465
+ "$ref": "#/definitions/type._inputs.*.options.required"
8470
8466
  },
8471
8467
  "required_message": {
8472
- "$ref": "#/definitions/required_message"
8468
+ "$ref": "#/definitions/type._inputs.*.options.required_message"
8473
8469
  },
8474
8470
  "max_items": {
8475
- "$ref": "#/definitions/max_items"
8471
+ "$ref": "#/definitions/type._inputs.*.options.max_items"
8476
8472
  },
8477
8473
  "max_items_message": {
8478
- "$ref": "#/definitions/max_items_message"
8474
+ "$ref": "#/definitions/type._inputs.*.options.max_items_message"
8479
8475
  },
8480
8476
  "min_items": {
8481
- "$ref": "#/definitions/min_items"
8477
+ "$ref": "#/definitions/type._inputs.*.options.min_items"
8482
8478
  },
8483
8479
  "min_items_message": {
8484
- "$ref": "#/definitions/min_items_message"
8480
+ "$ref": "#/definitions/type._inputs.*.options.min_items_message"
8485
8481
  },
8486
8482
  "unique_on": {
8487
- "$ref": "#/definitions/unique_on"
8483
+ "$ref": "#/definitions/type._inputs.*.options.unique_on"
8488
8484
  },
8489
8485
  "unique_on_message": {
8490
- "$ref": "#/definitions/unique_on_message"
8486
+ "$ref": "#/definitions/type._inputs.*.options.unique_on_message"
8491
8487
  },
8492
8488
  "disable_add": {
8493
8489
  "$ref": "#/definitions/ArrayInput.disable_add"
@@ -8501,7 +8497,7 @@
8501
8497
  "empty_type": {
8502
8498
  "allOf": [
8503
8499
  {
8504
- "$ref": "#/definitions/empty_type_array"
8500
+ "$ref": "#/definitions/type._inputs.*.options.empty_type_array"
8505
8501
  }
8506
8502
  ]
8507
8503
  },
@@ -8553,12 +8549,12 @@
8553
8549
  "type": "object",
8554
8550
  "properties": {
8555
8551
  "comment": {
8556
- "$ref": "#/definitions/comment"
8552
+ "$ref": "#/definitions/type._inputs.*.comment"
8557
8553
  },
8558
8554
  "context": {
8559
8555
  "allOf": [
8560
8556
  {
8561
- "$ref": "#/definitions/context"
8557
+ "$ref": "#/definitions/type._inputs.*.context"
8562
8558
  }
8563
8559
  ]
8564
8560
  },
@@ -8566,28 +8562,28 @@
8566
8562
  "description": "Provides a custom link for documentation for editors shown above input.",
8567
8563
  "allOf": [
8568
8564
  {
8569
- "$ref": "#/definitions/documentation"
8565
+ "$ref": "#/definitions/type.documentation"
8570
8566
  }
8571
8567
  ],
8572
8568
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
8573
8569
  },
8574
8570
  "label": {
8575
- "$ref": "#/definitions/label"
8571
+ "$ref": "#/definitions/type._inputs.*.label"
8576
8572
  },
8577
8573
  "hidden": {
8578
- "$ref": "#/definitions/hidden"
8574
+ "$ref": "#/definitions/type._inputs.*.hidden"
8579
8575
  },
8580
8576
  "disabled": {
8581
- "$ref": "#/definitions/disabled"
8577
+ "$ref": "#/definitions/type._inputs.*.disabled"
8582
8578
  },
8583
8579
  "instance_value": {
8584
- "$ref": "#/definitions/instance_value"
8580
+ "$ref": "#/definitions/type._inputs.*.instance_value"
8585
8581
  },
8586
8582
  "disable_instance_value_rehydration": {
8587
- "$ref": "#/definitions/disable_instance_value_rehydration"
8583
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
8588
8584
  },
8589
8585
  "cascade": {
8590
- "$ref": "#/definitions/cascade"
8586
+ "$ref": "#/definitions/type._inputs.*.cascade"
8591
8587
  },
8592
8588
  "type": {
8593
8589
  "title": "Type",
@@ -8614,12 +8610,12 @@
8614
8610
  "type": "object",
8615
8611
  "properties": {
8616
8612
  "comment": {
8617
- "$ref": "#/definitions/comment"
8613
+ "$ref": "#/definitions/type._inputs.*.comment"
8618
8614
  },
8619
8615
  "context": {
8620
8616
  "allOf": [
8621
8617
  {
8622
- "$ref": "#/definitions/context"
8618
+ "$ref": "#/definitions/type._inputs.*.context"
8623
8619
  }
8624
8620
  ]
8625
8621
  },
@@ -8627,28 +8623,28 @@
8627
8623
  "description": "Provides a custom link for documentation for editors shown above input.",
8628
8624
  "allOf": [
8629
8625
  {
8630
- "$ref": "#/definitions/documentation"
8626
+ "$ref": "#/definitions/type.documentation"
8631
8627
  }
8632
8628
  ],
8633
8629
  "markdownDescription": "Provides a custom link for documentation for editors shown above input."
8634
8630
  },
8635
8631
  "label": {
8636
- "$ref": "#/definitions/label"
8632
+ "$ref": "#/definitions/type._inputs.*.label"
8637
8633
  },
8638
8634
  "hidden": {
8639
- "$ref": "#/definitions/hidden"
8635
+ "$ref": "#/definitions/type._inputs.*.hidden"
8640
8636
  },
8641
8637
  "disabled": {
8642
- "$ref": "#/definitions/disabled"
8638
+ "$ref": "#/definitions/type._inputs.*.disabled"
8643
8639
  },
8644
8640
  "instance_value": {
8645
- "$ref": "#/definitions/instance_value"
8641
+ "$ref": "#/definitions/type._inputs.*.instance_value"
8646
8642
  },
8647
8643
  "disable_instance_value_rehydration": {
8648
- "$ref": "#/definitions/disable_instance_value_rehydration"
8644
+ "$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
8649
8645
  },
8650
8646
  "cascade": {
8651
- "$ref": "#/definitions/cascade"
8647
+ "$ref": "#/definitions/type._inputs.*.cascade"
8652
8648
  },
8653
8649
  "options": {
8654
8650
  "description": "Options that are specific to this `type` of input.",
@@ -8658,6 +8654,12 @@
8658
8654
  "additionalProperties": false,
8659
8655
  "markdownDescription": "Provides a default user interface based on the data contained."
8660
8656
  },
8657
+ "type._inputs_from_glob": {
8658
+ "type": "array",
8659
+ "items": {
8660
+ "type": "string"
8661
+ }
8662
+ },
8661
8663
  "type._select_data": {
8662
8664
  "title": "Select Data",
8663
8665
  "description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
@@ -8708,6 +8710,12 @@
8708
8710
  "markdownDescription": "Data formats for populating select and multiselect input options, supporting arrays and objects."
8709
8711
  },
8710
8712
  "markdownDescription": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs."
8713
+ },
8714
+ "type._structures_from_glob": {
8715
+ "type": "array",
8716
+ "items": {
8717
+ "type": "string"
8718
+ }
8711
8719
  }
8712
8720
  }
8713
8721
  }