@segha/catalog 1.1.0 → 2.0.0

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.
Files changed (95) hide show
  1. package/CHANGELOG.md +80 -0
  2. package/README.md +61 -61
  3. package/en/Clothing/Cares.ts +27 -0
  4. package/en/Clothing/Colors.ts +54 -0
  5. package/en/Clothing/Fit.ts +10 -0
  6. package/en/Clothing/Formality.ts +9 -0
  7. package/en/Clothing/Garment.ts +97 -0
  8. package/en/Clothing/Layer.ts +8 -0
  9. package/en/Clothing/Materials.ts +45 -0
  10. package/en/Clothing/Measurements.ts +5 -0
  11. package/en/Clothing/Season.ts +8 -0
  12. package/en/Clothing/Size.ts +47 -0
  13. package/en/Clothing/Slot.ts +10 -0
  14. package/en/Clothing/Status.ts +9 -0
  15. package/en/Clothing/UseCases.ts +20 -0
  16. package/en/Clothing/Variants.ts +73 -0
  17. package/en/Clothing/index.ts +51 -0
  18. package/en/Clothing/types.ts +9 -0
  19. package/en/index.ts +2 -0
  20. package/en/types.ts +2 -0
  21. package/index.ts +2 -2
  22. package/json-schemas/CatalogClothingSchema.json +176 -177
  23. package/json-schemas/ClothingSchema.json +195 -196
  24. package/json-schemas/DetailedClothingSchema.json +17 -17
  25. package/json-schemas/MetaClothingSchema.json +4 -4
  26. package/json-schemas/en/CatalogClothingSchema.json +292 -0
  27. package/json-schemas/en/Clothing/Accessories.json +18 -0
  28. package/json-schemas/en/Clothing/AdditionalFeatures.json +9 -0
  29. package/json-schemas/en/Clothing/BaseColor.json +19 -0
  30. package/json-schemas/en/Clothing/Bottom.json +12 -0
  31. package/json-schemas/en/Clothing/Care.json +13 -0
  32. package/json-schemas/en/Clothing/Cares.json +17 -0
  33. package/json-schemas/en/Clothing/CatalogClothingSchema.json +292 -0
  34. package/json-schemas/en/Clothing/Closures.json +11 -0
  35. package/json-schemas/en/Clothing/ClothingSchema.json +388 -0
  36. package/json-schemas/en/Clothing/Color.json +26 -0
  37. package/json-schemas/en/Clothing/CommonFabric.json +15 -0
  38. package/json-schemas/en/Clothing/DetailedClothingSchema.json +75 -0
  39. package/json-schemas/en/Clothing/Dress.json +9 -0
  40. package/json-schemas/en/Clothing/Fit.json +13 -0
  41. package/json-schemas/en/Clothing/Formality.json +12 -0
  42. package/json-schemas/en/Clothing/Garment.json +56 -0
  43. package/json-schemas/en/Clothing/Home.json +9 -0
  44. package/json-schemas/en/Clothing/Ironing.json +8 -0
  45. package/json-schemas/en/Clothing/Layer.json +10 -0
  46. package/json-schemas/en/Clothing/Material.json +28 -0
  47. package/json-schemas/en/Clothing/Materials.json +32 -0
  48. package/json-schemas/en/Clothing/Measurements.json +8 -0
  49. package/json-schemas/en/Clothing/MetaClothingSchema.json +41 -0
  50. package/json-schemas/en/Clothing/MetallicColor.json +9 -0
  51. package/json-schemas/en/Clothing/NaturalMaterial.json +13 -0
  52. package/json-schemas/en/Clothing/Necks.json +15 -0
  53. package/json-schemas/en/Clothing/Outerwear.json +9 -0
  54. package/json-schemas/en/Clothing/Pants.json +11 -0
  55. package/json-schemas/en/Clothing/PantsSize.json +17 -0
  56. package/json-schemas/en/Clothing/Pattern.json +17 -0
  57. package/json-schemas/en/Clothing/PrimaryColor.json +27 -0
  58. package/json-schemas/en/Clothing/Season.json +11 -0
  59. package/json-schemas/en/Clothing/SecondaryColor.json +27 -0
  60. package/json-schemas/en/Clothing/Shoes.json +11 -0
  61. package/json-schemas/en/Clothing/ShoesSize.json +16 -0
  62. package/json-schemas/en/Clothing/Size.json +29 -0
  63. package/json-schemas/en/Clothing/Sleeves.json +9 -0
  64. package/json-schemas/en/Clothing/Slot.json +13 -0
  65. package/json-schemas/en/Clothing/SpecialColor.json +10 -0
  66. package/json-schemas/en/Clothing/SpecialCuts.json +9 -0
  67. package/json-schemas/en/Clothing/Sportswear.json +11 -0
  68. package/json-schemas/en/Clothing/Status.json +13 -0
  69. package/json-schemas/en/Clothing/Swimsuits.json +9 -0
  70. package/json-schemas/en/Clothing/SyntheticMaterial.json +12 -0
  71. package/json-schemas/en/Clothing/Temperature.json +8 -0
  72. package/json-schemas/en/Clothing/Top.json +16 -0
  73. package/json-schemas/en/Clothing/TopsSize.json +13 -0
  74. package/json-schemas/en/Clothing/Underwear.json +12 -0
  75. package/json-schemas/en/Clothing/UseCase.json +18 -0
  76. package/json-schemas/en/Clothing/UseCases.json +22 -0
  77. package/json-schemas/en/Clothing/Variant.json +37 -0
  78. package/json-schemas/en/Clothing/Variants.json +41 -0
  79. package/json-schemas/en/Clothing/WashType.json +9 -0
  80. package/json-schemas/en/Clothing/index.json +1602 -0
  81. package/json-schemas/en/ClothingSchema.json +388 -0
  82. package/json-schemas/en/DetailedClothingSchema.json +75 -0
  83. package/json-schemas/en/MetaClothingSchema.json +41 -0
  84. package/json-schemas/en/index.json +803 -0
  85. package/json-schemas/es/Clothing/index.json +838 -40
  86. package/json-schemas/index.json +392 -394
  87. package/package.json +11 -3
  88. /package/es/Clothing/{layer.ts → Layer.ts} +0 -0
  89. /package/es/Clothing/{materials.ts → Materials.ts} +0 -0
  90. /package/es/Clothing/{measurements.ts → Measurements.ts} +0 -0
  91. /package/es/Clothing/{season.ts → Season.ts} +0 -0
  92. /package/es/Clothing/{size.ts → Size.ts} +0 -0
  93. /package/es/Clothing/{slot.ts → Slot.ts} +0 -0
  94. /package/es/Clothing/{status.ts → Status.ts} +0 -0
  95. /package/es/Clothing/{variants.ts → Variants.ts} +0 -0
