@cloudcannon/configuration-types 0.0.53 → 0.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cloudcannon-collections.schema.json +956 -2187
- package/dist/cloudcannon-config.documentation.schema.json +487 -488
- package/dist/cloudcannon-config.latest.schema.json +248 -248
- package/dist/cloudcannon-config.legacy-eleventy.schema.json +312 -315
- package/dist/cloudcannon-config.legacy-hugo.schema.json +312 -315
- package/dist/cloudcannon-config.legacy-jekyll.schema.json +312 -315
- package/dist/cloudcannon-config.legacy-reader.schema.json +313 -316
- package/dist/cloudcannon-editables.schema.json +196 -332
- package/dist/cloudcannon-initial-site-settings.documentation.schema.json +15 -15
- package/dist/cloudcannon-initial-site-settings.schema.json +9 -9
- package/dist/cloudcannon-inputs.schema.json +177 -179
- package/dist/cloudcannon-routing.documentation.schema.json +23 -23
- package/dist/cloudcannon-routing.schema.json +13 -13
- package/dist/cloudcannon-schemas.schema.json +173 -173
- package/dist/cloudcannon-snippets-definitions.schema.json +21 -21
- package/dist/cloudcannon-snippets-imports.schema.json +55 -55
- package/dist/cloudcannon-snippets.schema.json +177 -177
- package/dist/cloudcannon-structure-value.schema.json +534 -533
- package/dist/cloudcannon-structures.schema.json +177 -179
- package/dist/documentation.json +10 -7
- package/package.json +4 -4
- package/src/inputs.ts +1 -4
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"title": "Configuration",
|
|
4
|
-
"description": "The main CloudCannon configuration.",
|
|
5
|
-
"id": "type.Configuration",
|
|
6
3
|
"type": "object",
|
|
7
4
|
"properties": {
|
|
8
5
|
"paths": {
|
|
@@ -145,10 +142,11 @@
|
|
|
145
142
|
}
|
|
146
143
|
},
|
|
147
144
|
"additionalProperties": false,
|
|
145
|
+
"title": "Configuration",
|
|
146
|
+
"description": "The main CloudCannon configuration.",
|
|
147
|
+
"id": "type.Configuration",
|
|
148
148
|
"$defs": {
|
|
149
149
|
"type.paths": {
|
|
150
|
-
"id": "type.paths",
|
|
151
|
-
"title": "Paths",
|
|
152
150
|
"type": "object",
|
|
153
151
|
"properties": {
|
|
154
152
|
"static": {
|
|
@@ -173,7 +171,9 @@
|
|
|
173
171
|
"$ref": "#/$defs/paths.uploads_use_relative_path"
|
|
174
172
|
}
|
|
175
173
|
},
|
|
176
|
-
"additionalProperties": false
|
|
174
|
+
"additionalProperties": false,
|
|
175
|
+
"id": "type.paths",
|
|
176
|
+
"title": "Paths"
|
|
177
177
|
},
|
|
178
178
|
"paths.static": {
|
|
179
179
|
"id": "paths.static",
|
|
@@ -226,8 +226,6 @@
|
|
|
226
226
|
}
|
|
227
227
|
},
|
|
228
228
|
"collections_config.*": {
|
|
229
|
-
"id": "collections_config.*",
|
|
230
|
-
"title": "Collection Config",
|
|
231
229
|
"type": "object",
|
|
232
230
|
"properties": {
|
|
233
231
|
"path": {
|
|
@@ -271,8 +269,6 @@
|
|
|
271
269
|
"description": "This key defines the options for the Sort dropdown in a _Collection browser_. The first option listed is used as the default sort.",
|
|
272
270
|
"type": "array",
|
|
273
271
|
"items": {
|
|
274
|
-
"title": "SortOption",
|
|
275
|
-
"description": "A sort option for a Collection.",
|
|
276
272
|
"type": "object",
|
|
277
273
|
"properties": {
|
|
278
274
|
"label": {
|
|
@@ -280,8 +276,8 @@
|
|
|
280
276
|
"type": "string"
|
|
281
277
|
},
|
|
282
278
|
"key": {
|
|
283
|
-
"
|
|
284
|
-
"
|
|
279
|
+
"type": "string",
|
|
280
|
+
"description": "Defines what field contains the value to sort on inside each collection item's data."
|
|
285
281
|
},
|
|
286
282
|
"order": {
|
|
287
283
|
"description": "Controls which sort values come first.",
|
|
@@ -298,7 +294,9 @@
|
|
|
298
294
|
"required": [
|
|
299
295
|
"key"
|
|
300
296
|
],
|
|
301
|
-
"additionalProperties": false
|
|
297
|
+
"additionalProperties": false,
|
|
298
|
+
"title": "SortOption",
|
|
299
|
+
"description": "A sort option for a Collection."
|
|
302
300
|
}
|
|
303
301
|
},
|
|
304
302
|
"view_options": {
|
|
@@ -324,8 +322,6 @@
|
|
|
324
322
|
"items": {
|
|
325
323
|
"anyOf": [
|
|
326
324
|
{
|
|
327
|
-
"title": "Add Option",
|
|
328
|
-
"description": "An option for the add menu.",
|
|
329
325
|
"type": "object",
|
|
330
326
|
"properties": {
|
|
331
327
|
"name": {
|
|
@@ -357,11 +353,11 @@
|
|
|
357
353
|
"type": "string"
|
|
358
354
|
}
|
|
359
355
|
},
|
|
360
|
-
"additionalProperties": false
|
|
356
|
+
"additionalProperties": false,
|
|
357
|
+
"title": "Add Option",
|
|
358
|
+
"description": "An option for the add menu."
|
|
361
359
|
},
|
|
362
360
|
{
|
|
363
|
-
"title": "HREF Add Option",
|
|
364
|
-
"description": "An option for the add menu that opens a link.",
|
|
365
361
|
"type": "object",
|
|
366
362
|
"properties": {
|
|
367
363
|
"name": {
|
|
@@ -374,14 +370,16 @@
|
|
|
374
370
|
"$ref": "#/$defs/icon"
|
|
375
371
|
},
|
|
376
372
|
"href": {
|
|
377
|
-
"
|
|
378
|
-
"
|
|
373
|
+
"type": "string",
|
|
374
|
+
"description": "The link that opens when the option is clicked. Can either be an external or internal link. If internal, the link is relative to the current site."
|
|
379
375
|
}
|
|
380
376
|
},
|
|
381
377
|
"required": [
|
|
382
378
|
"href"
|
|
383
379
|
],
|
|
384
|
-
"additionalProperties": false
|
|
380
|
+
"additionalProperties": false,
|
|
381
|
+
"title": "HREF Add Option",
|
|
382
|
+
"description": "An option for the add menu that opens a link."
|
|
385
383
|
}
|
|
386
384
|
]
|
|
387
385
|
}
|
|
@@ -415,13 +413,11 @@
|
|
|
415
413
|
"type": "string"
|
|
416
414
|
},
|
|
417
415
|
"additionalProperties": {
|
|
418
|
-
"title": "Schema",
|
|
419
|
-
"description": "Definitions for your schemas, which are the structured data formats for your content files.",
|
|
420
416
|
"type": "object",
|
|
421
417
|
"properties": {
|
|
422
418
|
"path": {
|
|
423
|
-
"
|
|
424
|
-
"
|
|
419
|
+
"type": "string",
|
|
420
|
+
"description": "The path to the schema file. Relative to the root folder of the site."
|
|
425
421
|
},
|
|
426
422
|
"name": {
|
|
427
423
|
"description": "Displayed in the add menu when creating new files. Defaults to a formatted version of the key.",
|
|
@@ -490,7 +486,9 @@
|
|
|
490
486
|
"required": [
|
|
491
487
|
"path"
|
|
492
488
|
],
|
|
493
|
-
"additionalProperties": false
|
|
489
|
+
"additionalProperties": false,
|
|
490
|
+
"title": "Schema",
|
|
491
|
+
"description": "Definitions for your schemas, which are the structured data formats for your content files."
|
|
494
492
|
}
|
|
495
493
|
},
|
|
496
494
|
"schemas_from_glob": {
|
|
@@ -534,34 +532,33 @@
|
|
|
534
532
|
"required": [
|
|
535
533
|
"path"
|
|
536
534
|
],
|
|
537
|
-
"additionalProperties": false
|
|
535
|
+
"additionalProperties": false,
|
|
536
|
+
"id": "collections_config.*",
|
|
537
|
+
"title": "Collection Config"
|
|
538
538
|
},
|
|
539
539
|
"path": {
|
|
540
|
+
"type": "string",
|
|
540
541
|
"id": "path",
|
|
541
|
-
"description": "This key defines the folder path for the collection key in which it is nested. The value for this key is relative to your Site `source`. Each Collection must have a unique path."
|
|
542
|
-
"type": "string"
|
|
542
|
+
"description": "This key defines the folder path for the collection key in which it is nested. The value for this key is relative to your Site `source`. Each Collection must have a unique path."
|
|
543
543
|
},
|
|
544
544
|
"glob": {
|
|
545
545
|
"id": "glob",
|
|
546
546
|
"description": "This key defines globs which filter the files visible in the _Collection browser_ for a given Collection. Values in this array are relative to the Collection `path`.",
|
|
547
547
|
"anyOf": [
|
|
548
548
|
{
|
|
549
|
-
"title": "Glob Array",
|
|
550
549
|
"type": "array",
|
|
551
550
|
"items": {
|
|
552
551
|
"type": "string"
|
|
553
|
-
}
|
|
552
|
+
},
|
|
553
|
+
"title": "Glob Array"
|
|
554
554
|
},
|
|
555
555
|
{
|
|
556
|
-
"
|
|
557
|
-
"
|
|
556
|
+
"type": "string",
|
|
557
|
+
"title": "Glob"
|
|
558
558
|
}
|
|
559
559
|
]
|
|
560
560
|
},
|
|
561
561
|
"icon": {
|
|
562
|
-
"id": "icon",
|
|
563
|
-
"title": "Icon",
|
|
564
|
-
"description": "Material Symbol icon names available in CloudCannon for UI elements and content previews.",
|
|
565
562
|
"type": "string",
|
|
566
563
|
"enum": [
|
|
567
564
|
"123",
|
|
@@ -4148,17 +4145,17 @@
|
|
|
4148
4145
|
"zoom_in_map",
|
|
4149
4146
|
"zoom_out",
|
|
4150
4147
|
"zoom_out_map"
|
|
4151
|
-
]
|
|
4148
|
+
],
|
|
4149
|
+
"id": "icon",
|
|
4150
|
+
"title": "Icon",
|
|
4151
|
+
"description": "Material Symbol icon names available in CloudCannon for UI elements and content previews."
|
|
4152
4152
|
},
|
|
4153
4153
|
"type.documentation": {
|
|
4154
|
-
"id": "type.documentation",
|
|
4155
|
-
"title": "Documentation",
|
|
4156
|
-
"description": "Configuration for documentation links displayed in the CloudCannon interface.",
|
|
4157
4154
|
"type": "object",
|
|
4158
4155
|
"properties": {
|
|
4159
4156
|
"url": {
|
|
4160
|
-
"
|
|
4161
|
-
"
|
|
4157
|
+
"type": "string",
|
|
4158
|
+
"description": "The \"href\" value of the link."
|
|
4162
4159
|
},
|
|
4163
4160
|
"text": {
|
|
4164
4161
|
"description": "The visible text used in the link.",
|
|
@@ -4173,23 +4170,23 @@
|
|
|
4173
4170
|
"required": [
|
|
4174
4171
|
"url"
|
|
4175
4172
|
],
|
|
4176
|
-
"additionalProperties": false
|
|
4173
|
+
"additionalProperties": false,
|
|
4174
|
+
"id": "type.documentation",
|
|
4175
|
+
"title": "Documentation",
|
|
4176
|
+
"description": "Configuration for documentation links displayed in the CloudCannon interface."
|
|
4177
4177
|
},
|
|
4178
4178
|
"EditorKey": {
|
|
4179
|
-
"id": "EditorKey",
|
|
4180
|
-
"title": "Editor Key",
|
|
4181
|
-
"description": "The available editors in CloudCannon: visual, content, and data editors.",
|
|
4182
4179
|
"type": "string",
|
|
4183
4180
|
"enum": [
|
|
4184
4181
|
"visual",
|
|
4185
4182
|
"content",
|
|
4186
4183
|
"data"
|
|
4187
|
-
]
|
|
4184
|
+
],
|
|
4185
|
+
"id": "EditorKey",
|
|
4186
|
+
"title": "Editor Key",
|
|
4187
|
+
"description": "The available editors in CloudCannon: visual, content, and data editors."
|
|
4188
4188
|
},
|
|
4189
4189
|
"type.create": {
|
|
4190
|
-
"id": "type.create",
|
|
4191
|
-
"title": "Create",
|
|
4192
|
-
"description": "Controls where new files are saved.",
|
|
4193
4190
|
"type": "object",
|
|
4194
4191
|
"properties": {
|
|
4195
4192
|
"path": {
|
|
@@ -4226,27 +4223,26 @@
|
|
|
4226
4223
|
"$ref": "#/$defs/type._structures_from_glob"
|
|
4227
4224
|
}
|
|
4228
4225
|
},
|
|
4229
|
-
"additionalProperties": false
|
|
4226
|
+
"additionalProperties": false,
|
|
4227
|
+
"id": "type.create",
|
|
4228
|
+
"title": "Create",
|
|
4229
|
+
"description": "Controls where new files are saved."
|
|
4230
4230
|
},
|
|
4231
4231
|
"type._inputs": {
|
|
4232
|
-
"id": "type._inputs",
|
|
4233
|
-
"title": "Inputs",
|
|
4234
|
-
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces.",
|
|
4235
4232
|
"type": "object",
|
|
4236
4233
|
"propertyNames": {
|
|
4237
4234
|
"type": "string"
|
|
4238
4235
|
},
|
|
4239
4236
|
"additionalProperties": {
|
|
4240
4237
|
"$ref": "#/$defs/Input"
|
|
4241
|
-
}
|
|
4238
|
+
},
|
|
4239
|
+
"id": "type._inputs",
|
|
4240
|
+
"title": "Inputs",
|
|
4241
|
+
"description": "Controls the behavior and appearance of your inputs in all data editing interfaces."
|
|
4242
4242
|
},
|
|
4243
4243
|
"Input": {
|
|
4244
|
-
"id": "Input",
|
|
4245
|
-
"title": "Input",
|
|
4246
4244
|
"anyOf": [
|
|
4247
4245
|
{
|
|
4248
|
-
"title": "Known Input",
|
|
4249
|
-
"description": "A union of all input types that are known to the CloudCannon configuration schema.",
|
|
4250
4246
|
"oneOf": [
|
|
4251
4247
|
{
|
|
4252
4248
|
"$ref": "#/$defs/TextInput"
|
|
@@ -4305,17 +4301,18 @@
|
|
|
4305
4301
|
{
|
|
4306
4302
|
"$ref": "#/$defs/AutoInput"
|
|
4307
4303
|
}
|
|
4308
|
-
]
|
|
4304
|
+
],
|
|
4305
|
+
"title": "Known Input",
|
|
4306
|
+
"description": "A union of all input types that are known to the CloudCannon configuration schema."
|
|
4309
4307
|
},
|
|
4310
4308
|
{
|
|
4311
4309
|
"$ref": "#/$defs/UnknownInput"
|
|
4312
4310
|
}
|
|
4313
|
-
]
|
|
4311
|
+
],
|
|
4312
|
+
"id": "Input",
|
|
4313
|
+
"title": "Input"
|
|
4314
4314
|
},
|
|
4315
4315
|
"TextInput": {
|
|
4316
|
-
"id": "TextInput",
|
|
4317
|
-
"title": "Text Input",
|
|
4318
|
-
"description": "Provides a simple editing interface for plain text.",
|
|
4319
4316
|
"type": "object",
|
|
4320
4317
|
"properties": {
|
|
4321
4318
|
"comment": {
|
|
@@ -4347,8 +4344,6 @@
|
|
|
4347
4344
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
4348
4345
|
},
|
|
4349
4346
|
"type": {
|
|
4350
|
-
"title": "Type",
|
|
4351
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
4352
4347
|
"type": "string",
|
|
4353
4348
|
"enum": [
|
|
4354
4349
|
"text",
|
|
@@ -4359,10 +4354,11 @@
|
|
|
4359
4354
|
"twitter",
|
|
4360
4355
|
"github",
|
|
4361
4356
|
"instagram"
|
|
4362
|
-
]
|
|
4357
|
+
],
|
|
4358
|
+
"title": "Type",
|
|
4359
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
4363
4360
|
},
|
|
4364
4361
|
"options": {
|
|
4365
|
-
"description": "Options that are specific to Text Inputs.",
|
|
4366
4362
|
"type": "object",
|
|
4367
4363
|
"properties": {
|
|
4368
4364
|
"max_length": {
|
|
@@ -4437,13 +4433,17 @@
|
|
|
4437
4433
|
"$ref": "#/$defs/PreviewEntries"
|
|
4438
4434
|
}
|
|
4439
4435
|
},
|
|
4440
|
-
"additionalProperties": false
|
|
4436
|
+
"additionalProperties": false,
|
|
4437
|
+
"description": "Options that are specific to Text Inputs."
|
|
4441
4438
|
}
|
|
4442
4439
|
},
|
|
4443
4440
|
"required": [
|
|
4444
4441
|
"type"
|
|
4445
4442
|
],
|
|
4446
|
-
"additionalProperties": false
|
|
4443
|
+
"additionalProperties": false,
|
|
4444
|
+
"id": "TextInput",
|
|
4445
|
+
"title": "Text Input",
|
|
4446
|
+
"description": "Provides a simple editing interface for plain text."
|
|
4447
4447
|
},
|
|
4448
4448
|
"type._inputs.*.comment": {
|
|
4449
4449
|
"id": "type._inputs.*.comment",
|
|
@@ -4451,8 +4451,6 @@
|
|
|
4451
4451
|
"type": "string"
|
|
4452
4452
|
},
|
|
4453
4453
|
"type._inputs.*.context": {
|
|
4454
|
-
"id": "type._inputs.*.context",
|
|
4455
|
-
"description": "Adds an expandable section of rich text below the input.",
|
|
4456
4454
|
"type": "object",
|
|
4457
4455
|
"properties": {
|
|
4458
4456
|
"content": {
|
|
@@ -4473,7 +4471,9 @@
|
|
|
4473
4471
|
"$ref": "#/$defs/icon"
|
|
4474
4472
|
}
|
|
4475
4473
|
},
|
|
4476
|
-
"additionalProperties": false
|
|
4474
|
+
"additionalProperties": false,
|
|
4475
|
+
"id": "type._inputs.*.context",
|
|
4476
|
+
"description": "Adds an expandable section of rich text below the input."
|
|
4477
4477
|
},
|
|
4478
4478
|
"type._inputs.*.label": {
|
|
4479
4479
|
"id": "type._inputs.*.label",
|
|
@@ -4486,12 +4486,12 @@
|
|
|
4486
4486
|
"default": false,
|
|
4487
4487
|
"anyOf": [
|
|
4488
4488
|
{
|
|
4489
|
-
"
|
|
4490
|
-
"
|
|
4489
|
+
"type": "boolean",
|
|
4490
|
+
"title": "Boolean"
|
|
4491
4491
|
},
|
|
4492
4492
|
{
|
|
4493
|
-
"
|
|
4494
|
-
"
|
|
4493
|
+
"type": "string",
|
|
4494
|
+
"title": "Query String"
|
|
4495
4495
|
}
|
|
4496
4496
|
]
|
|
4497
4497
|
},
|
|
@@ -4501,12 +4501,12 @@
|
|
|
4501
4501
|
"default": false,
|
|
4502
4502
|
"anyOf": [
|
|
4503
4503
|
{
|
|
4504
|
-
"
|
|
4505
|
-
"
|
|
4504
|
+
"type": "boolean",
|
|
4505
|
+
"title": "Boolean"
|
|
4506
4506
|
},
|
|
4507
4507
|
{
|
|
4508
|
-
"
|
|
4509
|
-
"
|
|
4508
|
+
"type": "string",
|
|
4509
|
+
"title": "Query String"
|
|
4510
4510
|
}
|
|
4511
4511
|
]
|
|
4512
4512
|
},
|
|
@@ -4657,9 +4657,9 @@
|
|
|
4657
4657
|
"type": "string"
|
|
4658
4658
|
},
|
|
4659
4659
|
"type._inputs.*.options.empty_type(text)": {
|
|
4660
|
+
"default": "null",
|
|
4660
4661
|
"id": "type._inputs.*.options.empty_type(text)",
|
|
4661
4662
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4662
|
-
"default": "null",
|
|
4663
4663
|
"type": "string",
|
|
4664
4664
|
"enum": [
|
|
4665
4665
|
"null",
|
|
@@ -4667,7 +4667,6 @@
|
|
|
4667
4667
|
]
|
|
4668
4668
|
},
|
|
4669
4669
|
"PreviewEntries": {
|
|
4670
|
-
"id": "PreviewEntries",
|
|
4671
4670
|
"anyOf": [
|
|
4672
4671
|
{
|
|
4673
4672
|
"$ref": "#/$defs/type.preview-entry.(array)"
|
|
@@ -4678,19 +4677,18 @@
|
|
|
4678
4677
|
{
|
|
4679
4678
|
"$ref": "#/$defs/type.preview-entry.(false)"
|
|
4680
4679
|
}
|
|
4681
|
-
]
|
|
4680
|
+
],
|
|
4681
|
+
"id": "PreviewEntries"
|
|
4682
4682
|
},
|
|
4683
4683
|
"type.preview-entry.(array)": {
|
|
4684
|
-
"id": "type.preview-entry.(array)",
|
|
4685
|
-
"title": "Array",
|
|
4686
4684
|
"type": "array",
|
|
4687
4685
|
"items": {
|
|
4688
4686
|
"$ref": "#/$defs/type.preview-entry"
|
|
4689
|
-
}
|
|
4687
|
+
},
|
|
4688
|
+
"id": "type.preview-entry.(array)",
|
|
4689
|
+
"title": "Array"
|
|
4690
4690
|
},
|
|
4691
4691
|
"type.preview-entry": {
|
|
4692
|
-
"id": "type.preview-entry",
|
|
4693
|
-
"title": "Preview Entry",
|
|
4694
4692
|
"anyOf": [
|
|
4695
4693
|
{
|
|
4696
4694
|
"$ref": "#/$defs/type.preview-entry.(key)"
|
|
@@ -4707,68 +4705,67 @@
|
|
|
4707
4705
|
{
|
|
4708
4706
|
"$ref": "#/$defs/type.preview-entry.(false)"
|
|
4709
4707
|
}
|
|
4710
|
-
]
|
|
4708
|
+
],
|
|
4709
|
+
"id": "type.preview-entry",
|
|
4710
|
+
"title": "Preview Entry"
|
|
4711
4711
|
},
|
|
4712
4712
|
"type.preview-entry.(key)": {
|
|
4713
|
-
"id": "type.preview-entry.(key)",
|
|
4714
|
-
"title": "Key",
|
|
4715
4713
|
"type": "object",
|
|
4716
4714
|
"properties": {
|
|
4717
4715
|
"key": {
|
|
4718
|
-
"
|
|
4719
|
-
"
|
|
4716
|
+
"type": "string",
|
|
4717
|
+
"title": "Key Value"
|
|
4720
4718
|
}
|
|
4721
4719
|
},
|
|
4722
4720
|
"required": [
|
|
4723
4721
|
"key"
|
|
4724
4722
|
],
|
|
4725
|
-
"additionalProperties": false
|
|
4723
|
+
"additionalProperties": false,
|
|
4724
|
+
"id": "type.preview-entry.(key)",
|
|
4725
|
+
"title": "Key"
|
|
4726
4726
|
},
|
|
4727
4727
|
"type.preview-entry.(template)": {
|
|
4728
|
-
"id": "type.preview-entry.(template)",
|
|
4729
|
-
"title": "Template",
|
|
4730
4728
|
"type": "object",
|
|
4731
4729
|
"properties": {
|
|
4732
4730
|
"template": {
|
|
4733
|
-
"
|
|
4734
|
-
"
|
|
4731
|
+
"type": "string",
|
|
4732
|
+
"title": "Template Value"
|
|
4735
4733
|
}
|
|
4736
4734
|
},
|
|
4737
4735
|
"required": [
|
|
4738
4736
|
"template"
|
|
4739
4737
|
],
|
|
4740
|
-
"additionalProperties": false
|
|
4738
|
+
"additionalProperties": false,
|
|
4739
|
+
"id": "type.preview-entry.(template)",
|
|
4740
|
+
"title": "Template"
|
|
4741
4741
|
},
|
|
4742
4742
|
"type.preview-entry.(text)": {
|
|
4743
|
-
"id": "type.preview-entry.(text)",
|
|
4744
|
-
"title": "Text",
|
|
4745
4743
|
"type": "object",
|
|
4746
4744
|
"properties": {
|
|
4747
4745
|
"text": {
|
|
4748
|
-
"
|
|
4749
|
-
"
|
|
4746
|
+
"type": "string",
|
|
4747
|
+
"title": "Text Value"
|
|
4750
4748
|
}
|
|
4751
4749
|
},
|
|
4752
4750
|
"required": [
|
|
4753
4751
|
"text"
|
|
4754
4752
|
],
|
|
4755
|
-
"additionalProperties": false
|
|
4753
|
+
"additionalProperties": false,
|
|
4754
|
+
"id": "type.preview-entry.(text)",
|
|
4755
|
+
"title": "Text"
|
|
4756
4756
|
},
|
|
4757
4757
|
"type.preview-entry.(raw-text)": {
|
|
4758
|
+
"type": "string",
|
|
4758
4759
|
"id": "type.preview-entry.(raw-text)",
|
|
4759
|
-
"title": "Raw Text"
|
|
4760
|
-
"type": "string"
|
|
4760
|
+
"title": "Raw Text"
|
|
4761
4761
|
},
|
|
4762
4762
|
"type.preview-entry.(false)": {
|
|
4763
|
-
"id": "type.preview-entry.(false)",
|
|
4764
|
-
"title": "False",
|
|
4765
4763
|
"type": "boolean",
|
|
4766
|
-
"const": false
|
|
4764
|
+
"const": false,
|
|
4765
|
+
"id": "type.preview-entry.(false)",
|
|
4766
|
+
"title": "False"
|
|
4767
4767
|
},
|
|
4768
4768
|
"TextareaInput": {
|
|
4769
|
-
"id": "TextareaInput",
|
|
4770
|
-
"title": "Textarea Input",
|
|
4771
|
-
"description": "Provides an editing interface for plain text.",
|
|
4772
4769
|
"type": "object",
|
|
4773
4770
|
"properties": {
|
|
4774
4771
|
"comment": {
|
|
@@ -4800,13 +4797,12 @@
|
|
|
4800
4797
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
4801
4798
|
},
|
|
4802
4799
|
"type": {
|
|
4803
|
-
"title": "Type",
|
|
4804
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
4805
4800
|
"type": "string",
|
|
4806
|
-
"const": "textarea"
|
|
4801
|
+
"const": "textarea",
|
|
4802
|
+
"title": "Type",
|
|
4803
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
4807
4804
|
},
|
|
4808
4805
|
"options": {
|
|
4809
|
-
"description": "Options that are specific to Textarea Inputs.",
|
|
4810
4806
|
"type": "object",
|
|
4811
4807
|
"properties": {
|
|
4812
4808
|
"max_length": {
|
|
@@ -4876,18 +4872,19 @@
|
|
|
4876
4872
|
"type": "boolean"
|
|
4877
4873
|
}
|
|
4878
4874
|
},
|
|
4879
|
-
"additionalProperties": false
|
|
4875
|
+
"additionalProperties": false,
|
|
4876
|
+
"description": "Options that are specific to Textarea Inputs."
|
|
4880
4877
|
}
|
|
4881
4878
|
},
|
|
4882
4879
|
"required": [
|
|
4883
4880
|
"type"
|
|
4884
4881
|
],
|
|
4885
|
-
"additionalProperties": false
|
|
4882
|
+
"additionalProperties": false,
|
|
4883
|
+
"id": "TextareaInput",
|
|
4884
|
+
"title": "Textarea Input",
|
|
4885
|
+
"description": "Provides an editing interface for plain text."
|
|
4886
4886
|
},
|
|
4887
4887
|
"CodeInput": {
|
|
4888
|
-
"id": "CodeInput",
|
|
4889
|
-
"title": "Code Input",
|
|
4890
|
-
"description": "Provides an editing interface for code or mono-spaced plain text content.",
|
|
4891
4888
|
"type": "object",
|
|
4892
4889
|
"properties": {
|
|
4893
4890
|
"comment": {
|
|
@@ -4919,13 +4916,12 @@
|
|
|
4919
4916
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
4920
4917
|
},
|
|
4921
4918
|
"type": {
|
|
4922
|
-
"title": "Type",
|
|
4923
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
4924
4919
|
"type": "string",
|
|
4925
|
-
"const": "code"
|
|
4920
|
+
"const": "code",
|
|
4921
|
+
"title": "Type",
|
|
4922
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
4926
4923
|
},
|
|
4927
4924
|
"options": {
|
|
4928
|
-
"description": "Options that are specific to Code Inputs.",
|
|
4929
4925
|
"type": "object",
|
|
4930
4926
|
"properties": {
|
|
4931
4927
|
"tab_size": {
|
|
@@ -5014,16 +5010,19 @@
|
|
|
5014
5010
|
"$ref": "#/$defs/Syntax"
|
|
5015
5011
|
}
|
|
5016
5012
|
},
|
|
5017
|
-
"additionalProperties": false
|
|
5013
|
+
"additionalProperties": false,
|
|
5014
|
+
"description": "Options that are specific to Code Inputs."
|
|
5018
5015
|
}
|
|
5019
5016
|
},
|
|
5020
5017
|
"required": [
|
|
5021
5018
|
"type"
|
|
5022
5019
|
],
|
|
5023
|
-
"additionalProperties": false
|
|
5020
|
+
"additionalProperties": false,
|
|
5021
|
+
"id": "CodeInput",
|
|
5022
|
+
"title": "Code Input",
|
|
5023
|
+
"description": "Provides an editing interface for code or mono-spaced plain text content."
|
|
5024
5024
|
},
|
|
5025
5025
|
"Theme": {
|
|
5026
|
-
"id": "Theme",
|
|
5027
5026
|
"type": "string",
|
|
5028
5027
|
"enum": [
|
|
5029
5028
|
"atomone",
|
|
@@ -5051,12 +5050,10 @@
|
|
|
5051
5050
|
"vscode_light",
|
|
5052
5051
|
"xcode_dark",
|
|
5053
5052
|
"xcode_light"
|
|
5054
|
-
]
|
|
5053
|
+
],
|
|
5054
|
+
"id": "Theme"
|
|
5055
5055
|
},
|
|
5056
5056
|
"Syntax": {
|
|
5057
|
-
"id": "Syntax",
|
|
5058
|
-
"title": "Syntax",
|
|
5059
|
-
"description": "Available syntax highlighting languages for code editors in CloudCannon.",
|
|
5060
5057
|
"type": "string",
|
|
5061
5058
|
"enum": [
|
|
5062
5059
|
"c_cpp",
|
|
@@ -5127,12 +5124,12 @@
|
|
|
5127
5124
|
"xml",
|
|
5128
5125
|
"xquery",
|
|
5129
5126
|
"yaml"
|
|
5130
|
-
]
|
|
5127
|
+
],
|
|
5128
|
+
"id": "Syntax",
|
|
5129
|
+
"title": "Syntax",
|
|
5130
|
+
"description": "Available syntax highlighting languages for code editors in CloudCannon."
|
|
5131
5131
|
},
|
|
5132
5132
|
"ColorInput": {
|
|
5133
|
-
"id": "ColorInput",
|
|
5134
|
-
"title": "Color Input",
|
|
5135
|
-
"description": "Provides an editing interface for color values.",
|
|
5136
5133
|
"type": "object",
|
|
5137
5134
|
"properties": {
|
|
5138
5135
|
"comment": {
|
|
@@ -5164,13 +5161,12 @@
|
|
|
5164
5161
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
5165
5162
|
},
|
|
5166
5163
|
"type": {
|
|
5167
|
-
"title": "Type",
|
|
5168
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5169
5164
|
"type": "string",
|
|
5170
|
-
"const": "color"
|
|
5165
|
+
"const": "color",
|
|
5166
|
+
"title": "Type",
|
|
5167
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
5171
5168
|
},
|
|
5172
5169
|
"options": {
|
|
5173
|
-
"description": "Options that are specific to Color Inputs.",
|
|
5174
5170
|
"type": "object",
|
|
5175
5171
|
"properties": {
|
|
5176
5172
|
"max_length": {
|
|
@@ -5255,18 +5251,19 @@
|
|
|
5255
5251
|
"type": "boolean"
|
|
5256
5252
|
}
|
|
5257
5253
|
},
|
|
5258
|
-
"additionalProperties": false
|
|
5254
|
+
"additionalProperties": false,
|
|
5255
|
+
"description": "Options that are specific to Color Inputs."
|
|
5259
5256
|
}
|
|
5260
5257
|
},
|
|
5261
5258
|
"required": [
|
|
5262
5259
|
"type"
|
|
5263
5260
|
],
|
|
5264
|
-
"additionalProperties": false
|
|
5261
|
+
"additionalProperties": false,
|
|
5262
|
+
"id": "ColorInput",
|
|
5263
|
+
"title": "Color Input",
|
|
5264
|
+
"description": "Provides an editing interface for color values."
|
|
5265
5265
|
},
|
|
5266
5266
|
"BooleanInput": {
|
|
5267
|
-
"id": "BooleanInput",
|
|
5268
|
-
"title": "Boolean Input",
|
|
5269
|
-
"description": "Provides an editing interface for true or false values.",
|
|
5270
5267
|
"type": "object",
|
|
5271
5268
|
"properties": {
|
|
5272
5269
|
"comment": {
|
|
@@ -5298,24 +5295,24 @@
|
|
|
5298
5295
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
5299
5296
|
},
|
|
5300
5297
|
"type": {
|
|
5301
|
-
"title": "Type",
|
|
5302
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5303
5298
|
"type": "string",
|
|
5304
5299
|
"enum": [
|
|
5305
5300
|
"checkbox",
|
|
5306
5301
|
"switch"
|
|
5307
|
-
]
|
|
5302
|
+
],
|
|
5303
|
+
"title": "Type",
|
|
5304
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
5308
5305
|
}
|
|
5309
5306
|
},
|
|
5310
5307
|
"required": [
|
|
5311
5308
|
"type"
|
|
5312
5309
|
],
|
|
5313
|
-
"additionalProperties": false
|
|
5310
|
+
"additionalProperties": false,
|
|
5311
|
+
"id": "BooleanInput",
|
|
5312
|
+
"title": "Boolean Input",
|
|
5313
|
+
"description": "Provides an editing interface for true or false values."
|
|
5314
5314
|
},
|
|
5315
5315
|
"NumberInput": {
|
|
5316
|
-
"id": "NumberInput",
|
|
5317
|
-
"title": "Number Input",
|
|
5318
|
-
"description": "Provides an editing interface for numeric values.",
|
|
5319
5316
|
"type": "object",
|
|
5320
5317
|
"properties": {
|
|
5321
5318
|
"comment": {
|
|
@@ -5347,13 +5344,12 @@
|
|
|
5347
5344
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
5348
5345
|
},
|
|
5349
5346
|
"type": {
|
|
5350
|
-
"title": "Type",
|
|
5351
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5352
5347
|
"type": "string",
|
|
5353
|
-
"const": "number"
|
|
5348
|
+
"const": "number",
|
|
5349
|
+
"title": "Type",
|
|
5350
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
5354
5351
|
},
|
|
5355
5352
|
"options": {
|
|
5356
|
-
"description": "Options that are specific to Number Inputs.",
|
|
5357
5353
|
"type": "object",
|
|
5358
5354
|
"properties": {
|
|
5359
5355
|
"required": {
|
|
@@ -5381,18 +5377,22 @@
|
|
|
5381
5377
|
"$ref": "#/$defs/type._inputs.*.options.max_message"
|
|
5382
5378
|
}
|
|
5383
5379
|
},
|
|
5384
|
-
"additionalProperties": false
|
|
5380
|
+
"additionalProperties": false,
|
|
5381
|
+
"description": "Options that are specific to Number Inputs."
|
|
5385
5382
|
}
|
|
5386
5383
|
},
|
|
5387
5384
|
"required": [
|
|
5388
5385
|
"type"
|
|
5389
5386
|
],
|
|
5390
|
-
"additionalProperties": false
|
|
5387
|
+
"additionalProperties": false,
|
|
5388
|
+
"id": "NumberInput",
|
|
5389
|
+
"title": "Number Input",
|
|
5390
|
+
"description": "Provides an editing interface for numeric values."
|
|
5391
5391
|
},
|
|
5392
5392
|
"type._inputs.*.options.empty_type(number)": {
|
|
5393
|
+
"default": "null",
|
|
5393
5394
|
"id": "type._inputs.*.options.empty_type(number)",
|
|
5394
5395
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
5395
|
-
"default": "null",
|
|
5396
5396
|
"type": "string",
|
|
5397
5397
|
"enum": [
|
|
5398
5398
|
"null",
|
|
@@ -5400,14 +5400,14 @@
|
|
|
5400
5400
|
]
|
|
5401
5401
|
},
|
|
5402
5402
|
"type._inputs.*.options.min": {
|
|
5403
|
+
"type": "number",
|
|
5403
5404
|
"id": "type._inputs.*.options.min",
|
|
5404
|
-
"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."
|
|
5405
|
-
"type": "number"
|
|
5405
|
+
"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."
|
|
5406
5406
|
},
|
|
5407
5407
|
"type._inputs.*.options.max": {
|
|
5408
|
+
"type": "number",
|
|
5408
5409
|
"id": "type._inputs.*.options.max",
|
|
5409
|
-
"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."
|
|
5410
|
-
"type": "number"
|
|
5410
|
+
"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."
|
|
5411
5411
|
},
|
|
5412
5412
|
"type._inputs.*.options.step": {
|
|
5413
5413
|
"id": "type._inputs.*.options.step",
|
|
@@ -5425,9 +5425,6 @@
|
|
|
5425
5425
|
"type": "string"
|
|
5426
5426
|
},
|
|
5427
5427
|
"RangeInput": {
|
|
5428
|
-
"id": "RangeInput",
|
|
5429
|
-
"title": "Range Input",
|
|
5430
|
-
"description": "Provides a slider interface for selecting a numeric value.",
|
|
5431
5428
|
"type": "object",
|
|
5432
5429
|
"properties": {
|
|
5433
5430
|
"comment": {
|
|
@@ -5459,13 +5456,12 @@
|
|
|
5459
5456
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
5460
5457
|
},
|
|
5461
5458
|
"type": {
|
|
5462
|
-
"title": "Type",
|
|
5463
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5464
5459
|
"type": "string",
|
|
5465
|
-
"const": "range"
|
|
5460
|
+
"const": "range",
|
|
5461
|
+
"title": "Type",
|
|
5462
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
5466
5463
|
},
|
|
5467
5464
|
"options": {
|
|
5468
|
-
"description": "Options that are specific to Range Inputs.",
|
|
5469
5465
|
"type": "object",
|
|
5470
5466
|
"properties": {
|
|
5471
5467
|
"required": {
|
|
@@ -5497,18 +5493,19 @@
|
|
|
5497
5493
|
"min",
|
|
5498
5494
|
"max"
|
|
5499
5495
|
],
|
|
5500
|
-
"additionalProperties": false
|
|
5496
|
+
"additionalProperties": false,
|
|
5497
|
+
"description": "Options that are specific to Range Inputs."
|
|
5501
5498
|
}
|
|
5502
5499
|
},
|
|
5503
5500
|
"required": [
|
|
5504
5501
|
"type"
|
|
5505
5502
|
],
|
|
5506
|
-
"additionalProperties": false
|
|
5503
|
+
"additionalProperties": false,
|
|
5504
|
+
"id": "RangeInput",
|
|
5505
|
+
"title": "Range Input",
|
|
5506
|
+
"description": "Provides a slider interface for selecting a numeric value."
|
|
5507
5507
|
},
|
|
5508
5508
|
"RichTextInput": {
|
|
5509
|
-
"id": "RichTextInput",
|
|
5510
|
-
"title": "Rich Text Input",
|
|
5511
|
-
"description": "Provides an editing interface for HTML markup content.",
|
|
5512
5509
|
"type": "object",
|
|
5513
5510
|
"properties": {
|
|
5514
5511
|
"comment": {
|
|
@@ -5540,16 +5537,15 @@
|
|
|
5540
5537
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
5541
5538
|
},
|
|
5542
5539
|
"type": {
|
|
5543
|
-
"title": "Type",
|
|
5544
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
5545
5540
|
"type": "string",
|
|
5546
5541
|
"enum": [
|
|
5547
5542
|
"html",
|
|
5548
5543
|
"markdown"
|
|
5549
|
-
]
|
|
5544
|
+
],
|
|
5545
|
+
"title": "Type",
|
|
5546
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
5550
5547
|
},
|
|
5551
5548
|
"options": {
|
|
5552
|
-
"description": "Options that are specific to Rich Text Inputs.",
|
|
5553
5549
|
"type": "object",
|
|
5554
5550
|
"properties": {
|
|
5555
5551
|
"mime_type": {
|
|
@@ -5743,7 +5739,6 @@
|
|
|
5743
5739
|
},
|
|
5744
5740
|
"allow_resize": {
|
|
5745
5741
|
"deprecated": true,
|
|
5746
|
-
"description": "**⚠️ DEPRECATED:** This key is deprecated. Use `preview_resize` instead.",
|
|
5747
5742
|
"type": "boolean"
|
|
5748
5743
|
},
|
|
5749
5744
|
"prevent_resize": {
|
|
@@ -5756,13 +5751,17 @@
|
|
|
5756
5751
|
"type": "number"
|
|
5757
5752
|
}
|
|
5758
5753
|
},
|
|
5759
|
-
"additionalProperties": false
|
|
5754
|
+
"additionalProperties": false,
|
|
5755
|
+
"description": "Options that are specific to Rich Text Inputs."
|
|
5760
5756
|
}
|
|
5761
5757
|
},
|
|
5762
5758
|
"required": [
|
|
5763
5759
|
"type"
|
|
5764
5760
|
],
|
|
5765
|
-
"additionalProperties": false
|
|
5761
|
+
"additionalProperties": false,
|
|
5762
|
+
"id": "RichTextInput",
|
|
5763
|
+
"title": "Rich Text Input",
|
|
5764
|
+
"description": "Provides an editing interface for HTML markup content."
|
|
5766
5765
|
},
|
|
5767
5766
|
"type._inputs.*.options.mime_type": {
|
|
5768
5767
|
"id": "type._inputs.*.options.mime_type",
|
|
@@ -5839,8 +5838,8 @@
|
|
|
5839
5838
|
"type": "object",
|
|
5840
5839
|
"properties": {
|
|
5841
5840
|
"size": {
|
|
5842
|
-
"
|
|
5843
|
-
"
|
|
5841
|
+
"type": "string",
|
|
5842
|
+
"description": "A number suffixed with \"x\" (relative size) or \"w\" (fixed width) for setting the dimensions of the image (e.g. 2x, 3x, 100w, 360w)."
|
|
5844
5843
|
},
|
|
5845
5844
|
"target": {
|
|
5846
5845
|
"description": "A reference to another input that is given the path to this additional image file.",
|
|
@@ -6051,9 +6050,6 @@
|
|
|
6051
6050
|
"type": "boolean"
|
|
6052
6051
|
},
|
|
6053
6052
|
"DateInput": {
|
|
6054
|
-
"id": "DateInput",
|
|
6055
|
-
"title": "Date Input",
|
|
6056
|
-
"description": "Provides an editing interface for date and/or time values.",
|
|
6057
6053
|
"type": "object",
|
|
6058
6054
|
"properties": {
|
|
6059
6055
|
"comment": {
|
|
@@ -6085,16 +6081,15 @@
|
|
|
6085
6081
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
6086
6082
|
},
|
|
6087
6083
|
"type": {
|
|
6088
|
-
"title": "Type",
|
|
6089
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
6090
6084
|
"type": "string",
|
|
6091
6085
|
"enum": [
|
|
6092
6086
|
"date",
|
|
6093
6087
|
"datetime"
|
|
6094
|
-
]
|
|
6088
|
+
],
|
|
6089
|
+
"title": "Type",
|
|
6090
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
6095
6091
|
},
|
|
6096
6092
|
"options": {
|
|
6097
|
-
"description": "Options that are specific to Date Inputs.",
|
|
6098
6093
|
"type": "object",
|
|
6099
6094
|
"properties": {
|
|
6100
6095
|
"required": {
|
|
@@ -6114,15 +6109,15 @@
|
|
|
6114
6109
|
"description": "This key defines the earliest date and time, inclusive, that CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from selecting an earlier date and time. If the Input already contains an earlier date and time, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes. Value must be in ISO8601 format. If `options.end_before` is also configured, this key cannot be a later date and time.",
|
|
6115
6110
|
"anyOf": [
|
|
6116
6111
|
{
|
|
6117
|
-
"title": "ISO8601 String",
|
|
6118
6112
|
"type": "string",
|
|
6119
6113
|
"format": "date-time",
|
|
6120
|
-
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z||([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
6114
|
+
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z||([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$",
|
|
6115
|
+
"title": "ISO8601 String"
|
|
6121
6116
|
},
|
|
6122
6117
|
{
|
|
6118
|
+
"type": "string",
|
|
6123
6119
|
"documentationType": "date",
|
|
6124
|
-
"title": "Date"
|
|
6125
|
-
"type": "string"
|
|
6120
|
+
"title": "Date"
|
|
6126
6121
|
}
|
|
6127
6122
|
]
|
|
6128
6123
|
},
|
|
@@ -6134,15 +6129,15 @@
|
|
|
6134
6129
|
"description": "This key defines the date and time, exclusive, that CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from selecting a later date and time. If the Input already contains a later date and time, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes. Value must be in ISO8601 format. If options.start_from is also configured, this key cannot be an earlier date and time. This key has no default.",
|
|
6135
6130
|
"anyOf": [
|
|
6136
6131
|
{
|
|
6137
|
-
"title": "ISO8601 String",
|
|
6138
6132
|
"type": "string",
|
|
6139
6133
|
"format": "date-time",
|
|
6140
|
-
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z||([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
6134
|
+
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z||([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$",
|
|
6135
|
+
"title": "ISO8601 String"
|
|
6141
6136
|
},
|
|
6142
6137
|
{
|
|
6138
|
+
"type": "string",
|
|
6143
6139
|
"documentationType": "date",
|
|
6144
|
-
"title": "Date"
|
|
6145
|
-
"type": "string"
|
|
6140
|
+
"title": "Date"
|
|
6146
6141
|
}
|
|
6147
6142
|
]
|
|
6148
6143
|
},
|
|
@@ -6151,17 +6146,19 @@
|
|
|
6151
6146
|
"type": "string"
|
|
6152
6147
|
}
|
|
6153
6148
|
},
|
|
6154
|
-
"additionalProperties": false
|
|
6149
|
+
"additionalProperties": false,
|
|
6150
|
+
"description": "Options that are specific to Date Inputs."
|
|
6155
6151
|
}
|
|
6156
6152
|
},
|
|
6157
6153
|
"required": [
|
|
6158
6154
|
"type"
|
|
6159
6155
|
],
|
|
6160
|
-
"additionalProperties": false
|
|
6156
|
+
"additionalProperties": false,
|
|
6157
|
+
"id": "DateInput",
|
|
6158
|
+
"title": "Date Input",
|
|
6159
|
+
"description": "Provides an editing interface for date and/or time values."
|
|
6161
6160
|
},
|
|
6162
6161
|
"type.timezone": {
|
|
6163
|
-
"id": "type.timezone",
|
|
6164
|
-
"title": "Timezone",
|
|
6165
6162
|
"type": "string",
|
|
6166
6163
|
"enum": [
|
|
6167
6164
|
"Africa/Abidjan",
|
|
@@ -6759,12 +6756,11 @@
|
|
|
6759
6756
|
"W-SU",
|
|
6760
6757
|
"WET",
|
|
6761
6758
|
"Zulu"
|
|
6762
|
-
]
|
|
6759
|
+
],
|
|
6760
|
+
"id": "type.timezone",
|
|
6761
|
+
"title": "Timezone"
|
|
6763
6762
|
},
|
|
6764
6763
|
"TimeInput": {
|
|
6765
|
-
"id": "TimeInput",
|
|
6766
|
-
"title": "Time Input",
|
|
6767
|
-
"description": "Provides an editing interface for time values only.",
|
|
6768
6764
|
"type": "object",
|
|
6769
6765
|
"properties": {
|
|
6770
6766
|
"comment": {
|
|
@@ -6796,13 +6792,12 @@
|
|
|
6796
6792
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
6797
6793
|
},
|
|
6798
6794
|
"type": {
|
|
6799
|
-
"title": "Type",
|
|
6800
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
6801
6795
|
"type": "string",
|
|
6802
|
-
"const": "time"
|
|
6796
|
+
"const": "time",
|
|
6797
|
+
"title": "Type",
|
|
6798
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
6803
6799
|
},
|
|
6804
6800
|
"options": {
|
|
6805
|
-
"description": "Options that are specific to Time Inputs.",
|
|
6806
6801
|
"type": "object",
|
|
6807
6802
|
"properties": {
|
|
6808
6803
|
"required": {
|
|
@@ -6815,18 +6810,19 @@
|
|
|
6815
6810
|
"$ref": "#/$defs/type._inputs.*.options.empty_type(text)"
|
|
6816
6811
|
}
|
|
6817
6812
|
},
|
|
6818
|
-
"additionalProperties": false
|
|
6813
|
+
"additionalProperties": false,
|
|
6814
|
+
"description": "Options that are specific to Time Inputs."
|
|
6819
6815
|
}
|
|
6820
6816
|
},
|
|
6821
6817
|
"required": [
|
|
6822
6818
|
"type"
|
|
6823
6819
|
],
|
|
6824
|
-
"additionalProperties": false
|
|
6820
|
+
"additionalProperties": false,
|
|
6821
|
+
"id": "TimeInput",
|
|
6822
|
+
"title": "Time Input",
|
|
6823
|
+
"description": "Provides an editing interface for time values only."
|
|
6825
6824
|
},
|
|
6826
6825
|
"FileInput": {
|
|
6827
|
-
"id": "FileInput",
|
|
6828
|
-
"title": "File Input",
|
|
6829
|
-
"description": "Provides an editing interface for uploading files to your repository or DAM and browsing existing assets.",
|
|
6830
6826
|
"type": "object",
|
|
6831
6827
|
"properties": {
|
|
6832
6828
|
"comment": {
|
|
@@ -6858,17 +6854,16 @@
|
|
|
6858
6854
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
6859
6855
|
},
|
|
6860
6856
|
"type": {
|
|
6861
|
-
"title": "Type",
|
|
6862
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
6863
6857
|
"type": "string",
|
|
6864
6858
|
"enum": [
|
|
6865
6859
|
"file",
|
|
6866
6860
|
"document",
|
|
6867
6861
|
"image"
|
|
6868
|
-
]
|
|
6862
|
+
],
|
|
6863
|
+
"title": "Type",
|
|
6864
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
6869
6865
|
},
|
|
6870
6866
|
"options": {
|
|
6871
|
-
"description": "Options that are specific to File Inputs.",
|
|
6872
6867
|
"type": "object",
|
|
6873
6868
|
"properties": {
|
|
6874
6869
|
"mime_type": {
|
|
@@ -6977,35 +6972,36 @@
|
|
|
6977
6972
|
"$ref": "#/$defs/type._inputs.*.options.disable_upload_file_in_file_browser"
|
|
6978
6973
|
}
|
|
6979
6974
|
},
|
|
6980
|
-
"additionalProperties": false
|
|
6975
|
+
"additionalProperties": false,
|
|
6976
|
+
"description": "Options that are specific to File Inputs."
|
|
6981
6977
|
}
|
|
6982
6978
|
},
|
|
6983
6979
|
"required": [
|
|
6984
6980
|
"type"
|
|
6985
6981
|
],
|
|
6986
|
-
"additionalProperties": false
|
|
6982
|
+
"additionalProperties": false,
|
|
6983
|
+
"id": "FileInput",
|
|
6984
|
+
"title": "File Input",
|
|
6985
|
+
"description": "Provides an editing interface for uploading files to your repository or DAM and browsing existing assets."
|
|
6987
6986
|
},
|
|
6988
6987
|
"type._inputs.*.options.accepts_mime_types": {
|
|
6989
6988
|
"id": "type._inputs.*.options.accepts_mime_types",
|
|
6990
6989
|
"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.",
|
|
6991
6990
|
"anyOf": [
|
|
6992
6991
|
{
|
|
6993
|
-
"
|
|
6994
|
-
"
|
|
6992
|
+
"type": "string",
|
|
6993
|
+
"title": "Comma Separated"
|
|
6995
6994
|
},
|
|
6996
6995
|
{
|
|
6997
|
-
"title": "Array",
|
|
6998
6996
|
"type": "array",
|
|
6999
6997
|
"items": {
|
|
7000
6998
|
"$ref": "#/$defs/MimeType"
|
|
7001
|
-
}
|
|
6999
|
+
},
|
|
7000
|
+
"title": "Array"
|
|
7002
7001
|
}
|
|
7003
7002
|
]
|
|
7004
7003
|
},
|
|
7005
7004
|
"MimeType": {
|
|
7006
|
-
"id": "MimeType",
|
|
7007
|
-
"title": "Mime Type",
|
|
7008
|
-
"description": "MIME type identifiers for file type validation and handling in CloudCannon.",
|
|
7009
7005
|
"type": "string",
|
|
7010
7006
|
"enum": [
|
|
7011
7007
|
"x-world/x-3dmf",
|
|
@@ -7441,7 +7437,10 @@
|
|
|
7441
7437
|
"application/zip",
|
|
7442
7438
|
"multipart/x-zip",
|
|
7443
7439
|
"text/x-script.zsh"
|
|
7444
|
-
]
|
|
7440
|
+
],
|
|
7441
|
+
"id": "MimeType",
|
|
7442
|
+
"title": "Mime Type",
|
|
7443
|
+
"description": "MIME type identifiers for file type validation and handling in CloudCannon."
|
|
7445
7444
|
},
|
|
7446
7445
|
"type._inputs.*.options.max_file_size": {
|
|
7447
7446
|
"id": "type._inputs.*.options.max_file_size",
|
|
@@ -7472,9 +7471,6 @@
|
|
|
7472
7471
|
"type": "boolean"
|
|
7473
7472
|
},
|
|
7474
7473
|
"UrlInput": {
|
|
7475
|
-
"id": "UrlInput",
|
|
7476
|
-
"title": "URL Input",
|
|
7477
|
-
"description": "Provides an editing interface for relative, absolute, and fully qualified URLs.",
|
|
7478
7474
|
"type": "object",
|
|
7479
7475
|
"properties": {
|
|
7480
7476
|
"comment": {
|
|
@@ -7506,13 +7502,12 @@
|
|
|
7506
7502
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
7507
7503
|
},
|
|
7508
7504
|
"type": {
|
|
7509
|
-
"title": "Type",
|
|
7510
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
7511
7505
|
"type": "string",
|
|
7512
|
-
"const": "url"
|
|
7506
|
+
"const": "url",
|
|
7507
|
+
"title": "Type",
|
|
7508
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
7513
7509
|
},
|
|
7514
7510
|
"options": {
|
|
7515
|
-
"description": "Options that are specific to URL Inputs.",
|
|
7516
7511
|
"type": "object",
|
|
7517
7512
|
"properties": {
|
|
7518
7513
|
"mime_type": {
|
|
@@ -7641,18 +7636,19 @@
|
|
|
7641
7636
|
"type": "boolean"
|
|
7642
7637
|
}
|
|
7643
7638
|
},
|
|
7644
|
-
"additionalProperties": false
|
|
7639
|
+
"additionalProperties": false,
|
|
7640
|
+
"description": "Options that are specific to URL Inputs."
|
|
7645
7641
|
}
|
|
7646
7642
|
},
|
|
7647
7643
|
"required": [
|
|
7648
7644
|
"type"
|
|
7649
7645
|
],
|
|
7650
|
-
"additionalProperties": false
|
|
7646
|
+
"additionalProperties": false,
|
|
7647
|
+
"id": "UrlInput",
|
|
7648
|
+
"title": "URL Input",
|
|
7649
|
+
"description": "Provides an editing interface for relative, absolute, and fully qualified URLs."
|
|
7651
7650
|
},
|
|
7652
7651
|
"SelectInput": {
|
|
7653
|
-
"id": "SelectInput",
|
|
7654
|
-
"title": "Select Input",
|
|
7655
|
-
"description": "Provides an editing interface for data with multiple predefined options. Select inputs only allow one value.",
|
|
7656
7652
|
"type": "object",
|
|
7657
7653
|
"properties": {
|
|
7658
7654
|
"comment": {
|
|
@@ -7684,13 +7680,12 @@
|
|
|
7684
7680
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
7685
7681
|
},
|
|
7686
7682
|
"type": {
|
|
7687
|
-
"title": "Type",
|
|
7688
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
7689
7683
|
"type": "string",
|
|
7690
|
-
"const": "select"
|
|
7684
|
+
"const": "select",
|
|
7685
|
+
"title": "Type",
|
|
7686
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
7691
7687
|
},
|
|
7692
7688
|
"options": {
|
|
7693
|
-
"description": "Options that are specific to Select Inputs.",
|
|
7694
7689
|
"type": "object",
|
|
7695
7690
|
"properties": {
|
|
7696
7691
|
"required": {
|
|
@@ -7775,17 +7770,19 @@
|
|
|
7775
7770
|
"$ref": "#/$defs/type._inputs.*.options.empty_type(text)"
|
|
7776
7771
|
}
|
|
7777
7772
|
},
|
|
7778
|
-
"additionalProperties": false
|
|
7773
|
+
"additionalProperties": false,
|
|
7774
|
+
"description": "Options that are specific to Select Inputs."
|
|
7779
7775
|
}
|
|
7780
7776
|
},
|
|
7781
7777
|
"required": [
|
|
7782
7778
|
"type"
|
|
7783
7779
|
],
|
|
7784
|
-
"additionalProperties": false
|
|
7780
|
+
"additionalProperties": false,
|
|
7781
|
+
"id": "SelectInput",
|
|
7782
|
+
"title": "Select Input",
|
|
7783
|
+
"description": "Provides an editing interface for data with multiple predefined options. Select inputs only allow one value."
|
|
7785
7784
|
},
|
|
7786
7785
|
"type.preview": {
|
|
7787
|
-
"id": "type.preview",
|
|
7788
|
-
"title": "Preview",
|
|
7789
7786
|
"type": "object",
|
|
7790
7787
|
"properties": {
|
|
7791
7788
|
"text": {
|
|
@@ -7816,7 +7813,9 @@
|
|
|
7816
7813
|
"$ref": "#/$defs/type.preview.gallery"
|
|
7817
7814
|
}
|
|
7818
7815
|
},
|
|
7819
|
-
"additionalProperties": false
|
|
7816
|
+
"additionalProperties": false,
|
|
7817
|
+
"id": "type.preview",
|
|
7818
|
+
"title": "Preview"
|
|
7820
7819
|
},
|
|
7821
7820
|
"type.preview.text": {
|
|
7822
7821
|
"id": "type.preview.text",
|
|
@@ -7857,7 +7856,6 @@
|
|
|
7857
7856
|
}
|
|
7858
7857
|
},
|
|
7859
7858
|
"PreviewMetadataEntry": {
|
|
7860
|
-
"id": "PreviewMetadataEntry",
|
|
7861
7859
|
"type": "object",
|
|
7862
7860
|
"properties": {
|
|
7863
7861
|
"text": {
|
|
@@ -7876,7 +7874,8 @@
|
|
|
7876
7874
|
"$ref": "#/$defs/type.preview.icon_background_color"
|
|
7877
7875
|
}
|
|
7878
7876
|
},
|
|
7879
|
-
"additionalProperties": false
|
|
7877
|
+
"additionalProperties": false,
|
|
7878
|
+
"id": "PreviewMetadataEntry"
|
|
7880
7879
|
},
|
|
7881
7880
|
"type.preview.gallery": {
|
|
7882
7881
|
"id": "type.preview.gallery",
|
|
@@ -7943,32 +7942,30 @@
|
|
|
7943
7942
|
"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).",
|
|
7944
7943
|
"anyOf": [
|
|
7945
7944
|
{
|
|
7945
|
+
"type": "string",
|
|
7946
7946
|
"title": "Dataset Reference",
|
|
7947
|
-
"description": "Reference to a dataset."
|
|
7948
|
-
"type": "string"
|
|
7947
|
+
"description": "Reference to a dataset."
|
|
7949
7948
|
},
|
|
7950
7949
|
{
|
|
7951
|
-
"description": "Data formats for populating select and multiselect input options, supporting arrays and objects.",
|
|
7952
7950
|
"anyOf": [
|
|
7953
7951
|
{
|
|
7954
|
-
"title": "Text Array",
|
|
7955
7952
|
"type": "array",
|
|
7956
7953
|
"items": {
|
|
7957
7954
|
"type": "string"
|
|
7958
|
-
}
|
|
7955
|
+
},
|
|
7956
|
+
"title": "Text Array"
|
|
7959
7957
|
},
|
|
7960
7958
|
{
|
|
7961
|
-
"title": "Text Object",
|
|
7962
7959
|
"type": "object",
|
|
7963
7960
|
"propertyNames": {
|
|
7964
7961
|
"type": "string"
|
|
7965
7962
|
},
|
|
7966
7963
|
"additionalProperties": {
|
|
7967
7964
|
"type": "string"
|
|
7968
|
-
}
|
|
7965
|
+
},
|
|
7966
|
+
"title": "Text Object"
|
|
7969
7967
|
},
|
|
7970
7968
|
{
|
|
7971
|
-
"title": "Object Array",
|
|
7972
7969
|
"type": "array",
|
|
7973
7970
|
"items": {
|
|
7974
7971
|
"type": "object",
|
|
@@ -7976,17 +7973,19 @@
|
|
|
7976
7973
|
"type": "string"
|
|
7977
7974
|
},
|
|
7978
7975
|
"additionalProperties": {}
|
|
7979
|
-
}
|
|
7976
|
+
},
|
|
7977
|
+
"title": "Object Array"
|
|
7980
7978
|
},
|
|
7981
7979
|
{
|
|
7982
|
-
"title": "Object",
|
|
7983
7980
|
"type": "object",
|
|
7984
7981
|
"propertyNames": {
|
|
7985
7982
|
"type": "string"
|
|
7986
7983
|
},
|
|
7987
|
-
"additionalProperties": {}
|
|
7984
|
+
"additionalProperties": {},
|
|
7985
|
+
"title": "Object"
|
|
7988
7986
|
}
|
|
7989
|
-
]
|
|
7987
|
+
],
|
|
7988
|
+
"description": "Data formats for populating select and multiselect input options, supporting arrays and objects."
|
|
7990
7989
|
}
|
|
7991
7990
|
]
|
|
7992
7991
|
},
|
|
@@ -8018,9 +8017,6 @@
|
|
|
8018
8017
|
]
|
|
8019
8018
|
},
|
|
8020
8019
|
"MultiselectInput": {
|
|
8021
|
-
"id": "MultiselectInput",
|
|
8022
|
-
"title": "Multiselect Input",
|
|
8023
|
-
"description": "Provides an editing interface for data with multiple predefined options. Multiselect inputs allow several values.",
|
|
8024
8020
|
"type": "object",
|
|
8025
8021
|
"properties": {
|
|
8026
8022
|
"comment": {
|
|
@@ -8052,13 +8048,12 @@
|
|
|
8052
8048
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
8053
8049
|
},
|
|
8054
8050
|
"type": {
|
|
8055
|
-
"title": "Type",
|
|
8056
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8057
8051
|
"type": "string",
|
|
8058
|
-
"const": "multiselect"
|
|
8052
|
+
"const": "multiselect",
|
|
8053
|
+
"title": "Type",
|
|
8054
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
8059
8055
|
},
|
|
8060
8056
|
"options": {
|
|
8061
|
-
"description": "Options that are specific to Multiselect Inputs.",
|
|
8062
8057
|
"type": "object",
|
|
8063
8058
|
"properties": {
|
|
8064
8059
|
"required": {
|
|
@@ -8113,13 +8108,17 @@
|
|
|
8113
8108
|
"$ref": "#/$defs/type._inputs.*.options.empty_type(array)"
|
|
8114
8109
|
}
|
|
8115
8110
|
},
|
|
8116
|
-
"additionalProperties": false
|
|
8111
|
+
"additionalProperties": false,
|
|
8112
|
+
"description": "Options that are specific to Multiselect Inputs."
|
|
8117
8113
|
}
|
|
8118
8114
|
},
|
|
8119
8115
|
"required": [
|
|
8120
8116
|
"type"
|
|
8121
8117
|
],
|
|
8122
|
-
"additionalProperties": false
|
|
8118
|
+
"additionalProperties": false,
|
|
8119
|
+
"id": "MultiselectInput",
|
|
8120
|
+
"title": "Multiselect Input",
|
|
8121
|
+
"description": "Provides an editing interface for data with multiple predefined options. Multiselect inputs allow several values."
|
|
8123
8122
|
},
|
|
8124
8123
|
"type._inputs.*.options.max_items": {
|
|
8125
8124
|
"id": "type._inputs.*.options.max_items",
|
|
@@ -8152,9 +8151,9 @@
|
|
|
8152
8151
|
"type": "string"
|
|
8153
8152
|
},
|
|
8154
8153
|
"type._inputs.*.options.empty_type(array)": {
|
|
8154
|
+
"default": "null",
|
|
8155
8155
|
"id": "type._inputs.*.options.empty_type(array)",
|
|
8156
8156
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8157
|
-
"default": "null",
|
|
8158
8157
|
"type": "string",
|
|
8159
8158
|
"enum": [
|
|
8160
8159
|
"null",
|
|
@@ -8162,9 +8161,6 @@
|
|
|
8162
8161
|
]
|
|
8163
8162
|
},
|
|
8164
8163
|
"ChoiceInput": {
|
|
8165
|
-
"id": "ChoiceInput",
|
|
8166
|
-
"title": "Choice Input",
|
|
8167
|
-
"description": "Provides an editing interface for data with multiple predefined options. Choice inputs only allow one value.",
|
|
8168
8164
|
"type": "object",
|
|
8169
8165
|
"properties": {
|
|
8170
8166
|
"comment": {
|
|
@@ -8196,13 +8192,12 @@
|
|
|
8196
8192
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
8197
8193
|
},
|
|
8198
8194
|
"type": {
|
|
8199
|
-
"title": "Type",
|
|
8200
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8201
8195
|
"type": "string",
|
|
8202
|
-
"const": "choice"
|
|
8196
|
+
"const": "choice",
|
|
8197
|
+
"title": "Type",
|
|
8198
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
8203
8199
|
},
|
|
8204
8200
|
"options": {
|
|
8205
|
-
"description": "Options that are specific to Choice Inputs.",
|
|
8206
8201
|
"type": "object",
|
|
8207
8202
|
"properties": {
|
|
8208
8203
|
"required": {
|
|
@@ -8284,18 +8279,19 @@
|
|
|
8284
8279
|
"$ref": "#/$defs/type._inputs.*.options.empty_type(text)"
|
|
8285
8280
|
}
|
|
8286
8281
|
},
|
|
8287
|
-
"additionalProperties": false
|
|
8282
|
+
"additionalProperties": false,
|
|
8283
|
+
"description": "Options that are specific to Choice Inputs."
|
|
8288
8284
|
}
|
|
8289
8285
|
},
|
|
8290
8286
|
"required": [
|
|
8291
8287
|
"type"
|
|
8292
8288
|
],
|
|
8293
|
-
"additionalProperties": false
|
|
8289
|
+
"additionalProperties": false,
|
|
8290
|
+
"id": "ChoiceInput",
|
|
8291
|
+
"title": "Choice Input",
|
|
8292
|
+
"description": "Provides an editing interface for data with multiple predefined options. Choice inputs only allow one value."
|
|
8294
8293
|
},
|
|
8295
8294
|
"MultichoiceInput": {
|
|
8296
|
-
"id": "MultichoiceInput",
|
|
8297
|
-
"title": "Multichoice Input",
|
|
8298
|
-
"description": "Provides an editing interface for data with multiple predefined options. Multichoice inputs allow several values.",
|
|
8299
8295
|
"type": "object",
|
|
8300
8296
|
"properties": {
|
|
8301
8297
|
"comment": {
|
|
@@ -8327,13 +8323,12 @@
|
|
|
8327
8323
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
8328
8324
|
},
|
|
8329
8325
|
"type": {
|
|
8330
|
-
"title": "Type",
|
|
8331
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8332
8326
|
"type": "string",
|
|
8333
|
-
"const": "multichoice"
|
|
8327
|
+
"const": "multichoice",
|
|
8328
|
+
"title": "Type",
|
|
8329
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
8334
8330
|
},
|
|
8335
8331
|
"options": {
|
|
8336
|
-
"description": "Options that are specific to Multichoice Inputs.",
|
|
8337
8332
|
"type": "object",
|
|
8338
8333
|
"properties": {
|
|
8339
8334
|
"required": {
|
|
@@ -8385,18 +8380,19 @@
|
|
|
8385
8380
|
"$ref": "#/$defs/type._inputs.*.options.empty_type(array)"
|
|
8386
8381
|
}
|
|
8387
8382
|
},
|
|
8388
|
-
"additionalProperties": false
|
|
8383
|
+
"additionalProperties": false,
|
|
8384
|
+
"description": "Options that are specific to Multichoice Inputs."
|
|
8389
8385
|
}
|
|
8390
8386
|
},
|
|
8391
8387
|
"required": [
|
|
8392
8388
|
"type"
|
|
8393
8389
|
],
|
|
8394
|
-
"additionalProperties": false
|
|
8390
|
+
"additionalProperties": false,
|
|
8391
|
+
"id": "MultichoiceInput",
|
|
8392
|
+
"title": "Multichoice Input",
|
|
8393
|
+
"description": "Provides an editing interface for data with multiple predefined options. Multichoice inputs allow several values."
|
|
8395
8394
|
},
|
|
8396
8395
|
"ObjectInput": {
|
|
8397
|
-
"id": "ObjectInput",
|
|
8398
|
-
"title": "Object Input",
|
|
8399
|
-
"description": "Provides a user interface for a group of inputs.",
|
|
8400
8396
|
"type": "object",
|
|
8401
8397
|
"properties": {
|
|
8402
8398
|
"comment": {
|
|
@@ -8428,13 +8424,12 @@
|
|
|
8428
8424
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
8429
8425
|
},
|
|
8430
8426
|
"type": {
|
|
8431
|
-
"title": "Type",
|
|
8432
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8433
8427
|
"type": "string",
|
|
8434
|
-
"const": "object"
|
|
8428
|
+
"const": "object",
|
|
8429
|
+
"title": "Type",
|
|
8430
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
8435
8431
|
},
|
|
8436
8432
|
"options": {
|
|
8437
|
-
"description": "Options that are specific to Object Inputs.",
|
|
8438
8433
|
"type": "object",
|
|
8439
8434
|
"properties": {
|
|
8440
8435
|
"required": {
|
|
@@ -8568,18 +8563,22 @@
|
|
|
8568
8563
|
]
|
|
8569
8564
|
}
|
|
8570
8565
|
},
|
|
8571
|
-
"additionalProperties": false
|
|
8566
|
+
"additionalProperties": false,
|
|
8567
|
+
"description": "Options that are specific to Object Inputs."
|
|
8572
8568
|
}
|
|
8573
8569
|
},
|
|
8574
8570
|
"required": [
|
|
8575
8571
|
"type"
|
|
8576
8572
|
],
|
|
8577
|
-
"additionalProperties": false
|
|
8573
|
+
"additionalProperties": false,
|
|
8574
|
+
"id": "ObjectInput",
|
|
8575
|
+
"title": "Object Input",
|
|
8576
|
+
"description": "Provides a user interface for a group of inputs."
|
|
8578
8577
|
},
|
|
8579
8578
|
"type._inputs.*.options.empty_type(object)": {
|
|
8579
|
+
"default": "null",
|
|
8580
8580
|
"id": "type._inputs.*.options.empty_type(object)",
|
|
8581
8581
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8582
|
-
"default": "null",
|
|
8583
8582
|
"type": "string",
|
|
8584
8583
|
"enum": [
|
|
8585
8584
|
"null",
|
|
@@ -8587,15 +8586,12 @@
|
|
|
8587
8586
|
]
|
|
8588
8587
|
},
|
|
8589
8588
|
"type.structure-reference": {
|
|
8589
|
+
"type": "string",
|
|
8590
8590
|
"id": "type.structure-reference",
|
|
8591
8591
|
"title": "Structure Reference",
|
|
8592
|
-
"description": "A reference to an existing structure."
|
|
8593
|
-
"type": "string"
|
|
8592
|
+
"description": "A reference to an existing structure."
|
|
8594
8593
|
},
|
|
8595
8594
|
"type.structure": {
|
|
8596
|
-
"id": "type.structure",
|
|
8597
|
-
"title": "Structure",
|
|
8598
|
-
"description": "Provides data formats when adding new items to arrays and objects, with options for how editors choose from available values.",
|
|
8599
8595
|
"type": "object",
|
|
8600
8596
|
"properties": {
|
|
8601
8597
|
"reorder_inputs": {
|
|
@@ -8619,11 +8615,11 @@
|
|
|
8619
8615
|
"type": "boolean"
|
|
8620
8616
|
},
|
|
8621
8617
|
"values": {
|
|
8622
|
-
"description": "Defines what values are available to add when using this structure.",
|
|
8623
8618
|
"type": "array",
|
|
8624
8619
|
"items": {
|
|
8625
8620
|
"$ref": "#/$defs/type.structure.values.[*]"
|
|
8626
|
-
}
|
|
8621
|
+
},
|
|
8622
|
+
"description": "Defines what values are available to add when using this structure."
|
|
8627
8623
|
},
|
|
8628
8624
|
"values_from_glob": {
|
|
8629
8625
|
"type": "array",
|
|
@@ -8649,12 +8645,12 @@
|
|
|
8649
8645
|
"required": [
|
|
8650
8646
|
"values"
|
|
8651
8647
|
],
|
|
8652
|
-
"additionalProperties": false
|
|
8648
|
+
"additionalProperties": false,
|
|
8649
|
+
"id": "type.structure",
|
|
8650
|
+
"title": "Structure",
|
|
8651
|
+
"description": "Provides data formats when adding new items to arrays and objects, with options for how editors choose from available values."
|
|
8653
8652
|
},
|
|
8654
8653
|
"type.structure.values.[*]": {
|
|
8655
|
-
"id": "type.structure.values.[*]",
|
|
8656
|
-
"title": "Structure Value",
|
|
8657
|
-
"description": "A single value option within a structure, defining the data format and appearance for content editors.",
|
|
8658
8654
|
"type": "object",
|
|
8659
8655
|
"properties": {
|
|
8660
8656
|
"reorder_inputs": {
|
|
@@ -8785,45 +8781,43 @@
|
|
|
8785
8781
|
"required": [
|
|
8786
8782
|
"value"
|
|
8787
8783
|
],
|
|
8788
|
-
"additionalProperties": false
|
|
8784
|
+
"additionalProperties": false,
|
|
8785
|
+
"id": "type.structure.values.[*]",
|
|
8786
|
+
"title": "Structure Value",
|
|
8787
|
+
"description": "A single value option within a structure, defining the data format and appearance for content editors."
|
|
8789
8788
|
},
|
|
8790
8789
|
"type._inputs_from_glob": {
|
|
8791
|
-
"id": "type._inputs_from_glob",
|
|
8792
8790
|
"type": "array",
|
|
8793
8791
|
"items": {
|
|
8794
8792
|
"type": "string"
|
|
8795
|
-
}
|
|
8793
|
+
},
|
|
8794
|
+
"id": "type._inputs_from_glob"
|
|
8796
8795
|
},
|
|
8797
8796
|
"type._select_data": {
|
|
8798
|
-
"id": "type._select_data",
|
|
8799
|
-
"title": "Select Data",
|
|
8800
|
-
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
8801
8797
|
"type": "object",
|
|
8802
8798
|
"propertyNames": {
|
|
8803
8799
|
"type": "string"
|
|
8804
8800
|
},
|
|
8805
8801
|
"additionalProperties": {
|
|
8806
|
-
"description": "Data formats for populating select and multiselect input options, supporting arrays and objects.",
|
|
8807
8802
|
"anyOf": [
|
|
8808
8803
|
{
|
|
8809
|
-
"title": "Text Array",
|
|
8810
8804
|
"type": "array",
|
|
8811
8805
|
"items": {
|
|
8812
8806
|
"type": "string"
|
|
8813
|
-
}
|
|
8807
|
+
},
|
|
8808
|
+
"title": "Text Array"
|
|
8814
8809
|
},
|
|
8815
8810
|
{
|
|
8816
|
-
"title": "Text Object",
|
|
8817
8811
|
"type": "object",
|
|
8818
8812
|
"propertyNames": {
|
|
8819
8813
|
"type": "string"
|
|
8820
8814
|
},
|
|
8821
8815
|
"additionalProperties": {
|
|
8822
8816
|
"type": "string"
|
|
8823
|
-
}
|
|
8817
|
+
},
|
|
8818
|
+
"title": "Text Object"
|
|
8824
8819
|
},
|
|
8825
8820
|
{
|
|
8826
|
-
"title": "Object Array",
|
|
8827
8821
|
"type": "array",
|
|
8828
8822
|
"items": {
|
|
8829
8823
|
"type": "object",
|
|
@@ -8831,37 +8825,42 @@
|
|
|
8831
8825
|
"type": "string"
|
|
8832
8826
|
},
|
|
8833
8827
|
"additionalProperties": {}
|
|
8834
|
-
}
|
|
8828
|
+
},
|
|
8829
|
+
"title": "Object Array"
|
|
8835
8830
|
},
|
|
8836
8831
|
{
|
|
8837
|
-
"title": "Object",
|
|
8838
8832
|
"type": "object",
|
|
8839
8833
|
"propertyNames": {
|
|
8840
8834
|
"type": "string"
|
|
8841
8835
|
},
|
|
8842
|
-
"additionalProperties": {}
|
|
8836
|
+
"additionalProperties": {},
|
|
8837
|
+
"title": "Object"
|
|
8843
8838
|
}
|
|
8844
|
-
]
|
|
8845
|
-
|
|
8839
|
+
],
|
|
8840
|
+
"description": "Data formats for populating select and multiselect input options, supporting arrays and objects."
|
|
8841
|
+
},
|
|
8842
|
+
"id": "type._select_data",
|
|
8843
|
+
"title": "Select Data",
|
|
8844
|
+
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs."
|
|
8846
8845
|
},
|
|
8847
8846
|
"type._structures": {
|
|
8848
|
-
"id": "type._structures",
|
|
8849
|
-
"title": "Structures",
|
|
8850
|
-
"description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs.",
|
|
8851
8847
|
"type": "object",
|
|
8852
8848
|
"propertyNames": {
|
|
8853
8849
|
"type": "string"
|
|
8854
8850
|
},
|
|
8855
8851
|
"additionalProperties": {
|
|
8856
8852
|
"$ref": "#/$defs/type.structure"
|
|
8857
|
-
}
|
|
8853
|
+
},
|
|
8854
|
+
"id": "type._structures",
|
|
8855
|
+
"title": "Structures",
|
|
8856
|
+
"description": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs."
|
|
8858
8857
|
},
|
|
8859
8858
|
"type._structures_from_glob": {
|
|
8860
|
-
"id": "type._structures_from_glob",
|
|
8861
8859
|
"type": "array",
|
|
8862
8860
|
"items": {
|
|
8863
8861
|
"type": "string"
|
|
8864
|
-
}
|
|
8862
|
+
},
|
|
8863
|
+
"id": "type._structures_from_glob"
|
|
8865
8864
|
},
|
|
8866
8865
|
"entries_comment": {
|
|
8867
8866
|
"id": "entries_comment",
|
|
@@ -8869,9 +8868,6 @@
|
|
|
8869
8868
|
"type": "string"
|
|
8870
8869
|
},
|
|
8871
8870
|
"ArrayInput": {
|
|
8872
|
-
"id": "ArrayInput",
|
|
8873
|
-
"title": "Array Input",
|
|
8874
|
-
"description": "Provides a user interface for lists of inputs or input groups.",
|
|
8875
8871
|
"type": "object",
|
|
8876
8872
|
"properties": {
|
|
8877
8873
|
"comment": {
|
|
@@ -8903,13 +8899,12 @@
|
|
|
8903
8899
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
8904
8900
|
},
|
|
8905
8901
|
"type": {
|
|
8906
|
-
"title": "Type",
|
|
8907
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
8908
8902
|
"type": "string",
|
|
8909
|
-
"const": "array"
|
|
8903
|
+
"const": "array",
|
|
8904
|
+
"title": "Type",
|
|
8905
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
8910
8906
|
},
|
|
8911
8907
|
"options": {
|
|
8912
|
-
"description": "Options that are specific to Array Inputs.",
|
|
8913
8908
|
"type": "object",
|
|
8914
8909
|
"properties": {
|
|
8915
8910
|
"required": {
|
|
@@ -8960,13 +8955,17 @@
|
|
|
8960
8955
|
]
|
|
8961
8956
|
}
|
|
8962
8957
|
},
|
|
8963
|
-
"additionalProperties": false
|
|
8958
|
+
"additionalProperties": false,
|
|
8959
|
+
"description": "Options that are specific to Array Inputs."
|
|
8964
8960
|
}
|
|
8965
8961
|
},
|
|
8966
8962
|
"required": [
|
|
8967
8963
|
"type"
|
|
8968
8964
|
],
|
|
8969
|
-
"additionalProperties": false
|
|
8965
|
+
"additionalProperties": false,
|
|
8966
|
+
"id": "ArrayInput",
|
|
8967
|
+
"title": "Array Input",
|
|
8968
|
+
"description": "Provides a user interface for lists of inputs or input groups."
|
|
8970
8969
|
},
|
|
8971
8970
|
"ArrayInput.disable_add": {
|
|
8972
8971
|
"id": "ArrayInput.disable_add",
|
|
@@ -8987,10 +8986,6 @@
|
|
|
8987
8986
|
"type": "boolean"
|
|
8988
8987
|
},
|
|
8989
8988
|
"AutoInput": {
|
|
8990
|
-
"id": "AutoInput",
|
|
8991
|
-
"title": "Automatic Input",
|
|
8992
|
-
"description": "Provides a default user interface based on the data contained.",
|
|
8993
|
-
"excludeFromDocumentation": true,
|
|
8994
8989
|
"type": "object",
|
|
8995
8990
|
"properties": {
|
|
8996
8991
|
"comment": {
|
|
@@ -9022,10 +9017,10 @@
|
|
|
9022
9017
|
"$ref": "#/$defs/type._inputs.*.cascade"
|
|
9023
9018
|
},
|
|
9024
9019
|
"type": {
|
|
9025
|
-
"title": "Type",
|
|
9026
|
-
"description": "Sets an input type, which controls how this input appears and behaves.",
|
|
9027
9020
|
"type": "string",
|
|
9028
|
-
"const": "auto"
|
|
9021
|
+
"const": "auto",
|
|
9022
|
+
"title": "Type",
|
|
9023
|
+
"description": "Sets an input type, which controls how this input appears and behaves."
|
|
9029
9024
|
},
|
|
9030
9025
|
"options": {
|
|
9031
9026
|
"description": "Options that are specific to this `type` of input."
|
|
@@ -9034,13 +9029,13 @@
|
|
|
9034
9029
|
"required": [
|
|
9035
9030
|
"type"
|
|
9036
9031
|
],
|
|
9037
|
-
"additionalProperties": false
|
|
9032
|
+
"additionalProperties": false,
|
|
9033
|
+
"id": "AutoInput",
|
|
9034
|
+
"title": "Automatic Input",
|
|
9035
|
+
"description": "Provides a default user interface based on the data contained.",
|
|
9036
|
+
"excludeFromDocumentation": true
|
|
9038
9037
|
},
|
|
9039
9038
|
"UnknownInput": {
|
|
9040
|
-
"id": "UnknownInput",
|
|
9041
|
-
"title": "Unknown Input",
|
|
9042
|
-
"description": "Provides a default user interface based on the data contained.",
|
|
9043
|
-
"excludeFromDocumentation": true,
|
|
9044
9039
|
"type": "object",
|
|
9045
9040
|
"properties": {
|
|
9046
9041
|
"comment": {
|
|
@@ -9075,7 +9070,11 @@
|
|
|
9075
9070
|
"description": "Options that are specific to this `type` of input."
|
|
9076
9071
|
}
|
|
9077
9072
|
},
|
|
9078
|
-
"additionalProperties": false
|
|
9073
|
+
"additionalProperties": false,
|
|
9074
|
+
"id": "UnknownInput",
|
|
9075
|
+
"title": "Unknown Input",
|
|
9076
|
+
"description": "Provides a default user interface based on the data contained.",
|
|
9077
|
+
"excludeFromDocumentation": true
|
|
9079
9078
|
},
|
|
9080
9079
|
"type._enabled_editors": {
|
|
9081
9080
|
"id": "type._enabled_editors",
|
|
@@ -9496,11 +9495,11 @@
|
|
|
9496
9495
|
"additionalProperties": false
|
|
9497
9496
|
},
|
|
9498
9497
|
"type._editables_from_glob": {
|
|
9499
|
-
"id": "type._editables_from_glob",
|
|
9500
9498
|
"type": "array",
|
|
9501
9499
|
"items": {
|
|
9502
9500
|
"type": "string"
|
|
9503
|
-
}
|
|
9501
|
+
},
|
|
9502
|
+
"id": "type._editables_from_glob"
|
|
9504
9503
|
},
|
|
9505
9504
|
"collection_groups": {
|
|
9506
9505
|
"id": "collection_groups",
|
|
@@ -9511,27 +9510,27 @@
|
|
|
9511
9510
|
}
|
|
9512
9511
|
},
|
|
9513
9512
|
"CollectionGroup": {
|
|
9514
|
-
"id": "CollectionGroup",
|
|
9515
|
-
"title": "Collection Group",
|
|
9516
9513
|
"type": "object",
|
|
9517
9514
|
"properties": {
|
|
9518
9515
|
"heading": {
|
|
9519
|
-
"
|
|
9520
|
-
"
|
|
9516
|
+
"type": "string",
|
|
9517
|
+
"description": "Short, descriptive label for this group of Collections."
|
|
9521
9518
|
},
|
|
9522
9519
|
"collections": {
|
|
9523
|
-
"description": "The collections shown in the sidebar for this group. Collections here are referenced by their key within `collections_config`.",
|
|
9524
9520
|
"type": "array",
|
|
9525
9521
|
"items": {
|
|
9526
9522
|
"type": "string"
|
|
9527
|
-
}
|
|
9523
|
+
},
|
|
9524
|
+
"description": "The collections shown in the sidebar for this group. Collections here are referenced by their key within `collections_config`."
|
|
9528
9525
|
}
|
|
9529
9526
|
},
|
|
9530
9527
|
"required": [
|
|
9531
9528
|
"heading",
|
|
9532
9529
|
"collections"
|
|
9533
9530
|
],
|
|
9534
|
-
"additionalProperties": false
|
|
9531
|
+
"additionalProperties": false,
|
|
9532
|
+
"id": "CollectionGroup",
|
|
9533
|
+
"title": "Collection Group"
|
|
9535
9534
|
},
|
|
9536
9535
|
"base_url": {
|
|
9537
9536
|
"id": "base_url",
|
|
@@ -9548,7 +9547,6 @@
|
|
|
9548
9547
|
}
|
|
9549
9548
|
},
|
|
9550
9549
|
"DataConfigEntry": {
|
|
9551
|
-
"id": "DataConfigEntry",
|
|
9552
9550
|
"type": "object",
|
|
9553
9551
|
"properties": {
|
|
9554
9552
|
"path": {
|
|
@@ -9558,7 +9556,8 @@
|
|
|
9558
9556
|
"required": [
|
|
9559
9557
|
"path"
|
|
9560
9558
|
],
|
|
9561
|
-
"additionalProperties": false
|
|
9559
|
+
"additionalProperties": false,
|
|
9560
|
+
"id": "DataConfigEntry"
|
|
9562
9561
|
},
|
|
9563
9562
|
"file_config": {
|
|
9564
9563
|
"id": "file_config",
|
|
@@ -9568,24 +9567,23 @@
|
|
|
9568
9567
|
}
|
|
9569
9568
|
},
|
|
9570
9569
|
"FileConfigEntry": {
|
|
9571
|
-
"id": "FileConfigEntry",
|
|
9572
9570
|
"type": "object",
|
|
9573
9571
|
"properties": {
|
|
9574
9572
|
"glob": {
|
|
9575
|
-
"description": "The glob pattern(s) targeting a path to one or more files.",
|
|
9576
9573
|
"anyOf": [
|
|
9577
9574
|
{
|
|
9578
|
-
"title": "Glob Array",
|
|
9579
9575
|
"type": "array",
|
|
9580
9576
|
"items": {
|
|
9581
9577
|
"type": "string"
|
|
9582
|
-
}
|
|
9578
|
+
},
|
|
9579
|
+
"title": "Glob Array"
|
|
9583
9580
|
},
|
|
9584
9581
|
{
|
|
9585
|
-
"
|
|
9586
|
-
"
|
|
9582
|
+
"type": "string",
|
|
9583
|
+
"title": "Glob"
|
|
9587
9584
|
}
|
|
9588
|
-
]
|
|
9585
|
+
],
|
|
9586
|
+
"description": "The glob pattern(s) targeting a path to one or more files."
|
|
9589
9587
|
},
|
|
9590
9588
|
"_inputs": {
|
|
9591
9589
|
"$ref": "#/$defs/type._inputs"
|
|
@@ -9615,7 +9613,8 @@
|
|
|
9615
9613
|
"required": [
|
|
9616
9614
|
"glob"
|
|
9617
9615
|
],
|
|
9618
|
-
"additionalProperties": false
|
|
9616
|
+
"additionalProperties": false,
|
|
9617
|
+
"id": "FileConfigEntry"
|
|
9619
9618
|
},
|
|
9620
9619
|
"editor": {
|
|
9621
9620
|
"id": "editor",
|
|
@@ -9631,8 +9630,8 @@
|
|
|
9631
9630
|
"additionalProperties": false
|
|
9632
9631
|
},
|
|
9633
9632
|
"editor.default_path": {
|
|
9634
|
-
"id": "editor.default_path",
|
|
9635
9633
|
"default": "/",
|
|
9634
|
+
"id": "editor.default_path",
|
|
9636
9635
|
"type": "string"
|
|
9637
9636
|
},
|
|
9638
9637
|
"source_editor": {
|
|
@@ -9662,8 +9661,6 @@
|
|
|
9662
9661
|
"id": "commit_templates",
|
|
9663
9662
|
"type": "array",
|
|
9664
9663
|
"items": {
|
|
9665
|
-
"title": "Commit Template",
|
|
9666
|
-
"description": "A template for commit messages when saving changes.",
|
|
9667
9664
|
"type": "object",
|
|
9668
9665
|
"properties": {
|
|
9669
9666
|
"label": {
|
|
@@ -9696,7 +9693,9 @@
|
|
|
9696
9693
|
"type": "number"
|
|
9697
9694
|
}
|
|
9698
9695
|
},
|
|
9699
|
-
"additionalProperties": false
|
|
9696
|
+
"additionalProperties": false,
|
|
9697
|
+
"title": "Commit Template",
|
|
9698
|
+
"description": "A template for commit messages when saving changes."
|
|
9700
9699
|
}
|
|
9701
9700
|
},
|
|
9702
9701
|
"upstream_commit_template": {
|
|
@@ -9705,8 +9704,6 @@
|
|
|
9705
9704
|
},
|
|
9706
9705
|
"markdown": {
|
|
9707
9706
|
"id": "markdown",
|
|
9708
|
-
"title": "Markdown Settings",
|
|
9709
|
-
"description": "Configuration for Markdown processing engines and formatting options.",
|
|
9710
9707
|
"type": "object",
|
|
9711
9708
|
"properties": {
|
|
9712
9709
|
"engine": {
|
|
@@ -9814,7 +9811,6 @@
|
|
|
9814
9811
|
},
|
|
9815
9812
|
"attribute_elements": {
|
|
9816
9813
|
"description": "Define positioning behavior of Markdown attributes for different elements.",
|
|
9817
|
-
"title": "Markdown Attribute Element Options",
|
|
9818
9814
|
"type": "object",
|
|
9819
9815
|
"properties": {
|
|
9820
9816
|
"inline": {
|
|
@@ -9826,18 +9822,18 @@
|
|
|
9826
9822
|
},
|
|
9827
9823
|
"additionalProperties": {
|
|
9828
9824
|
"$ref": "#/$defs/AttributeListPosition"
|
|
9829
|
-
}
|
|
9825
|
+
},
|
|
9826
|
+
"title": "Markdown Attribute Element Options"
|
|
9830
9827
|
}
|
|
9831
9828
|
},
|
|
9832
9829
|
"additionalProperties": false
|
|
9833
9830
|
}
|
|
9834
9831
|
},
|
|
9835
|
-
"additionalProperties": false
|
|
9832
|
+
"additionalProperties": false,
|
|
9833
|
+
"title": "Markdown Settings",
|
|
9834
|
+
"description": "Configuration for Markdown processing engines and formatting options."
|
|
9836
9835
|
},
|
|
9837
9836
|
"AttributeListPosition": {
|
|
9838
|
-
"id": "AttributeListPosition",
|
|
9839
|
-
"title": "Attribute List Position",
|
|
9840
|
-
"description": "Positioning options for Markdown attribute elements.",
|
|
9841
9837
|
"type": "string",
|
|
9842
9838
|
"enum": [
|
|
9843
9839
|
"none",
|
|
@@ -9846,7 +9842,10 @@
|
|
|
9846
9842
|
"below",
|
|
9847
9843
|
"newline below",
|
|
9848
9844
|
"right-of-prefix"
|
|
9849
|
-
]
|
|
9845
|
+
],
|
|
9846
|
+
"id": "AttributeListPosition",
|
|
9847
|
+
"title": "Attribute List Position",
|
|
9848
|
+
"description": "Positioning options for Markdown attribute elements."
|
|
9850
9849
|
},
|
|
9851
9850
|
"type._snippets": {
|
|
9852
9851
|
"id": "type._snippets",
|
|
@@ -9861,9 +9860,6 @@
|
|
|
9861
9860
|
}
|
|
9862
9861
|
},
|
|
9863
9862
|
"type.snippet": {
|
|
9864
|
-
"id": "type.snippet",
|
|
9865
|
-
"title": "Snippet",
|
|
9866
|
-
"description": "A snippet configuration.",
|
|
9867
9863
|
"type": "object",
|
|
9868
9864
|
"properties": {
|
|
9869
9865
|
"_inputs": {
|
|
@@ -9934,7 +9930,6 @@
|
|
|
9934
9930
|
"additionalProperties": {
|
|
9935
9931
|
"anyOf": [
|
|
9936
9932
|
{
|
|
9937
|
-
"title": "Argument List Parser Config",
|
|
9938
9933
|
"type": "object",
|
|
9939
9934
|
"properties": {
|
|
9940
9935
|
"parser": {
|
|
@@ -9961,10 +9956,10 @@
|
|
|
9961
9956
|
"parser",
|
|
9962
9957
|
"options"
|
|
9963
9958
|
],
|
|
9964
|
-
"additionalProperties": false
|
|
9959
|
+
"additionalProperties": false,
|
|
9960
|
+
"title": "Argument List Parser Config"
|
|
9965
9961
|
},
|
|
9966
9962
|
{
|
|
9967
|
-
"title": "Argument Parser Config",
|
|
9968
9963
|
"type": "object",
|
|
9969
9964
|
"properties": {
|
|
9970
9965
|
"parser": {
|
|
@@ -9988,10 +9983,10 @@
|
|
|
9988
9983
|
"parser",
|
|
9989
9984
|
"options"
|
|
9990
9985
|
],
|
|
9991
|
-
"additionalProperties": false
|
|
9986
|
+
"additionalProperties": false,
|
|
9987
|
+
"title": "Argument Parser Config"
|
|
9992
9988
|
},
|
|
9993
9989
|
{
|
|
9994
|
-
"title": "Content Parser Config",
|
|
9995
9990
|
"type": "object",
|
|
9996
9991
|
"properties": {
|
|
9997
9992
|
"parser": {
|
|
@@ -10058,10 +10053,10 @@
|
|
|
10058
10053
|
"parser",
|
|
10059
10054
|
"options"
|
|
10060
10055
|
],
|
|
10061
|
-
"additionalProperties": false
|
|
10056
|
+
"additionalProperties": false,
|
|
10057
|
+
"title": "Content Parser Config"
|
|
10062
10058
|
},
|
|
10063
10059
|
{
|
|
10064
|
-
"title": "Key Value List Parser Config",
|
|
10065
10060
|
"type": "object",
|
|
10066
10061
|
"properties": {
|
|
10067
10062
|
"parser": {
|
|
@@ -10093,10 +10088,10 @@
|
|
|
10093
10088
|
"required": [
|
|
10094
10089
|
"parser"
|
|
10095
10090
|
],
|
|
10096
|
-
"additionalProperties": false
|
|
10091
|
+
"additionalProperties": false,
|
|
10092
|
+
"title": "Key Value List Parser Config"
|
|
10097
10093
|
},
|
|
10098
10094
|
{
|
|
10099
|
-
"title": "Literal Parser Config",
|
|
10100
10095
|
"type": "object",
|
|
10101
10096
|
"properties": {
|
|
10102
10097
|
"parser": {
|
|
@@ -10132,10 +10127,10 @@
|
|
|
10132
10127
|
"parser",
|
|
10133
10128
|
"options"
|
|
10134
10129
|
],
|
|
10135
|
-
"additionalProperties": false
|
|
10130
|
+
"additionalProperties": false,
|
|
10131
|
+
"title": "Literal Parser Config"
|
|
10136
10132
|
},
|
|
10137
10133
|
{
|
|
10138
|
-
"title": "Optional Parser Config",
|
|
10139
10134
|
"type": "object",
|
|
10140
10135
|
"properties": {
|
|
10141
10136
|
"parser": {
|
|
@@ -10162,10 +10157,10 @@
|
|
|
10162
10157
|
"parser",
|
|
10163
10158
|
"options"
|
|
10164
10159
|
],
|
|
10165
|
-
"additionalProperties": false
|
|
10160
|
+
"additionalProperties": false,
|
|
10161
|
+
"title": "Optional Parser Config"
|
|
10166
10162
|
},
|
|
10167
10163
|
{
|
|
10168
|
-
"title": "Repeating Literal Parser Config",
|
|
10169
10164
|
"type": "object",
|
|
10170
10165
|
"properties": {
|
|
10171
10166
|
"parser": {
|
|
@@ -10198,10 +10193,10 @@
|
|
|
10198
10193
|
"parser",
|
|
10199
10194
|
"options"
|
|
10200
10195
|
],
|
|
10201
|
-
"additionalProperties": false
|
|
10196
|
+
"additionalProperties": false,
|
|
10197
|
+
"title": "Repeating Literal Parser Config"
|
|
10202
10198
|
},
|
|
10203
10199
|
{
|
|
10204
|
-
"title": "Repeating Parser Config",
|
|
10205
10200
|
"type": "object",
|
|
10206
10201
|
"properties": {
|
|
10207
10202
|
"parser": {
|
|
@@ -10240,10 +10235,10 @@
|
|
|
10240
10235
|
"parser",
|
|
10241
10236
|
"options"
|
|
10242
10237
|
],
|
|
10243
|
-
"additionalProperties": false
|
|
10238
|
+
"additionalProperties": false,
|
|
10239
|
+
"title": "Repeating Parser Config"
|
|
10244
10240
|
},
|
|
10245
10241
|
{
|
|
10246
|
-
"title": "Wrapper Parser Config",
|
|
10247
10242
|
"type": "object",
|
|
10248
10243
|
"properties": {
|
|
10249
10244
|
"parser": {
|
|
@@ -10273,13 +10268,17 @@
|
|
|
10273
10268
|
"parser",
|
|
10274
10269
|
"options"
|
|
10275
10270
|
],
|
|
10276
|
-
"additionalProperties": false
|
|
10271
|
+
"additionalProperties": false,
|
|
10272
|
+
"title": "Wrapper Parser Config"
|
|
10277
10273
|
}
|
|
10278
10274
|
]
|
|
10279
10275
|
}
|
|
10280
10276
|
}
|
|
10281
10277
|
},
|
|
10282
|
-
"additionalProperties": false
|
|
10278
|
+
"additionalProperties": false,
|
|
10279
|
+
"id": "type.snippet",
|
|
10280
|
+
"title": "Snippet",
|
|
10281
|
+
"description": "A snippet configuration."
|
|
10283
10282
|
},
|
|
10284
10283
|
"SnippetAlternateFormats": {
|
|
10285
10284
|
"id": "SnippetAlternateFormats",
|
|
@@ -10519,8 +10518,6 @@
|
|
|
10519
10518
|
"additionalProperties": false
|
|
10520
10519
|
},
|
|
10521
10520
|
"type._snippets_imports": {
|
|
10522
|
-
"id": "type._snippets_imports",
|
|
10523
|
-
"title": "Snippets Imports",
|
|
10524
10521
|
"type": "object",
|
|
10525
10522
|
"properties": {
|
|
10526
10523
|
"hugo": {
|
|
@@ -10548,7 +10545,9 @@
|
|
|
10548
10545
|
"$ref": "#/$defs/_snippets_imports.docusaurus_mdx"
|
|
10549
10546
|
}
|
|
10550
10547
|
},
|
|
10551
|
-
"additionalProperties": false
|
|
10548
|
+
"additionalProperties": false,
|
|
10549
|
+
"id": "type._snippets_imports",
|
|
10550
|
+
"title": "Snippets Imports"
|
|
10552
10551
|
},
|
|
10553
10552
|
"_snippets_imports.hugo": {
|
|
10554
10553
|
"id": "_snippets_imports.hugo",
|
|
@@ -10558,7 +10557,6 @@
|
|
|
10558
10557
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10559
10558
|
},
|
|
10560
10559
|
{
|
|
10561
|
-
"title": "Exclude List",
|
|
10562
10560
|
"type": "object",
|
|
10563
10561
|
"properties": {
|
|
10564
10562
|
"exclude": {
|
|
@@ -10568,10 +10566,10 @@
|
|
|
10568
10566
|
"required": [
|
|
10569
10567
|
"exclude"
|
|
10570
10568
|
],
|
|
10571
|
-
"additionalProperties": false
|
|
10569
|
+
"additionalProperties": false,
|
|
10570
|
+
"title": "Exclude List"
|
|
10572
10571
|
},
|
|
10573
10572
|
{
|
|
10574
|
-
"title": "Include List",
|
|
10575
10573
|
"type": "object",
|
|
10576
10574
|
"properties": {
|
|
10577
10575
|
"include": {
|
|
@@ -10581,30 +10579,31 @@
|
|
|
10581
10579
|
"required": [
|
|
10582
10580
|
"include"
|
|
10583
10581
|
],
|
|
10584
|
-
"additionalProperties": false
|
|
10582
|
+
"additionalProperties": false,
|
|
10583
|
+
"title": "Include List"
|
|
10585
10584
|
}
|
|
10586
10585
|
]
|
|
10587
10586
|
},
|
|
10588
10587
|
"type._snippets_imports.*.(full-import)": {
|
|
10588
|
+
"type": "boolean",
|
|
10589
10589
|
"id": "type._snippets_imports.*.(full-import)",
|
|
10590
|
-
"title": "Full Import"
|
|
10591
|
-
"type": "boolean"
|
|
10590
|
+
"title": "Full Import"
|
|
10592
10591
|
},
|
|
10593
10592
|
"SnippetImportExclude": {
|
|
10594
|
-
"id": "SnippetImportExclude",
|
|
10595
|
-
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`.",
|
|
10596
10593
|
"type": "array",
|
|
10597
10594
|
"items": {
|
|
10598
10595
|
"type": "string"
|
|
10599
|
-
}
|
|
10596
|
+
},
|
|
10597
|
+
"id": "SnippetImportExclude",
|
|
10598
|
+
"description": "The list of excluded snippets. If unset, all snippets are excluded unless defined in `include`."
|
|
10600
10599
|
},
|
|
10601
10600
|
"SnippetImportInclude": {
|
|
10602
|
-
"id": "SnippetImportInclude",
|
|
10603
|
-
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`.",
|
|
10604
10601
|
"type": "array",
|
|
10605
10602
|
"items": {
|
|
10606
10603
|
"type": "string"
|
|
10607
|
-
}
|
|
10604
|
+
},
|
|
10605
|
+
"id": "SnippetImportInclude",
|
|
10606
|
+
"description": "The list of included snippets. If unset, all snippets are included unless defined in `exclude`."
|
|
10608
10607
|
},
|
|
10609
10608
|
"_snippets_imports.jekyll": {
|
|
10610
10609
|
"id": "_snippets_imports.jekyll",
|
|
@@ -10614,7 +10613,6 @@
|
|
|
10614
10613
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10615
10614
|
},
|
|
10616
10615
|
{
|
|
10617
|
-
"title": "Exclude List",
|
|
10618
10616
|
"type": "object",
|
|
10619
10617
|
"properties": {
|
|
10620
10618
|
"exclude": {
|
|
@@ -10624,10 +10622,10 @@
|
|
|
10624
10622
|
"required": [
|
|
10625
10623
|
"exclude"
|
|
10626
10624
|
],
|
|
10627
|
-
"additionalProperties": false
|
|
10625
|
+
"additionalProperties": false,
|
|
10626
|
+
"title": "Exclude List"
|
|
10628
10627
|
},
|
|
10629
10628
|
{
|
|
10630
|
-
"title": "Include List",
|
|
10631
10629
|
"type": "object",
|
|
10632
10630
|
"properties": {
|
|
10633
10631
|
"include": {
|
|
@@ -10637,7 +10635,8 @@
|
|
|
10637
10635
|
"required": [
|
|
10638
10636
|
"include"
|
|
10639
10637
|
],
|
|
10640
|
-
"additionalProperties": false
|
|
10638
|
+
"additionalProperties": false,
|
|
10639
|
+
"title": "Include List"
|
|
10641
10640
|
}
|
|
10642
10641
|
]
|
|
10643
10642
|
},
|
|
@@ -10649,7 +10648,6 @@
|
|
|
10649
10648
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10650
10649
|
},
|
|
10651
10650
|
{
|
|
10652
|
-
"title": "Exclude List",
|
|
10653
10651
|
"type": "object",
|
|
10654
10652
|
"properties": {
|
|
10655
10653
|
"exclude": {
|
|
@@ -10659,10 +10657,10 @@
|
|
|
10659
10657
|
"required": [
|
|
10660
10658
|
"exclude"
|
|
10661
10659
|
],
|
|
10662
|
-
"additionalProperties": false
|
|
10660
|
+
"additionalProperties": false,
|
|
10661
|
+
"title": "Exclude List"
|
|
10663
10662
|
},
|
|
10664
10663
|
{
|
|
10665
|
-
"title": "Include List",
|
|
10666
10664
|
"type": "object",
|
|
10667
10665
|
"properties": {
|
|
10668
10666
|
"include": {
|
|
@@ -10672,7 +10670,8 @@
|
|
|
10672
10670
|
"required": [
|
|
10673
10671
|
"include"
|
|
10674
10672
|
],
|
|
10675
|
-
"additionalProperties": false
|
|
10673
|
+
"additionalProperties": false,
|
|
10674
|
+
"title": "Include List"
|
|
10676
10675
|
}
|
|
10677
10676
|
]
|
|
10678
10677
|
},
|
|
@@ -10684,7 +10683,6 @@
|
|
|
10684
10683
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10685
10684
|
},
|
|
10686
10685
|
{
|
|
10687
|
-
"title": "Exclude List",
|
|
10688
10686
|
"type": "object",
|
|
10689
10687
|
"properties": {
|
|
10690
10688
|
"exclude": {
|
|
@@ -10694,10 +10692,10 @@
|
|
|
10694
10692
|
"required": [
|
|
10695
10693
|
"exclude"
|
|
10696
10694
|
],
|
|
10697
|
-
"additionalProperties": false
|
|
10695
|
+
"additionalProperties": false,
|
|
10696
|
+
"title": "Exclude List"
|
|
10698
10697
|
},
|
|
10699
10698
|
{
|
|
10700
|
-
"title": "Include List",
|
|
10701
10699
|
"type": "object",
|
|
10702
10700
|
"properties": {
|
|
10703
10701
|
"include": {
|
|
@@ -10707,7 +10705,8 @@
|
|
|
10707
10705
|
"required": [
|
|
10708
10706
|
"include"
|
|
10709
10707
|
],
|
|
10710
|
-
"additionalProperties": false
|
|
10708
|
+
"additionalProperties": false,
|
|
10709
|
+
"title": "Include List"
|
|
10711
10710
|
}
|
|
10712
10711
|
]
|
|
10713
10712
|
},
|
|
@@ -10719,7 +10718,6 @@
|
|
|
10719
10718
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10720
10719
|
},
|
|
10721
10720
|
{
|
|
10722
|
-
"title": "Exclude List",
|
|
10723
10721
|
"type": "object",
|
|
10724
10722
|
"properties": {
|
|
10725
10723
|
"exclude": {
|
|
@@ -10729,10 +10727,10 @@
|
|
|
10729
10727
|
"required": [
|
|
10730
10728
|
"exclude"
|
|
10731
10729
|
],
|
|
10732
|
-
"additionalProperties": false
|
|
10730
|
+
"additionalProperties": false,
|
|
10731
|
+
"title": "Exclude List"
|
|
10733
10732
|
},
|
|
10734
10733
|
{
|
|
10735
|
-
"title": "Include List",
|
|
10736
10734
|
"type": "object",
|
|
10737
10735
|
"properties": {
|
|
10738
10736
|
"include": {
|
|
@@ -10742,7 +10740,8 @@
|
|
|
10742
10740
|
"required": [
|
|
10743
10741
|
"include"
|
|
10744
10742
|
],
|
|
10745
|
-
"additionalProperties": false
|
|
10743
|
+
"additionalProperties": false,
|
|
10744
|
+
"title": "Include List"
|
|
10746
10745
|
}
|
|
10747
10746
|
]
|
|
10748
10747
|
},
|
|
@@ -10754,7 +10753,6 @@
|
|
|
10754
10753
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10755
10754
|
},
|
|
10756
10755
|
{
|
|
10757
|
-
"title": "Exclude List",
|
|
10758
10756
|
"type": "object",
|
|
10759
10757
|
"properties": {
|
|
10760
10758
|
"exclude": {
|
|
@@ -10764,10 +10762,10 @@
|
|
|
10764
10762
|
"required": [
|
|
10765
10763
|
"exclude"
|
|
10766
10764
|
],
|
|
10767
|
-
"additionalProperties": false
|
|
10765
|
+
"additionalProperties": false,
|
|
10766
|
+
"title": "Exclude List"
|
|
10768
10767
|
},
|
|
10769
10768
|
{
|
|
10770
|
-
"title": "Include List",
|
|
10771
10769
|
"type": "object",
|
|
10772
10770
|
"properties": {
|
|
10773
10771
|
"include": {
|
|
@@ -10777,7 +10775,8 @@
|
|
|
10777
10775
|
"required": [
|
|
10778
10776
|
"include"
|
|
10779
10777
|
],
|
|
10780
|
-
"additionalProperties": false
|
|
10778
|
+
"additionalProperties": false,
|
|
10779
|
+
"title": "Include List"
|
|
10781
10780
|
}
|
|
10782
10781
|
]
|
|
10783
10782
|
},
|
|
@@ -10789,7 +10788,6 @@
|
|
|
10789
10788
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10790
10789
|
},
|
|
10791
10790
|
{
|
|
10792
|
-
"title": "Exclude List",
|
|
10793
10791
|
"type": "object",
|
|
10794
10792
|
"properties": {
|
|
10795
10793
|
"exclude": {
|
|
@@ -10799,10 +10797,10 @@
|
|
|
10799
10797
|
"required": [
|
|
10800
10798
|
"exclude"
|
|
10801
10799
|
],
|
|
10802
|
-
"additionalProperties": false
|
|
10800
|
+
"additionalProperties": false,
|
|
10801
|
+
"title": "Exclude List"
|
|
10803
10802
|
},
|
|
10804
10803
|
{
|
|
10805
|
-
"title": "Include List",
|
|
10806
10804
|
"type": "object",
|
|
10807
10805
|
"properties": {
|
|
10808
10806
|
"include": {
|
|
@@ -10812,7 +10810,8 @@
|
|
|
10812
10810
|
"required": [
|
|
10813
10811
|
"include"
|
|
10814
10812
|
],
|
|
10815
|
-
"additionalProperties": false
|
|
10813
|
+
"additionalProperties": false,
|
|
10814
|
+
"title": "Include List"
|
|
10816
10815
|
}
|
|
10817
10816
|
]
|
|
10818
10817
|
},
|
|
@@ -10824,7 +10823,6 @@
|
|
|
10824
10823
|
"$ref": "#/$defs/type._snippets_imports.*.(full-import)"
|
|
10825
10824
|
},
|
|
10826
10825
|
{
|
|
10827
|
-
"title": "Exclude List",
|
|
10828
10826
|
"type": "object",
|
|
10829
10827
|
"properties": {
|
|
10830
10828
|
"exclude": {
|
|
@@ -10834,10 +10832,10 @@
|
|
|
10834
10832
|
"required": [
|
|
10835
10833
|
"exclude"
|
|
10836
10834
|
],
|
|
10837
|
-
"additionalProperties": false
|
|
10835
|
+
"additionalProperties": false,
|
|
10836
|
+
"title": "Exclude List"
|
|
10838
10837
|
},
|
|
10839
10838
|
{
|
|
10840
|
-
"title": "Include List",
|
|
10841
10839
|
"type": "object",
|
|
10842
10840
|
"properties": {
|
|
10843
10841
|
"include": {
|
|
@@ -10847,7 +10845,8 @@
|
|
|
10847
10845
|
"required": [
|
|
10848
10846
|
"include"
|
|
10849
10847
|
],
|
|
10850
|
-
"additionalProperties": false
|
|
10848
|
+
"additionalProperties": false,
|
|
10849
|
+
"title": "Include List"
|
|
10851
10850
|
}
|
|
10852
10851
|
]
|
|
10853
10852
|
},
|
|
@@ -10876,9 +10875,6 @@
|
|
|
10876
10875
|
}
|
|
10877
10876
|
},
|
|
10878
10877
|
"type.snippet-definition-value": {
|
|
10879
|
-
"id": "type.snippet-definition-value",
|
|
10880
|
-
"title": "Snippet Definition Value",
|
|
10881
|
-
"description": "A reusable value that can be referenced in snippet templates via { ref: \"key\" } or { spread_ref: \"key\" }.",
|
|
10882
10878
|
"anyOf": [
|
|
10883
10879
|
{
|
|
10884
10880
|
"$ref": "#/$defs/type.snippet-format"
|
|
@@ -10887,50 +10883,50 @@
|
|
|
10887
10883
|
"$ref": "#/$defs/type.snippet-model"
|
|
10888
10884
|
},
|
|
10889
10885
|
{
|
|
10890
|
-
"title": "Parser Model Array",
|
|
10891
|
-
"description": "An array of model configurations, typically used for positional_args or named_args.",
|
|
10892
10886
|
"type": "array",
|
|
10893
10887
|
"items": {
|
|
10894
10888
|
"$ref": "#/$defs/type.snippet-model"
|
|
10895
|
-
}
|
|
10889
|
+
},
|
|
10890
|
+
"title": "Parser Model Array",
|
|
10891
|
+
"description": "An array of model configurations, typically used for positional_args or named_args."
|
|
10896
10892
|
},
|
|
10897
10893
|
{
|
|
10898
|
-
"title": "Select Values Array",
|
|
10899
|
-
"description": "An array of select options, typically used for language lists.",
|
|
10900
10894
|
"type": "array",
|
|
10901
10895
|
"items": {
|
|
10902
10896
|
"$ref": "#/$defs/type.snippet-definition-select-value"
|
|
10903
|
-
}
|
|
10897
|
+
},
|
|
10898
|
+
"title": "Select Values Array",
|
|
10899
|
+
"description": "An array of select options, typically used for language lists."
|
|
10904
10900
|
},
|
|
10905
10901
|
{
|
|
10902
|
+
"type": "string",
|
|
10906
10903
|
"title": "String Value",
|
|
10907
|
-
"description": "A string value, commonly used for shortcode_name, tag_name, content_key, and similar definitions."
|
|
10908
|
-
"type": "string"
|
|
10904
|
+
"description": "A string value, commonly used for shortcode_name, tag_name, content_key, and similar definitions."
|
|
10909
10905
|
},
|
|
10910
10906
|
{
|
|
10907
|
+
"type": "number",
|
|
10911
10908
|
"title": "Number Value",
|
|
10912
|
-
"description": "A numeric value."
|
|
10913
|
-
"type": "number"
|
|
10909
|
+
"description": "A numeric value."
|
|
10914
10910
|
},
|
|
10915
10911
|
{
|
|
10912
|
+
"type": "boolean",
|
|
10916
10913
|
"title": "Boolean Value",
|
|
10917
|
-
"description": "A boolean value."
|
|
10918
|
-
"type": "boolean"
|
|
10914
|
+
"description": "A boolean value."
|
|
10919
10915
|
},
|
|
10920
10916
|
{
|
|
10921
|
-
"title": "String Array",
|
|
10922
|
-
"description": "An array of strings.",
|
|
10923
10917
|
"type": "array",
|
|
10924
10918
|
"items": {
|
|
10925
10919
|
"type": "string"
|
|
10926
|
-
}
|
|
10920
|
+
},
|
|
10921
|
+
"title": "String Array",
|
|
10922
|
+
"description": "An array of strings."
|
|
10927
10923
|
}
|
|
10928
|
-
]
|
|
10924
|
+
],
|
|
10925
|
+
"id": "type.snippet-definition-value",
|
|
10926
|
+
"title": "Snippet Definition Value",
|
|
10927
|
+
"description": "A reusable value that can be referenced in snippet templates via { ref: \"key\" } or { spread_ref: \"key\" }."
|
|
10929
10928
|
},
|
|
10930
10929
|
"type.snippet-definition-select-value": {
|
|
10931
|
-
"id": "type.snippet-definition-select-value",
|
|
10932
|
-
"title": "Snippet Definition Select Value",
|
|
10933
|
-
"description": "A value option for select inputs, typically used in language lists.",
|
|
10934
10930
|
"type": "object",
|
|
10935
10931
|
"properties": {
|
|
10936
10932
|
"name": {
|
|
@@ -10938,27 +10934,30 @@
|
|
|
10938
10934
|
"type": "string"
|
|
10939
10935
|
},
|
|
10940
10936
|
"value": {
|
|
10941
|
-
"description": "The value for this option.",
|
|
10942
10937
|
"anyOf": [
|
|
10943
10938
|
{
|
|
10944
|
-
"
|
|
10945
|
-
"
|
|
10939
|
+
"type": "string",
|
|
10940
|
+
"title": "String"
|
|
10946
10941
|
},
|
|
10947
10942
|
{
|
|
10948
|
-
"
|
|
10949
|
-
"
|
|
10943
|
+
"type": "number",
|
|
10944
|
+
"title": "Number"
|
|
10950
10945
|
},
|
|
10951
10946
|
{
|
|
10952
|
-
"
|
|
10953
|
-
"
|
|
10947
|
+
"type": "boolean",
|
|
10948
|
+
"title": "Boolean"
|
|
10954
10949
|
}
|
|
10955
|
-
]
|
|
10950
|
+
],
|
|
10951
|
+
"description": "The value for this option."
|
|
10956
10952
|
}
|
|
10957
10953
|
},
|
|
10958
10954
|
"required": [
|
|
10959
10955
|
"value"
|
|
10960
10956
|
],
|
|
10961
|
-
"additionalProperties": false
|
|
10957
|
+
"additionalProperties": false,
|
|
10958
|
+
"id": "type.snippet-definition-select-value",
|
|
10959
|
+
"title": "Snippet Definition Select Value",
|
|
10960
|
+
"description": "A value option for select inputs, typically used in language lists."
|
|
10962
10961
|
}
|
|
10963
10962
|
}
|
|
10964
10963
|
}
|