-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathshopware-extension-schema.json
More file actions
592 lines (592 loc) · 16.7 KB
/
shopware-extension-schema.json
File metadata and controls
592 lines (592 loc) · 16.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/shopware/shopware-cli/internal/extension/config",
"$ref": "#/$defs/Config",
"$defs": {
"ChangelogConfig": {
"properties": {
"enabled": {
"type": "boolean",
"description": "Specifies whether the changelog should be generated."
},
"pattern": {
"type": "string",
"description": "Specifies the pattern to match the commits."
},
"template": {
"type": "string",
"description": "Specifies the template to use for the changelog."
},
"variables": {
"additionalProperties": {
"type": "string"
},
"type": "object",
"description": "Specifies the variables to use for the changelog."
}
},
"additionalProperties": false,
"type": "object"
},
"Config": {
"properties": {
"compatibility_date": {
"type": "string",
"format": "date",
"description": "Controls date-based compatibility behavior, formatted as YYYY-MM-DD."
},
"store": {
"$ref": "#/$defs/ConfigStore",
"description": "Store is the store configuration of the extension."
},
"build": {
"$ref": "#/$defs/ConfigBuild",
"description": "Build is the build configuration of the extension."
},
"changelog": {
"$ref": "#/$defs/ChangelogConfig",
"description": "Changelog is the changelog configuration of the extension."
},
"validation": {
"$ref": "#/$defs/ConfigValidation",
"description": "Validation is the validation configuration of the extension."
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigBuild": {
"properties": {
"extraBundles": {
"items": {
"$ref": "#/$defs/ConfigExtraBundle"
},
"type": "array",
"description": "ExtraBundles can be used to declare additional bundles to be considered for building"
},
"shopwareVersionConstraint": {
"type": "string",
"description": "Override the shopware version constraint for building, can be used to specify the version of the shopware to use for building"
},
"zip": {
"$ref": "#/$defs/ConfigBuildZip",
"description": "Configuration for zipping"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigBuildZip": {
"properties": {
"composer": {
"$ref": "#/$defs/ConfigBuildZipComposer",
"description": "Configuration for composer"
},
"assets": {
"$ref": "#/$defs/ConfigBuildZipAssets",
"description": "Configuration for assets"
},
"pack": {
"$ref": "#/$defs/ConfigBuildZipPack",
"description": "Configuration for packing"
},
"checksum": {
"$ref": "#/$defs/ConfigBuildZipChecksum"
}
},
"additionalProperties": false,
"type": "object",
"description": "Configuration for zipping."
},
"ConfigBuildZipAssets": {
"properties": {
"enabled": {
"type": "boolean",
"description": "When enabled, the shopware-cli build the assets"
},
"before_hooks": {
"items": {
"type": "string"
},
"type": "array",
"description": "Commands to run before the assets build"
},
"after_hooks": {
"items": {
"type": "string"
},
"type": "array",
"description": "Commands to run after the assets build"
},
"enable_es_build_for_admin": {
"type": "boolean",
"description": "When enabled, builtin esbuild will be used for the admin assets"
},
"enable_es_build_for_storefront": {
"type": "boolean",
"description": "When enabled, builtin esbuild will be used for the storefront assets"
},
"disable_sass": {
"type": "boolean",
"description": "When disabled, builtin sass support will be disabled"
},
"npm_strict": {
"type": "boolean",
"description": "When enabled, npm will install only production dependencies"
},
"additional_caches": {
"items": {
"$ref": "#/$defs/ConfigBuildZipAssetsAdditionalCache"
},
"type": "array",
"description": "Additional paths to include in asset caching"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigBuildZipAssetsAdditionalCache": {
"properties": {
"path": {
"type": "string",
"description": "The output path to cache, relative to extension root"
},
"source_paths": {
"items": {
"type": "string"
},
"type": "array",
"description": "Source paths to hash for the cache key, relative to extension root"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigBuildZipChecksum": {
"properties": {
"ignore": {
"items": {
"type": "string"
},
"type": "array",
"description": "Following files will be excluded from the checksum calculation"
}
},
"additionalProperties": false,
"type": "object",
"description": "Configuration for checksum calculation."
},
"ConfigBuildZipComposer": {
"properties": {
"enabled": {
"type": "boolean",
"description": "When enabled, a vendor folder will be created in the zip build"
},
"before_hooks": {
"items": {
"type": "string"
},
"type": "array",
"description": "Commands to run before the composer install"
},
"after_hooks": {
"items": {
"type": "string"
},
"type": "array",
"description": "Commands to run after the composer install"
},
"excluded_packages": {
"items": {
"type": "string"
},
"type": "array",
"description": "Composer packages to be excluded from the zip build"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigBuildZipPack": {
"properties": {
"excludes": {
"$ref": "#/$defs/ConfigBuildZipPackExcludes",
"description": "Excludes can be used to exclude files from the zip build"
},
"before_hooks": {
"items": {
"type": "string"
},
"type": "array",
"description": "Commands to run before the pack"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigBuildZipPackExcludes": {
"properties": {
"paths": {
"items": {
"type": "string"
},
"type": "array",
"description": "Paths to exclude from the zip build"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigExtraBundle": {
"properties": {
"path": {
"type": "string",
"description": "Path to the bundle, relative from the extension root (src folder)"
},
"name": {
"type": "string",
"description": "Name of the bundle, if empty the folder name of path will be used"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigStore": {
"properties": {
"availabilities": {
"items": {
"type": "string",
"enum": [
"German",
"International"
]
},
"type": "array",
"description": "Specifies the visibility in stores."
},
"default_locale": {
"type": "string",
"enum": [
"de_DE",
"en_GB"
],
"description": "Specifies the default locale."
},
"localizations": {
"items": {
"type": "string",
"enum": [
"de_DE",
"en_GB",
"bs_BA",
"bg_BG",
"cs_CZ",
"da_DK",
"de_CH",
"el_GR",
"en_US",
"es_ES",
"fi_FI",
"fr_FR",
"hi_IN",
"hr_HR",
"hu_HU",
"hy",
"id_ID",
"it_IT",
"ko_KR",
"lv_LV",
"ms_MY",
"nl_NL",
"pl_PL",
"pt_BR",
"pt_PT",
"ro_RO",
"ru_RU",
"sk_SK",
"sl_SI",
"sr_RS",
"sv_SE",
"th_TH",
"tr_TR",
"uk_UA",
"vi_VN",
"zh_CN",
"zh_TW"
]
},
"type": "array",
"description": "Specifies the languages the extension is translated."
},
"categories": {
"items": {
"type": "string",
"enum": [
"Administration",
"SEOOptimierung",
"Bonitaetsprüfung",
"Rechtssicherheit",
"Auswertung",
"KommentarFeedback",
"Tracking",
"Integration",
"PreissuchmaschinenPortale",
"Warenwirtschaft",
"Versand",
"Bezahlung",
"StorefrontDetailanpassungen",
"Sprache",
"Suche",
"HeaderFooter",
"Detailseite",
"MenueKategorien",
"Bestellprozess",
"KundenkontoPersonalisierung",
"Sonderfunktionen",
"Themes",
"Branche",
"Home+Furnishings",
"FashionBekleidung",
"GartenNatur",
"KosmetikGesundheit",
"EssenTrinken",
"KinderPartyGeschenke",
"SportLifestyleReisen",
"Bauhaus",
"Elektronik",
"Geraete",
"Heimkueche",
"Hobby",
"Kueche",
"Lebensmittel",
"Medizin",
"Mode",
"Musik",
"Spiel",
"Technik",
"Umweltschutz",
"Wohnen",
"Zubehoer"
]
},
"type": "array",
"description": "Specifies the categories."
},
"type": {
"type": "string",
"enum": [
"extension",
"theme"
],
"description": "Specifies the type of the extension."
},
"icon": {
"type": "string",
"description": "Specifies the Path to the icon (256x256 px) for store."
},
"automatic_bugfix_version_compatibility": {
"type": "boolean",
"description": "Specifies whether the extension should automatically be set compatible with Shopware bugfix versions."
},
"meta_title": {
"$ref": "#/$defs/ConfigTranslated[string]",
"description": "Specifies the meta title of the extension in store."
},
"meta_description": {
"$ref": "#/$defs/ConfigTranslated[string]",
"description": "Specifies the meta description of the extension in store."
},
"description": {
"$ref": "#/$defs/ConfigTranslated[string]",
"description": "Specifies the description of the extension in store."
},
"installation_manual": {
"$ref": "#/$defs/ConfigTranslated[string]",
"description": "Installation manual of the extension in store."
},
"tags": {
"$ref": "#/$defs/ConfigTranslated[[]string]",
"description": "Specifies the tags of the extension."
},
"videos": {
"$ref": "#/$defs/ConfigTranslated[[]string]",
"description": "Specifies the links of YouTube-Videos to show or describe the extension."
},
"highlights": {
"$ref": "#/$defs/ConfigTranslated[[]string]",
"description": "Specifies the highlights of the extension."
},
"features": {
"$ref": "#/$defs/ConfigTranslated[[]string]",
"description": "Specifies the features of the extension."
},
"faq": {
"$ref": "#/$defs/ConfigTranslated[ConfigStoreFaq]",
"description": "Specifies Frequently Asked Questions for the extension."
},
"images": {
"items": {
"$ref": "#/$defs/ConfigStoreImage"
},
"type": "array",
"description": "Specifies images for the extension in the store."
},
"image_directory": {
"type": "string",
"description": "Specifies the directory where the images are located."
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigStoreFaq": {
"properties": {
"question": {
"type": "string"
},
"answer": {
"type": "string"
},
"position": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigStoreImage": {
"properties": {
"file": {
"type": "string",
"description": "File path to image relative from root of the extension"
},
"activate": {
"$ref": "#/$defs/ConfigStoreImageActivate",
"description": "Specifies whether the image is active in the language."
},
"preview": {
"$ref": "#/$defs/ConfigStoreImagePreview",
"description": "Specifies whether the image is a preview in the language."
},
"priority": {
"type": "integer",
"description": "Specifies the order of the image ascending the given priority."
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigStoreImageActivate": {
"properties": {
"de": {
"type": "boolean"
},
"en": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigStoreImagePreview": {
"properties": {
"de": {
"type": "boolean"
},
"en": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigTranslated[ConfigStoreFaq]": {
"properties": {
"de": {
"items": {
"$ref": "#/$defs/ConfigStoreFaq"
},
"type": "array"
},
"en": {
"items": {
"$ref": "#/$defs/ConfigStoreFaq"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigTranslated[[]string]": {
"properties": {
"de": {
"items": {
"type": "string"
},
"type": "array"
},
"en": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigTranslated[string]": {
"properties": {
"de": {
"type": "string"
},
"en": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigValidation": {
"properties": {
"ignore": {
"$ref": "#/$defs/ConfigValidationList",
"description": "Ignore items from the validation."
},
"store_compliance": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object",
"description": "ConfigValidation is used to configure the extension validation."
},
"ConfigValidationList": {
"items": {
"$ref": "#/$defs/ToolConfigIgnore"
},
"type": "array"
},
"ToolConfigIgnore": {
"oneOf": [
{
"properties": {
"identifier": {
"type": "string",
"description": "The identifier of the item to ignore."
},
"path": {
"type": "string",
"description": "The path of the item to ignore."
}
},
"type": "object"
},
{
"type": "string"
}
]
}
}
}