@@ -0,0 +1,1602 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "@segha/catalog/en/Clothing",
4
+ "description": "Schemas for Petroglyph Catalog",
5
+ "$defs": {
6
+ "Care": {
7
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
8
+ "type": "string",
9
+ "enum": [
10
+ "Hand Wash",
11
+ "Machine Wash",
12
+ "Dry Clean",
13
+ "Cold",
14
+ "Hot",
15
+ "Ironing",
16
+ "Steam Ironing"
17
+ ]
18
+ },
19
+ "Cares": {
20
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
21
+ "description": "Care Instructions",
22
+ "type": "array",
23
+ "items": {
24
+ "type": "string",
25
+ "enum": [
26
+ "Hand Wash",
27
+ "Machine Wash",
28
+ "Dry Clean",
29
+ "Cold",
30
+ "Hot",
31
+ "Ironing",
32
+ "Steam Ironing"
33
+ ]
34
+ }
35
+ },
36
+ "Ironing": {
37
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
38
+ "type": "string",
39
+ "enum": [
40
+ "Ironing",
41
+ "Steam Ironing"
42
+ ]
43
+ },
44
+ "Temperature": {
45
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
46
+ "type": "string",
47
+ "enum": [
48
+ "Cold",
49
+ "Hot"
50
+ ]
51
+ },
52
+ "WashType": {
53
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
54
+ "type": "string",
55
+ "enum": [
56
+ "Hand Wash",
57
+ "Machine Wash",
58
+ "Dry Clean"
59
+ ]
60
+ },
61
+ "BaseColor": {
62
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
63
+ "type": "string",
64
+ "enum": [
65
+ "White",
66
+ "Black",
67
+ "Gray",
68
+ "Beige",
69
+ "Brown",
70
+ "Blue",
71
+ "Green",
72
+ "Red",
73
+ "Burgundy",
74
+ "Pink",
75
+ "Yellow",
76
+ "Orange",
77
+ "Purple"
78
+ ]
79
+ },
80
+ "Color": {
81
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
82
+ "type": "string",
83
+ "enum": [
84
+ "White",
85
+ "Black",
86
+ "Gray",
87
+ "Beige",
88
+ "Brown",
89
+ "Blue",
90
+ "Green",
91
+ "Red",
92
+ "Burgundy",
93
+ "Pink",
94
+ "Yellow",
95
+ "Orange",
96
+ "Purple",
97
+ "Camel",
98
+ "Khaki",
99
+ "Navy",
100
+ "Cream",
101
+ "Gold",
102
+ "Silver",
103
+ "Bronze"
104
+ ]
105
+ },
106
+ "MetallicColor": {
107
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
108
+ "type": "string",
109
+ "enum": [
110
+ "Gold",
111
+ "Silver",
112
+ "Bronze"
113
+ ]
114
+ },
115
+ "Pattern": {
116
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
117
+ "description": "Pattern",
118
+ "type": "string",
119
+ "enum": [
120
+ "Solid",
121
+ "Stripes",
122
+ "Plaid",
123
+ "Polka Dots",
124
+ "Animal Print",
125
+ "Floral",
126
+ "Geometric",
127
+ "Camouflage",
128
+ "Graphic Print",
129
+ "Gradient"
130
+ ]
131
+ },
132
+ "PrimaryColor": {
133
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
134
+ "type": "string",
135
+ "enum": [
136
+ "White",
137
+ "Black",
138
+ "Gray",
139
+ "Beige",
140
+ "Brown",
141
+ "Blue",
142
+ "Green",
143
+ "Red",
144
+ "Burgundy",
145
+ "Pink",
146
+ "Yellow",
147
+ "Orange",
148
+ "Purple",
149
+ "Camel",
150
+ "Khaki",
151
+ "Navy",
152
+ "Cream",
153
+ "Gold",
154
+ "Silver",
155
+ "Bronze"
156
+ ],
157
+ "description": "Primary color"
158
+ },
159
+ "SecondaryColor": {
160
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
161
+ "description": "Secondary color",
162
+ "type": "string",
163
+ "enum": [
164
+ "White",
165
+ "Black",
166
+ "Gray",
167
+ "Beige",
168
+ "Brown",
169
+ "Blue",
170
+ "Green",
171
+ "Red",
172
+ "Burgundy",
173
+ "Pink",
174
+ "Yellow",
175
+ "Orange",
176
+ "Purple",
177
+ "Camel",
178
+ "Khaki",
179
+ "Navy",
180
+ "Cream",
181
+ "Gold",
182
+ "Silver",
183
+ "Bronze"
184
+ ]
185
+ },
186
+ "SpecialColor": {
187
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
188
+ "type": "string",
189
+ "enum": [
190
+ "Camel",
191
+ "Khaki",
192
+ "Navy",
193
+ "Cream"
194
+ ]
195
+ },
196
+ "Fit": {
197
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
198
+ "description": "Fit",
199
+ "type": "string",
200
+ "enum": [
201
+ "Fitted",
202
+ "Slim",
203
+ "Regular",
204
+ "Relaxed",
205
+ "Loose",
206
+ "Oversized"
207
+ ]
208
+ },
209
+ "Formality": {
210
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
211
+ "description": "Formality",
212
+ "type": "string",
213
+ "enum": [
214
+ "Very Casual",
215
+ "Casual",
216
+ "Smart Casual",
217
+ "Formal",
218
+ "Black Tie"
219
+ ]
220
+ },
221
+ "Accessories": {
222
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
223
+ "type": "string",
224
+ "enum": [
225
+ "Belts",
226
+ "Caps",
227
+ "Hats",
228
+ "Scarves",
229
+ "Gloves",
230
+ "Handbags",
231
+ "Backpacks",
232
+ "Sunglasses",
233
+ "Handkerchiefs",
234
+ "Watches",
235
+ "Jewelry"
236
+ ],
237
+ "description": "Accessories"
238
+ },
239
+ "Bottom": {
240
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
241
+ "type": "string",
242
+ "enum": [
243
+ "Pants",
244
+ "Jeans",
245
+ "Chinos",
246
+ "Skirts",
247
+ "Shorts"
248
+ ],
249
+ "description": "Bottom"
250
+ },
251
+ "Dress": {
252
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
253
+ "type": "string",
254
+ "enum": [
255
+ "Dresses",
256
+ "Jumpsuits"
257
+ ],
258
+ "description": "One-piece"
259
+ },
260
+ "Garment": {
261
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
262
+ "type": "string",
263
+ "enum": [
264
+ "Undershirts",
265
+ "Boxers",
266
+ "Panties",
267
+ "Bras",
268
+ "Socks",
269
+ "T-Shirts",
270
+ "Polo Shirts",
271
+ "Shirts",
272
+ "Blouses",
273
+ "Tops",
274
+ "Sweaters",
275
+ "Hoodies",
276
+ "Cardigans",
277
+ "Jackets",
278
+ "Pants",
279
+ "Jeans",
280
+ "Chinos",
281
+ "Skirts",
282
+ "Shorts",
283
+ "Blazers",
284
+ "Coats",
285
+ "Trench Coats",
286
+ "Parkas",
287
+ "Vests",
288
+ "Leggings",
289
+ "Technical Wear",
290
+ "Sports Shorts",
291
+ "Technical T-Shirts",
292
+ "Dresses",
293
+ "Jumpsuits",
294
+ "Sneakers",
295
+ "Shoes",
296
+ "Boots",
297
+ "Sandals",
298
+ "Belts",
299
+ "Caps",
300
+ "Hats",
301
+ "Scarves",
302
+ "Gloves",
303
+ "Handbags",
304
+ "Backpacks",
305
+ "Sunglasses",
306
+ "Handkerchiefs",
307
+ "Watches",
308
+ "Jewelry",
309
+ "Pajamas",
310
+ "Robes",
311
+ "Swimsuits",
312
+ "Bikinis"
313
+ ],
314
+ "description": "Garment Type"
315
+ },
316
+ "Home": {
317
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
318
+ "type": "string",
319
+ "enum": [
320
+ "Pajamas",
321
+ "Robes"
322
+ ],
323
+ "description": "Homewear"
324
+ },
325
+ "Outerwear": {
326
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
327
+ "type": "string",
328
+ "enum": [
329
+ "Trench",
330
+ "Puffer",
331
+ "Double Breasted"
332
+ ]
333
+ },
334
+ "Shoes": {
335
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
336
+ "type": "string",
337
+ "enum": [
338
+ "Sneakers",
339
+ "Shoes",
340
+ "Boots",
341
+ "Sandals"
342
+ ],
343
+ "description": "Footwear"
344
+ },
345
+ "Sportswear": {
346
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
347
+ "type": "string",
348
+ "enum": [
349
+ "Leggings",
350
+ "Technical Wear",
351
+ "Sports Shorts",
352
+ "Technical T-Shirts"
353
+ ],
354
+ "description": "Sportswear"
355
+ },
356
+ "Swimsuits": {
357
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
358
+ "type": "string",
359
+ "enum": [
360
+ "Swimsuits",
361
+ "Bikinis"
362
+ ],
363
+ "description": "Swimwear"
364
+ },
365
+ "Top": {
366
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
367
+ "type": "string",
368
+ "enum": [
369
+ "T-Shirts",
370
+ "Polo Shirts",
371
+ "Shirts",
372
+ "Blouses",
373
+ "Tops",
374
+ "Sweaters",
375
+ "Hoodies",
376
+ "Cardigans",
377
+ "Jackets"
378
+ ],
379
+ "description": "Top"
380
+ },
381
+ "Underwear": {
382
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
383
+ "type": "string",
384
+ "enum": [
385
+ "Undershirts",
386
+ "Boxers",
387
+ "Panties",
388
+ "Bras",
389
+ "Socks"
390
+ ],
391
+ "description": "Underwear"
392
+ },
393
+ "Layer": {
394
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
395
+ "type": "string",
396
+ "enum": [
397
+ "Base",
398
+ "Mid",
399
+ "Outer"
400
+ ],
401
+ "description": "Thermal Layer"
402
+ },
403
+ "CommonFabric": {
404
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
405
+ "type": "string",
406
+ "enum": [
407
+ "Denim",
408
+ "Knit",
409
+ "Fleece",
410
+ "Tweed",
411
+ "Satin",
412
+ "Velvet",
413
+ "Jacquard",
414
+ "Flannel",
415
+ "Gabardine"
416
+ ]
417
+ },
418
+ "Material": {
419
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
420
+ "type": "string",
421
+ "enum": [
422
+ "Cotton",
423
+ "Linen",
424
+ "Wool",
425
+ "Silk",
426
+ "Leather",
427
+ "Cashmere",
428
+ "Suede",
429
+ "Polyester",
430
+ "Nylon",
431
+ "Elastane",
432
+ "Viscose",
433
+ "Synthetic Leather",
434
+ "Gore-Tex",
435
+ "Denim",
436
+ "Knit",
437
+ "Fleece",
438
+ "Tweed",
439
+ "Satin",
440
+ "Velvet",
441
+ "Jacquard",
442
+ "Flannel",
443
+ "Gabardine"
444
+ ]
445
+ },
446
+ "Materials": {
447
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
448
+ "description": "Materials",
449
+ "type": "array",
450
+ "items": {
451
+ "type": "string",
452
+ "enum": [
453
+ "Cotton",
454
+ "Linen",
455
+ "Wool",
456
+ "Silk",
457
+ "Leather",
458
+ "Cashmere",
459
+ "Suede",
460
+ "Polyester",
461
+ "Nylon",
462
+ "Elastane",
463
+ "Viscose",
464
+ "Synthetic Leather",
465
+ "Gore-Tex",
466
+ "Denim",
467
+ "Knit",
468
+ "Fleece",
469
+ "Tweed",
470
+ "Satin",
471
+ "Velvet",
472
+ "Jacquard",
473
+ "Flannel",
474
+ "Gabardine"
475
+ ]
476
+ }
477
+ },
478
+ "NaturalMaterial": {
479
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
480
+ "type": "string",
481
+ "enum": [
482
+ "Cotton",
483
+ "Linen",
484
+ "Wool",
485
+ "Silk",
486
+ "Leather",
487
+ "Cashmere",
488
+ "Suede"
489
+ ]
490
+ },
491
+ "SyntheticMaterial": {
492
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
493
+ "type": "string",
494
+ "enum": [
495
+ "Polyester",
496
+ "Nylon",
497
+ "Elastane",
498
+ "Viscose",
499
+ "Synthetic Leather",
500
+ "Gore-Tex"
501
+ ]
502
+ },
503
+ "Measurements": {
504
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
505
+ "description": "Measurements",
506
+ "type": "array",
507
+ "items": {
508
+ "type": "number"
509
+ }
510
+ },
511
+ "Season": {
512
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
513
+ "description": "Seasons",
514
+ "type": "string",
515
+ "enum": [
516
+ "Winter",
517
+ "Summer",
518
+ "Spring/Fall",
519
+ "All Year"
520
+ ]
521
+ },
522
+ "PantsSize": {
523
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
524
+ "type": "string",
525
+ "enum": [
526
+ "28",
527
+ "30",
528
+ "32",
529
+ "34",
530
+ "36",
531
+ "38",
532
+ "40",
533
+ "42",
534
+ "44",
535
+ "46",
536
+ "48"
537
+ ]
538
+ },
539
+ "ShoesSize": {
540
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
541
+ "type": "string",
542
+ "enum": [
543
+ "36",
544
+ "37",
545
+ "38",
546
+ "39",
547
+ "40",
548
+ "41",
549
+ "42",
550
+ "43",
551
+ "44",
552
+ "45"
553
+ ]
554
+ },
555
+ "Size": {
556
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
557
+ "type": "string",
558
+ "enum": [
559
+ "28",
560
+ "30",
561
+ "32",
562
+ "34",
563
+ "36",
564
+ "37",
565
+ "38",
566
+ "39",
567
+ "40",
568
+ "41",
569
+ "42",
570
+ "43",
571
+ "44",
572
+ "45",
573
+ "46",
574
+ "48",
575
+ "XS",
576
+ "S",
577
+ "M",
578
+ "L",
579
+ "XL",
580
+ "XXL",
581
+ "XXXL"
582
+ ]
583
+ },
584
+ "TopsSize": {
585
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
586
+ "type": "string",
587
+ "enum": [
588
+ "XS",
589
+ "S",
590
+ "M",
591
+ "L",
592
+ "XL",
593
+ "XXL",
594
+ "XXXL"
595
+ ]
596
+ },
597
+ "Slot": {
598
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
599
+ "type": "string",
600
+ "enum": [
601
+ "Top",
602
+ "Bottom",
603
+ "Full Body",
604
+ "Outer",
605
+ "Footwear",
606
+ "Accessories"
607
+ ],
608
+ "description": "Outfit part"
609
+ },
610
+ "Status": {
611
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
612
+ "default": "Good",
613
+ "description": "Status",
614
+ "type": "string",
615
+ "enum": [
616
+ "New",
617
+ "Good",
618
+ "Worn",
619
+ "Damaged",
620
+ "Retire"
621
+ ]
622
+ },
623
+ "UseCase": {
624
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
625
+ "type": "string",
626
+ "enum": [
627
+ "Capsule",
628
+ "Favorite",
629
+ "Basic",
630
+ "Sport",
631
+ "Work",
632
+ "Event",
633
+ "Travel",
634
+ "Home",
635
+ "Party",
636
+ "Beach",
637
+ "Rain",
638
+ "Extreme Cold"
639
+ ]
640
+ },
641
+ "UseCases": {
642
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
643
+ "description": "Use cases",
644
+ "type": "array",
645
+ "items": {
646
+ "type": "string",
647
+ "enum": [
648
+ "Capsule",
649
+ "Favorite",
650
+ "Basic",
651
+ "Sport",
652
+ "Work",
653
+ "Event",
654
+ "Travel",
655
+ "Home",
656
+ "Party",
657
+ "Beach",
658
+ "Rain",
659
+ "Extreme Cold"
660
+ ]
661
+ }
662
+ },
663
+ "AdditionalFeatures": {
664
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
665
+ "type": "string",
666
+ "enum": [
667
+ "Pockets",
668
+ "No Pockets",
669
+ "Reversible"
670
+ ]
671
+ },
672
+ "Closures": {
673
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
674
+ "type": "string",
675
+ "enum": [
676
+ "Buttons",
677
+ "Zipper",
678
+ "Velcro",
679
+ "Laces",
680
+ "Snaps"
681
+ ]
682
+ },
683
+ "Necks": {
684
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
685
+ "type": "string",
686
+ "enum": [
687
+ "Round Neck",
688
+ "V-Neck",
689
+ "High Neck",
690
+ "Shirt Collar",
691
+ "Polo Collar",
692
+ "Boat Neck",
693
+ "Mandarin Collar",
694
+ "Funnel Neck",
695
+ "Hood"
696
+ ]
697
+ },
698
+ "Pants": {
699
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
700
+ "type": "string",
701
+ "enum": [
702
+ "Straight Leg",
703
+ "Skinny",
704
+ "Wide",
705
+ "Cargo",
706
+ "Flared"
707
+ ]
708
+ },
709
+ "Sleeves": {
710
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
711
+ "type": "string",
712
+ "enum": [
713
+ "Sleeveless",
714
+ "Short Sleeves",
715
+ "Long Sleeves"
716
+ ]
717
+ },
718
+ "SpecialCuts": {
719
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
720
+ "type": "string",
721
+ "enum": [
722
+ "Overshirt",
723
+ "Cropped",
724
+ "Long"
725
+ ]
726
+ },
727
+ "Variant": {
728
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
729
+ "type": "string",
730
+ "enum": [
731
+ "Sleeveless",
732
+ "Short Sleeves",
733
+ "Long Sleeves",
734
+ "Round Neck",
735
+ "V-Neck",
736
+ "High Neck",
737
+ "Shirt Collar",
738
+ "Polo Collar",
739
+ "Boat Neck",
740
+ "Mandarin Collar",
741
+ "Funnel Neck",
742
+ "Hood",
743
+ "Overshirt",
744
+ "Cropped",
745
+ "Long",
746
+ "Straight Leg",
747
+ "Skinny",
748
+ "Wide",
749
+ "Cargo",
750
+ "Flared",
751
+ "Trench",
752
+ "Puffer",
753
+ "Double Breasted",
754
+ "Buttons",
755
+ "Zipper",
756
+ "Velcro",
757
+ "Laces",
758
+ "Snaps",
759
+ "Pockets",
760
+ "No Pockets",
761
+ "Reversible"
762
+ ]
763
+ },
764
+ "Variants": {
765
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
766
+ "description": "Structural Details",
767
+ "type": "array",
768
+ "items": {
769
+ "type": "string",
770
+ "enum": [
771
+ "Sleeveless",
772
+ "Short Sleeves",
773
+ "Long Sleeves",
774
+ "Round Neck",
775
+ "V-Neck",
776
+ "High Neck",
777
+ "Shirt Collar",
778
+ "Polo Collar",
779
+ "Boat Neck",
780
+ "Mandarin Collar",
781
+ "Funnel Neck",
782
+ "Hood",
783
+ "Overshirt",
784
+ "Cropped",
785
+ "Long",
786
+ "Straight Leg",
787
+ "Skinny",
788
+ "Wide",
789
+ "Cargo",
790
+ "Flared",
791
+ "Trench",
792
+ "Puffer",
793
+ "Double Breasted",
794
+ "Buttons",
795
+ "Zipper",
796
+ "Velcro",
797
+ "Laces",
798
+ "Snaps",
799
+ "Pockets",
800
+ "No Pockets",
801
+ "Reversible"
802
+ ]
803
+ }
804
+ },
805
+ "CatalogClothingSchema": {
806
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
807
+ "type": "object",
808
+ "properties": {
809
+ "name": {
810
+ "type": "string",
811
+ "description": "Descriptive name of the clothing item"
812
+ },
813
+ "garment": {
814
+ "type": "string",
815
+ "enum": [
816
+ "Undershirts",
817
+ "Boxers",
818
+ "Panties",
819
+ "Bras",
820
+ "Socks",
821
+ "T-Shirts",
822
+ "Polo Shirts",
823
+ "Shirts",
824
+ "Blouses",
825
+ "Tops",
826
+ "Sweaters",
827
+ "Hoodies",
828
+ "Cardigans",
829
+ "Jackets",
830
+ "Pants",
831
+ "Jeans",
832
+ "Chinos",
833
+ "Skirts",
834
+ "Shorts",
835
+ "Blazers",
836
+ "Coats",
837
+ "Trench Coats",
838
+ "Parkas",
839
+ "Vests",
840
+ "Leggings",
841
+ "Technical Wear",
842
+ "Sports Shorts",
843
+ "Technical T-Shirts",
844
+ "Dresses",
845
+ "Jumpsuits",
846
+ "Sneakers",
847
+ "Shoes",
848
+ "Boots",
849
+ "Sandals",
850
+ "Belts",
851
+ "Caps",
852
+ "Hats",
853
+ "Scarves",
854
+ "Gloves",
855
+ "Handbags",
856
+ "Backpacks",
857
+ "Sunglasses",
858
+ "Handkerchiefs",
859
+ "Watches",
860
+ "Jewelry",
861
+ "Pajamas",
862
+ "Robes",
863
+ "Swimsuits",
864
+ "Bikinis"
865
+ ],
866
+ "description": "Garment Type"
867
+ },
868
+ "slot": {
869
+ "type": "string",
870
+ "enum": [
871
+ "Top",
872
+ "Bottom",
873
+ "Full Body",
874
+ "Outer",
875
+ "Footwear",
876
+ "Accessories"
877
+ ],
878
+ "description": "Outfit part"
879
+ },
880
+ "variants": {
881
+ "description": "Structural Details",
882
+ "type": "array",
883
+ "items": {
884
+ "type": "string",
885
+ "enum": [
886
+ "Sleeveless",
887
+ "Short Sleeves",
888
+ "Long Sleeves",
889
+ "Round Neck",
890
+ "V-Neck",
891
+ "High Neck",
892
+ "Shirt Collar",
893
+ "Polo Collar",
894
+ "Boat Neck",
895
+ "Mandarin Collar",
896
+ "Funnel Neck",
897
+ "Hood",
898
+ "Overshirt",
899
+ "Cropped",
900
+ "Long",
901
+ "Straight Leg",
902
+ "Skinny",
903
+ "Wide",
904
+ "Cargo",
905
+ "Flared",
906
+ "Trench",
907
+ "Puffer",
908
+ "Double Breasted",
909
+ "Buttons",
910
+ "Zipper",
911
+ "Velcro",
912
+ "Laces",
913
+ "Snaps",
914
+ "Pockets",
915
+ "No Pockets",
916
+ "Reversible"
917
+ ]
918
+ }
919
+ },
920
+ "fit": {
921
+ "description": "Fit",
922
+ "type": "string",
923
+ "enum": [
924
+ "Fitted",
925
+ "Slim",
926
+ "Regular",
927
+ "Relaxed",
928
+ "Loose",
929
+ "Oversized"
930
+ ]
931
+ },
932
+ "primary_color": {
933
+ "type": "string",
934
+ "enum": [
935
+ "White",
936
+ "Black",
937
+ "Gray",
938
+ "Beige",
939
+ "Brown",
940
+ "Blue",
941
+ "Green",
942
+ "Red",
943
+ "Burgundy",
944
+ "Pink",
945
+ "Yellow",
946
+ "Orange",
947
+ "Purple",
948
+ "Camel",
949
+ "Khaki",
950
+ "Navy",
951
+ "Cream",
952
+ "Gold",
953
+ "Silver",
954
+ "Bronze"
955
+ ],
956
+ "description": "Primary color"
957
+ },
958
+ "secondary_color": {
959
+ "description": "Secondary color",
960
+ "type": "string",
961
+ "enum": [
962
+ "White",
963
+ "Black",
964
+ "Gray",
965
+ "Beige",
966
+ "Brown",
967
+ "Blue",
968
+ "Green",
969
+ "Red",
970
+ "Burgundy",
971
+ "Pink",
972
+ "Yellow",
973
+ "Orange",
974
+ "Purple",
975
+ "Camel",
976
+ "Khaki",
977
+ "Navy",
978
+ "Cream",
979
+ "Gold",
980
+ "Silver",
981
+ "Bronze"
982
+ ]
983
+ },
984
+ "pattern": {
985
+ "description": "Pattern",
986
+ "type": "string",
987
+ "enum": [
988
+ "Solid",
989
+ "Stripes",
990
+ "Plaid",
991
+ "Polka Dots",
992
+ "Animal Print",
993
+ "Floral",
994
+ "Geometric",
995
+ "Camouflage",
996
+ "Graphic Print",
997
+ "Gradient"
998
+ ]
999
+ },
1000
+ "materials": {
1001
+ "description": "Materials",
1002
+ "type": "array",
1003
+ "items": {
1004
+ "type": "string",
1005
+ "enum": [
1006
+ "Cotton",
1007
+ "Linen",
1008
+ "Wool",
1009
+ "Silk",
1010
+ "Leather",
1011
+ "Cashmere",
1012
+ "Suede",
1013
+ "Polyester",
1014
+ "Nylon",
1015
+ "Elastane",
1016
+ "Viscose",
1017
+ "Synthetic Leather",
1018
+ "Gore-Tex",
1019
+ "Denim",
1020
+ "Knit",
1021
+ "Fleece",
1022
+ "Tweed",
1023
+ "Satin",
1024
+ "Velvet",
1025
+ "Jacquard",
1026
+ "Flannel",
1027
+ "Gabardine"
1028
+ ]
1029
+ }
1030
+ },
1031
+ "layer": {
1032
+ "type": "string",
1033
+ "enum": [
1034
+ "Base",
1035
+ "Mid",
1036
+ "Outer"
1037
+ ],
1038
+ "description": "Thermal Layer"
1039
+ },
1040
+ "season": {
1041
+ "description": "Seasons",
1042
+ "type": "string",
1043
+ "enum": [
1044
+ "Winter",
1045
+ "Summer",
1046
+ "Spring/Fall",
1047
+ "All Year"
1048
+ ]
1049
+ },
1050
+ "use_case": {
1051
+ "description": "Use cases",
1052
+ "type": "array",
1053
+ "items": {
1054
+ "type": "string",
1055
+ "enum": [
1056
+ "Capsule",
1057
+ "Favorite",
1058
+ "Basic",
1059
+ "Sport",
1060
+ "Work",
1061
+ "Event",
1062
+ "Travel",
1063
+ "Home",
1064
+ "Party",
1065
+ "Beach",
1066
+ "Rain",
1067
+ "Extreme Cold"
1068
+ ]
1069
+ }
1070
+ },
1071
+ "formality": {
1072
+ "description": "Formality",
1073
+ "type": "string",
1074
+ "enum": [
1075
+ "Very Casual",
1076
+ "Casual",
1077
+ "Smart Casual",
1078
+ "Formal",
1079
+ "Black Tie"
1080
+ ]
1081
+ },
1082
+ "brand": {
1083
+ "description": "The brand of the clothing",
1084
+ "type": "string"
1085
+ }
1086
+ },
1087
+ "required": [
1088
+ "name",
1089
+ "garment",
1090
+ "slot",
1091
+ "primary_color",
1092
+ "layer"
1093
+ ],
1094
+ "additionalProperties": false,
1095
+ "description": "Clothing item: Catalogable data"
1096
+ },
1097
+ "ClothingSchema": {
1098
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1099
+ "type": "object",
1100
+ "properties": {
1101
+ "name": {
1102
+ "type": "string",
1103
+ "description": "Descriptive name of the clothing item"
1104
+ },
1105
+ "garment": {
1106
+ "type": "string",
1107
+ "enum": [
1108
+ "Undershirts",
1109
+ "Boxers",
1110
+ "Panties",
1111
+ "Bras",
1112
+ "Socks",
1113
+ "T-Shirts",
1114
+ "Polo Shirts",
1115
+ "Shirts",
1116
+ "Blouses",
1117
+ "Tops",
1118
+ "Sweaters",
1119
+ "Hoodies",
1120
+ "Cardigans",
1121
+ "Jackets",
1122
+ "Pants",
1123
+ "Jeans",
1124
+ "Chinos",
1125
+ "Skirts",
1126
+ "Shorts",
1127
+ "Blazers",
1128
+ "Coats",
1129
+ "Trench Coats",
1130
+ "Parkas",
1131
+ "Vests",
1132
+ "Leggings",
1133
+ "Technical Wear",
1134
+ "Sports Shorts",
1135
+ "Technical T-Shirts",
1136
+ "Dresses",
1137
+ "Jumpsuits",
1138
+ "Sneakers",
1139
+ "Shoes",
1140
+ "Boots",
1141
+ "Sandals",
1142
+ "Belts",
1143
+ "Caps",
1144
+ "Hats",
1145
+ "Scarves",
1146
+ "Gloves",
1147
+ "Handbags",
1148
+ "Backpacks",
1149
+ "Sunglasses",
1150
+ "Handkerchiefs",
1151
+ "Watches",
1152
+ "Jewelry",
1153
+ "Pajamas",
1154
+ "Robes",
1155
+ "Swimsuits",
1156
+ "Bikinis"
1157
+ ],
1158
+ "description": "Garment Type"
1159
+ },
1160
+ "slot": {
1161
+ "type": "string",
1162
+ "enum": [
1163
+ "Top",
1164
+ "Bottom",
1165
+ "Full Body",
1166
+ "Outer",
1167
+ "Footwear",
1168
+ "Accessories"
1169
+ ],
1170
+ "description": "Outfit part"
1171
+ },
1172
+ "variants": {
1173
+ "description": "Structural Details",
1174
+ "type": "array",
1175
+ "items": {
1176
+ "type": "string",
1177
+ "enum": [
1178
+ "Sleeveless",
1179
+ "Short Sleeves",
1180
+ "Long Sleeves",
1181
+ "Round Neck",
1182
+ "V-Neck",
1183
+ "High Neck",
1184
+ "Shirt Collar",
1185
+ "Polo Collar",
1186
+ "Boat Neck",
1187
+ "Mandarin Collar",
1188
+ "Funnel Neck",
1189
+ "Hood",
1190
+ "Overshirt",
1191
+ "Cropped",
1192
+ "Long",
1193
+ "Straight Leg",
1194
+ "Skinny",
1195
+ "Wide",
1196
+ "Cargo",
1197
+ "Flared",
1198
+ "Trench",
1199
+ "Puffer",
1200
+ "Double Breasted",
1201
+ "Buttons",
1202
+ "Zipper",
1203
+ "Velcro",
1204
+ "Laces",
1205
+ "Snaps",
1206
+ "Pockets",
1207
+ "No Pockets",
1208
+ "Reversible"
1209
+ ]
1210
+ }
1211
+ },
1212
+ "fit": {
1213
+ "description": "Fit",
1214
+ "type": "string",
1215
+ "enum": [
1216
+ "Fitted",
1217
+ "Slim",
1218
+ "Regular",
1219
+ "Relaxed",
1220
+ "Loose",
1221
+ "Oversized"
1222
+ ]
1223
+ },
1224
+ "primary_color": {
1225
+ "type": "string",
1226
+ "enum": [
1227
+ "White",
1228
+ "Black",
1229
+ "Gray",
1230
+ "Beige",
1231
+ "Brown",
1232
+ "Blue",
1233
+ "Green",
1234
+ "Red",
1235
+ "Burgundy",
1236
+ "Pink",
1237
+ "Yellow",
1238
+ "Orange",
1239
+ "Purple",
1240
+ "Camel",
1241
+ "Khaki",
1242
+ "Navy",
1243
+ "Cream",
1244
+ "Gold",
1245
+ "Silver",
1246
+ "Bronze"
1247
+ ],
1248
+ "description": "Primary color"
1249
+ },
1250
+ "secondary_color": {
1251
+ "description": "Secondary color",
1252
+ "type": "string",
1253
+ "enum": [
1254
+ "White",
1255
+ "Black",
1256
+ "Gray",
1257
+ "Beige",
1258
+ "Brown",
1259
+ "Blue",
1260
+ "Green",
1261
+ "Red",
1262
+ "Burgundy",
1263
+ "Pink",
1264
+ "Yellow",
1265
+ "Orange",
1266
+ "Purple",
1267
+ "Camel",
1268
+ "Khaki",
1269
+ "Navy",
1270
+ "Cream",
1271
+ "Gold",
1272
+ "Silver",
1273
+ "Bronze"
1274
+ ]
1275
+ },
1276
+ "pattern": {
1277
+ "description": "Pattern",
1278
+ "type": "string",
1279
+ "enum": [
1280
+ "Solid",
1281
+ "Stripes",
1282
+ "Plaid",
1283
+ "Polka Dots",
1284
+ "Animal Print",
1285
+ "Floral",
1286
+ "Geometric",
1287
+ "Camouflage",
1288
+ "Graphic Print",
1289
+ "Gradient"
1290
+ ]
1291
+ },
1292
+ "materials": {
1293
+ "description": "Materials",
1294
+ "type": "array",
1295
+ "items": {
1296
+ "type": "string",
1297
+ "enum": [
1298
+ "Cotton",
1299
+ "Linen",
1300
+ "Wool",
1301
+ "Silk",
1302
+ "Leather",
1303
+ "Cashmere",
1304
+ "Suede",
1305
+ "Polyester",
1306
+ "Nylon",
1307
+ "Elastane",
1308
+ "Viscose",
1309
+ "Synthetic Leather",
1310
+ "Gore-Tex",
1311
+ "Denim",
1312
+ "Knit",
1313
+ "Fleece",
1314
+ "Tweed",
1315
+ "Satin",
1316
+ "Velvet",
1317
+ "Jacquard",
1318
+ "Flannel",
1319
+ "Gabardine"
1320
+ ]
1321
+ }
1322
+ },
1323
+ "layer": {
1324
+ "type": "string",
1325
+ "enum": [
1326
+ "Base",
1327
+ "Mid",
1328
+ "Outer"
1329
+ ],
1330
+ "description": "Thermal Layer"
1331
+ },
1332
+ "season": {
1333
+ "description": "Seasons",
1334
+ "type": "string",
1335
+ "enum": [
1336
+ "Winter",
1337
+ "Summer",
1338
+ "Spring/Fall",
1339
+ "All Year"
1340
+ ]
1341
+ },
1342
+ "use_case": {
1343
+ "description": "Use cases",
1344
+ "type": "array",
1345
+ "items": {
1346
+ "type": "string",
1347
+ "enum": [
1348
+ "Capsule",
1349
+ "Favorite",
1350
+ "Basic",
1351
+ "Sport",
1352
+ "Work",
1353
+ "Event",
1354
+ "Travel",
1355
+ "Home",
1356
+ "Party",
1357
+ "Beach",
1358
+ "Rain",
1359
+ "Extreme Cold"
1360
+ ]
1361
+ }
1362
+ },
1363
+ "formality": {
1364
+ "description": "Formality",
1365
+ "type": "string",
1366
+ "enum": [
1367
+ "Very Casual",
1368
+ "Casual",
1369
+ "Smart Casual",
1370
+ "Formal",
1371
+ "Black Tie"
1372
+ ]
1373
+ },
1374
+ "brand": {
1375
+ "description": "The brand of the clothing",
1376
+ "type": "string"
1377
+ },
1378
+ "cares": {
1379
+ "description": "Care Instructions",
1380
+ "type": "array",
1381
+ "items": {
1382
+ "type": "string",
1383
+ "enum": [
1384
+ "Hand Wash",
1385
+ "Machine Wash",
1386
+ "Dry Clean",
1387
+ "Cold",
1388
+ "Hot",
1389
+ "Ironing",
1390
+ "Steam Ironing"
1391
+ ]
1392
+ }
1393
+ },
1394
+ "status": {
1395
+ "default": "Good",
1396
+ "description": "Status",
1397
+ "type": "string",
1398
+ "enum": [
1399
+ "New",
1400
+ "Good",
1401
+ "Worn",
1402
+ "Damaged",
1403
+ "Retire"
1404
+ ]
1405
+ },
1406
+ "size": {
1407
+ "type": "string",
1408
+ "enum": [
1409
+ "28",
1410
+ "30",
1411
+ "32",
1412
+ "34",
1413
+ "36",
1414
+ "37",
1415
+ "38",
1416
+ "39",
1417
+ "40",
1418
+ "41",
1419
+ "42",
1420
+ "43",
1421
+ "44",
1422
+ "45",
1423
+ "46",
1424
+ "48",
1425
+ "XS",
1426
+ "S",
1427
+ "M",
1428
+ "L",
1429
+ "XL",
1430
+ "XXL",
1431
+ "XXXL"
1432
+ ]
1433
+ },
1434
+ "measurements": {
1435
+ "description": "Measurements",
1436
+ "type": "array",
1437
+ "items": {
1438
+ "type": "number"
1439
+ }
1440
+ },
1441
+ "type": {
1442
+ "type": "string",
1443
+ "const": "[[Resources]]"
1444
+ },
1445
+ "subtype": {
1446
+ "type": "string",
1447
+ "const": "[[Clothes]]"
1448
+ },
1449
+ "areas": {
1450
+ "type": "array",
1451
+ "items": {
1452
+ "type": "string",
1453
+ "const": "[[Home]]"
1454
+ }
1455
+ },
1456
+ "color": {
1457
+ "type": "string",
1458
+ "const": "#CB6120"
1459
+ },
1460
+ "icon": {
1461
+ "type": "string",
1462
+ "const": "shirt"
1463
+ },
1464
+ "cover": {
1465
+ "type": "string"
1466
+ }
1467
+ },
1468
+ "required": [
1469
+ "name",
1470
+ "garment",
1471
+ "slot",
1472
+ "primary_color",
1473
+ "layer",
1474
+ "status",
1475
+ "size",
1476
+ "type",
1477
+ "subtype",
1478
+ "areas",
1479
+ "color",
1480
+ "icon"
1481
+ ],
1482
+ "additionalProperties": false,
1483
+ "description": "Clothing item"
1484
+ },
1485
+ "DetailedClothingSchema": {
1486
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1487
+ "type": "object",
1488
+ "properties": {
1489
+ "cares": {
1490
+ "description": "Care Instructions",
1491
+ "type": "array",
1492
+ "items": {
1493
+ "type": "string",
1494
+ "enum": [
1495
+ "Hand Wash",
1496
+ "Machine Wash",
1497
+ "Dry Clean",
1498
+ "Cold",
1499
+ "Hot",
1500
+ "Ironing",
1501
+ "Steam Ironing"
1502
+ ]
1503
+ }
1504
+ },
1505
+ "status": {
1506
+ "default": "Good",
1507
+ "description": "Status",
1508
+ "type": "string",
1509
+ "enum": [
1510
+ "New",
1511
+ "Good",
1512
+ "Worn",
1513
+ "Damaged",
1514
+ "Retire"
1515
+ ]
1516
+ },
1517
+ "size": {
1518
+ "type": "string",
1519
+ "enum": [
1520
+ "28",
1521
+ "30",
1522
+ "32",
1523
+ "34",
1524
+ "36",
1525
+ "37",
1526
+ "38",
1527
+ "39",
1528
+ "40",
1529
+ "41",
1530
+ "42",
1531
+ "43",
1532
+ "44",
1533
+ "45",
1534
+ "46",
1535
+ "48",
1536
+ "XS",
1537
+ "S",
1538
+ "M",
1539
+ "L",
1540
+ "XL",
1541
+ "XXL",
1542
+ "XXXL"
1543
+ ]
1544
+ },
1545
+ "measurements": {
1546
+ "description": "Measurements",
1547
+ "type": "array",
1548
+ "items": {
1549
+ "type": "number"
1550
+ }
1551
+ }
1552
+ },
1553
+ "required": [
1554
+ "status",
1555
+ "size"
1556
+ ],
1557
+ "additionalProperties": false,
1558
+ "description": "Clothing item: Additional hard-to-obtain data"
1559
+ },
1560
+ "MetaClothingSchema": {
1561
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1562
+ "type": "object",
1563
+ "properties": {
1564
+ "type": {
1565
+ "type": "string",
1566
+ "const": "[[Resources]]"
1567
+ },
1568
+ "subtype": {
1569
+ "type": "string",
1570
+ "const": "[[Clothes]]"
1571
+ },
1572
+ "areas": {
1573
+ "type": "array",
1574
+ "items": {
1575
+ "type": "string",
1576
+ "const": "[[Home]]"
1577
+ }
1578
+ },
1579
+ "color": {
1580
+ "type": "string",
1581
+ "const": "#CB6120"
1582
+ },
1583
+ "icon": {
1584
+ "type": "string",
1585
+ "const": "shirt"
1586
+ },
1587
+ "cover": {
1588
+ "type": "string"
1589
+ }
1590
+ },
1591
+ "required": [
1592
+ "type",
1593
+ "subtype",
1594
+ "areas",
1595
+ "color",
1596
+ "icon"
1597
+ ],
1598
+ "additionalProperties": false,
1599
+ "description": "Clothing item: Note metadata"
1600
+ }
1601
+ }
1602
+ }