@segha/catalog 0.1.0 → 1.1.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.
- package/CHANGELOG.md +28 -11
- package/README.md +42 -40
- package/es/Clothing/Colors.ts +14 -0
- package/es/Clothing/Fit.ts +3 -1
- package/es/Clothing/Garment.ts +43 -7
- package/es/Clothing/{use_cases.ts → UseCases.ts} +4 -0
- package/es/Clothing/index.ts +10 -9
- package/es/Clothing/materials.ts +10 -0
- package/es/Clothing/variants.ts +25 -2
- package/json-schemas/CatalogClothingSchema.json +74 -8
- package/json-schemas/ClothingSchema.json +74 -8
- package/json-schemas/es/CatalogClothingSchema.json +74 -8
- package/json-schemas/es/Clothing/Accessories.json +7 -2
- package/json-schemas/es/Clothing/AdditionalFeatures.json +9 -0
- package/json-schemas/es/Clothing/Bottom.json +2 -1
- package/json-schemas/es/Clothing/CatalogClothingSchema.json +74 -8
- package/json-schemas/es/Clothing/Closures.json +11 -0
- package/json-schemas/es/Clothing/ClothingSchema.json +74 -8
- package/json-schemas/es/Clothing/Color.json +4 -1
- package/json-schemas/es/Clothing/CommonFabric.json +7 -1
- package/json-schemas/es/Clothing/Dress.json +2 -1
- package/json-schemas/es/Clothing/Fit.json +3 -1
- package/json-schemas/es/Clothing/Garment.json +19 -1
- package/json-schemas/es/Clothing/Home.json +9 -0
- package/json-schemas/es/Clothing/Material.json +11 -1
- package/json-schemas/es/Clothing/Materials.json +11 -1
- package/json-schemas/es/Clothing/MetallicColor.json +9 -0
- package/json-schemas/es/Clothing/NaturalMaterial.json +3 -1
- package/json-schemas/es/Clothing/Necks.json +6 -1
- package/json-schemas/es/Clothing/Pants.json +2 -1
- package/json-schemas/es/Clothing/Pattern.json +8 -1
- package/json-schemas/es/Clothing/PrimaryColor.json +4 -1
- package/json-schemas/es/Clothing/SecondaryColor.json +4 -1
- package/json-schemas/es/Clothing/Shoes.json +2 -1
- package/json-schemas/es/Clothing/Sportswear.json +11 -0
- package/json-schemas/es/Clothing/Swimsuits.json +9 -0
- package/json-schemas/es/Clothing/SyntheticMaterial.json +3 -1
- package/json-schemas/es/Clothing/Top.json +2 -1
- package/json-schemas/es/Clothing/Underwear.json +12 -0
- package/json-schemas/es/Clothing/UseCase.json +5 -1
- package/json-schemas/es/Clothing/UseCases.json +5 -1
- package/json-schemas/es/Clothing/Variant.json +15 -1
- package/json-schemas/es/Clothing/Variants.json +15 -1
- package/json-schemas/es/Clothing/index.json +225 -704
- package/json-schemas/es/ClothingSchema.json +74 -8
- package/json-schemas/es/index.json +148 -16
- package/json-schemas/index.json +148 -16
- package/package.json +21 -3
|
@@ -2,9 +2,18 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"type": "object",
|
|
4
4
|
"properties": {
|
|
5
|
+
"name": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"description": "Nombre descriptivo de la prenda de ropa"
|
|
8
|
+
},
|
|
5
9
|
"garment": {
|
|
6
10
|
"type": "string",
|
|
7
11
|
"enum": [
|
|
12
|
+
"Camisetas Interiores",
|
|
13
|
+
"Calzoncillos",
|
|
14
|
+
"Bragas",
|
|
15
|
+
"Sujetadores",
|
|
16
|
+
"Calcetines",
|
|
8
17
|
"Camisetas",
|
|
9
18
|
"Polos",
|
|
10
19
|
"Camisas",
|
|
@@ -19,11 +28,16 @@
|
|
|
19
28
|
"Chinos",
|
|
20
29
|
"Faldas",
|
|
21
30
|
"Shorts",
|
|
31
|
+
"Americanas",
|
|
22
32
|
"Abrigos",
|
|
23
33
|
"Gabardinas",
|
|
24
34
|
"Parkas",
|
|
25
35
|
"Cazadoras",
|
|
26
36
|
"Chalecos",
|
|
37
|
+
"Mallas",
|
|
38
|
+
"Ropa Técnica",
|
|
39
|
+
"Shorts Deportivos",
|
|
40
|
+
"Camisetas Técnicas",
|
|
27
41
|
"Vestidos",
|
|
28
42
|
"Monos",
|
|
29
43
|
"Zapatillas",
|
|
@@ -36,7 +50,15 @@
|
|
|
36
50
|
"Bufandas",
|
|
37
51
|
"Guantes",
|
|
38
52
|
"Bolsos",
|
|
39
|
-
"Mochilas"
|
|
53
|
+
"Mochilas",
|
|
54
|
+
"Gafas de Sol",
|
|
55
|
+
"Pañuelos",
|
|
56
|
+
"Relojes",
|
|
57
|
+
"Joyas",
|
|
58
|
+
"Pijamas",
|
|
59
|
+
"Batas",
|
|
60
|
+
"Bañadores",
|
|
61
|
+
"Bikinis"
|
|
40
62
|
],
|
|
41
63
|
"description": "Tipo de Prenda"
|
|
42
64
|
},
|
|
@@ -65,6 +87,11 @@
|
|
|
65
87
|
"Cuello Pico",
|
|
66
88
|
"Cuello Alto",
|
|
67
89
|
"Cuello Camisa",
|
|
90
|
+
"Cuello Polo",
|
|
91
|
+
"Cuello Panadero",
|
|
92
|
+
"Cuello Mao",
|
|
93
|
+
"Cuello Chimenea",
|
|
94
|
+
"Capucha",
|
|
68
95
|
"Overshirt",
|
|
69
96
|
"Cropped",
|
|
70
97
|
"Larga",
|
|
@@ -72,9 +99,18 @@
|
|
|
72
99
|
"Pitillo",
|
|
73
100
|
"Ancha",
|
|
74
101
|
"Cargo",
|
|
102
|
+
"Acampanado",
|
|
75
103
|
"Trench",
|
|
76
104
|
"Plumífero",
|
|
77
|
-
"Doble botonadura"
|
|
105
|
+
"Doble botonadura",
|
|
106
|
+
"Botones",
|
|
107
|
+
"Cremallera",
|
|
108
|
+
"Velcro",
|
|
109
|
+
"Cordones",
|
|
110
|
+
"Broches",
|
|
111
|
+
"Bolsillos",
|
|
112
|
+
"Sin Bolsillos",
|
|
113
|
+
"Reversible"
|
|
78
114
|
]
|
|
79
115
|
}
|
|
80
116
|
},
|
|
@@ -83,9 +119,11 @@
|
|
|
83
119
|
"type": "string",
|
|
84
120
|
"enum": [
|
|
85
121
|
"Entallado",
|
|
122
|
+
"Ajustado",
|
|
86
123
|
"Regular",
|
|
87
124
|
"Relajado",
|
|
88
|
-
"
|
|
125
|
+
"Holgado",
|
|
126
|
+
"Extragrande"
|
|
89
127
|
]
|
|
90
128
|
},
|
|
91
129
|
"primary_color": {
|
|
@@ -107,7 +145,10 @@
|
|
|
107
145
|
"Camel",
|
|
108
146
|
"Caqui",
|
|
109
147
|
"Marino",
|
|
110
|
-
"Crema"
|
|
148
|
+
"Crema",
|
|
149
|
+
"Oro",
|
|
150
|
+
"Plata",
|
|
151
|
+
"Bronce"
|
|
111
152
|
],
|
|
112
153
|
"description": "Color principal"
|
|
113
154
|
},
|
|
@@ -131,7 +172,10 @@
|
|
|
131
172
|
"Camel",
|
|
132
173
|
"Caqui",
|
|
133
174
|
"Marino",
|
|
134
|
-
"Crema"
|
|
175
|
+
"Crema",
|
|
176
|
+
"Oro",
|
|
177
|
+
"Plata",
|
|
178
|
+
"Bronce"
|
|
135
179
|
]
|
|
136
180
|
},
|
|
137
181
|
"pattern": {
|
|
@@ -140,7 +184,14 @@
|
|
|
140
184
|
"enum": [
|
|
141
185
|
"Liso",
|
|
142
186
|
"Rayas",
|
|
143
|
-
"Cuadros"
|
|
187
|
+
"Cuadros",
|
|
188
|
+
"Lunares",
|
|
189
|
+
"Animal Print",
|
|
190
|
+
"Floral",
|
|
191
|
+
"Geométrico",
|
|
192
|
+
"Camuflaje",
|
|
193
|
+
"EstampadoGráfico",
|
|
194
|
+
"Degradado"
|
|
144
195
|
]
|
|
145
196
|
},
|
|
146
197
|
"materials": {
|
|
@@ -154,13 +205,23 @@
|
|
|
154
205
|
"Lana",
|
|
155
206
|
"Seda",
|
|
156
207
|
"Cuero",
|
|
208
|
+
"Cachemir",
|
|
209
|
+
"Ante",
|
|
157
210
|
"Poliéster",
|
|
158
211
|
"Nylon",
|
|
159
212
|
"Elastano",
|
|
160
213
|
"Viscosa",
|
|
214
|
+
"Piel Sintética",
|
|
215
|
+
"Gore-Tex",
|
|
161
216
|
"Denim",
|
|
162
217
|
"Punto",
|
|
163
|
-
"Felpa"
|
|
218
|
+
"Felpa",
|
|
219
|
+
"Tweed",
|
|
220
|
+
"Satén",
|
|
221
|
+
"Terciopelo",
|
|
222
|
+
"Jacquard",
|
|
223
|
+
"Franela",
|
|
224
|
+
"Gabardina"
|
|
164
225
|
]
|
|
165
226
|
}
|
|
166
227
|
},
|
|
@@ -196,7 +257,11 @@
|
|
|
196
257
|
"Trabajo",
|
|
197
258
|
"Evento",
|
|
198
259
|
"Viaje",
|
|
199
|
-
"Casa"
|
|
260
|
+
"Casa",
|
|
261
|
+
"Fiesta",
|
|
262
|
+
"Playa",
|
|
263
|
+
"Lluvia",
|
|
264
|
+
"Frío Extremo"
|
|
200
265
|
]
|
|
201
266
|
}
|
|
202
267
|
},
|
|
@@ -306,6 +371,7 @@
|
|
|
306
371
|
}
|
|
307
372
|
},
|
|
308
373
|
"required": [
|
|
374
|
+
"name",
|
|
309
375
|
"garment",
|
|
310
376
|
"slot",
|
|
311
377
|
"primary_color",
|
|
@@ -7,9 +7,18 @@
|
|
|
7
7
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
8
8
|
"type": "object",
|
|
9
9
|
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "Nombre descriptivo de la prenda de ropa"
|
|
13
|
+
},
|
|
10
14
|
"garment": {
|
|
11
15
|
"type": "string",
|
|
12
16
|
"enum": [
|
|
17
|
+
"Camisetas Interiores",
|
|
18
|
+
"Calzoncillos",
|
|
19
|
+
"Bragas",
|
|
20
|
+
"Sujetadores",
|
|
21
|
+
"Calcetines",
|
|
13
22
|
"Camisetas",
|
|
14
23
|
"Polos",
|
|
15
24
|
"Camisas",
|
|
@@ -24,11 +33,16 @@
|
|
|
24
33
|
"Chinos",
|
|
25
34
|
"Faldas",
|
|
26
35
|
"Shorts",
|
|
36
|
+
"Americanas",
|
|
27
37
|
"Abrigos",
|
|
28
38
|
"Gabardinas",
|
|
29
39
|
"Parkas",
|
|
30
40
|
"Cazadoras",
|
|
31
41
|
"Chalecos",
|
|
42
|
+
"Mallas",
|
|
43
|
+
"Ropa Técnica",
|
|
44
|
+
"Shorts Deportivos",
|
|
45
|
+
"Camisetas Técnicas",
|
|
32
46
|
"Vestidos",
|
|
33
47
|
"Monos",
|
|
34
48
|
"Zapatillas",
|
|
@@ -41,7 +55,15 @@
|
|
|
41
55
|
"Bufandas",
|
|
42
56
|
"Guantes",
|
|
43
57
|
"Bolsos",
|
|
44
|
-
"Mochilas"
|
|
58
|
+
"Mochilas",
|
|
59
|
+
"Gafas de Sol",
|
|
60
|
+
"Pañuelos",
|
|
61
|
+
"Relojes",
|
|
62
|
+
"Joyas",
|
|
63
|
+
"Pijamas",
|
|
64
|
+
"Batas",
|
|
65
|
+
"Bañadores",
|
|
66
|
+
"Bikinis"
|
|
45
67
|
],
|
|
46
68
|
"description": "Tipo de Prenda"
|
|
47
69
|
},
|
|
@@ -70,6 +92,11 @@
|
|
|
70
92
|
"Cuello Pico",
|
|
71
93
|
"Cuello Alto",
|
|
72
94
|
"Cuello Camisa",
|
|
95
|
+
"Cuello Polo",
|
|
96
|
+
"Cuello Panadero",
|
|
97
|
+
"Cuello Mao",
|
|
98
|
+
"Cuello Chimenea",
|
|
99
|
+
"Capucha",
|
|
73
100
|
"Overshirt",
|
|
74
101
|
"Cropped",
|
|
75
102
|
"Larga",
|
|
@@ -77,9 +104,18 @@
|
|
|
77
104
|
"Pitillo",
|
|
78
105
|
"Ancha",
|
|
79
106
|
"Cargo",
|
|
107
|
+
"Acampanado",
|
|
80
108
|
"Trench",
|
|
81
109
|
"Plumífero",
|
|
82
|
-
"Doble botonadura"
|
|
110
|
+
"Doble botonadura",
|
|
111
|
+
"Botones",
|
|
112
|
+
"Cremallera",
|
|
113
|
+
"Velcro",
|
|
114
|
+
"Cordones",
|
|
115
|
+
"Broches",
|
|
116
|
+
"Bolsillos",
|
|
117
|
+
"Sin Bolsillos",
|
|
118
|
+
"Reversible"
|
|
83
119
|
]
|
|
84
120
|
}
|
|
85
121
|
},
|
|
@@ -88,9 +124,11 @@
|
|
|
88
124
|
"type": "string",
|
|
89
125
|
"enum": [
|
|
90
126
|
"Entallado",
|
|
127
|
+
"Ajustado",
|
|
91
128
|
"Regular",
|
|
92
129
|
"Relajado",
|
|
93
|
-
"
|
|
130
|
+
"Holgado",
|
|
131
|
+
"Extragrande"
|
|
94
132
|
]
|
|
95
133
|
},
|
|
96
134
|
"primary_color": {
|
|
@@ -112,7 +150,10 @@
|
|
|
112
150
|
"Camel",
|
|
113
151
|
"Caqui",
|
|
114
152
|
"Marino",
|
|
115
|
-
"Crema"
|
|
153
|
+
"Crema",
|
|
154
|
+
"Oro",
|
|
155
|
+
"Plata",
|
|
156
|
+
"Bronce"
|
|
116
157
|
],
|
|
117
158
|
"description": "Color principal"
|
|
118
159
|
},
|
|
@@ -136,7 +177,10 @@
|
|
|
136
177
|
"Camel",
|
|
137
178
|
"Caqui",
|
|
138
179
|
"Marino",
|
|
139
|
-
"Crema"
|
|
180
|
+
"Crema",
|
|
181
|
+
"Oro",
|
|
182
|
+
"Plata",
|
|
183
|
+
"Bronce"
|
|
140
184
|
]
|
|
141
185
|
},
|
|
142
186
|
"pattern": {
|
|
@@ -145,7 +189,14 @@
|
|
|
145
189
|
"enum": [
|
|
146
190
|
"Liso",
|
|
147
191
|
"Rayas",
|
|
148
|
-
"Cuadros"
|
|
192
|
+
"Cuadros",
|
|
193
|
+
"Lunares",
|
|
194
|
+
"Animal Print",
|
|
195
|
+
"Floral",
|
|
196
|
+
"Geométrico",
|
|
197
|
+
"Camuflaje",
|
|
198
|
+
"EstampadoGráfico",
|
|
199
|
+
"Degradado"
|
|
149
200
|
]
|
|
150
201
|
},
|
|
151
202
|
"materials": {
|
|
@@ -159,13 +210,23 @@
|
|
|
159
210
|
"Lana",
|
|
160
211
|
"Seda",
|
|
161
212
|
"Cuero",
|
|
213
|
+
"Cachemir",
|
|
214
|
+
"Ante",
|
|
162
215
|
"Poliéster",
|
|
163
216
|
"Nylon",
|
|
164
217
|
"Elastano",
|
|
165
218
|
"Viscosa",
|
|
219
|
+
"Piel Sintética",
|
|
220
|
+
"Gore-Tex",
|
|
166
221
|
"Denim",
|
|
167
222
|
"Punto",
|
|
168
|
-
"Felpa"
|
|
223
|
+
"Felpa",
|
|
224
|
+
"Tweed",
|
|
225
|
+
"Satén",
|
|
226
|
+
"Terciopelo",
|
|
227
|
+
"Jacquard",
|
|
228
|
+
"Franela",
|
|
229
|
+
"Gabardina"
|
|
169
230
|
]
|
|
170
231
|
}
|
|
171
232
|
},
|
|
@@ -201,7 +262,11 @@
|
|
|
201
262
|
"Trabajo",
|
|
202
263
|
"Evento",
|
|
203
264
|
"Viaje",
|
|
204
|
-
"Casa"
|
|
265
|
+
"Casa",
|
|
266
|
+
"Fiesta",
|
|
267
|
+
"Playa",
|
|
268
|
+
"Lluvia",
|
|
269
|
+
"Frío Extremo"
|
|
205
270
|
]
|
|
206
271
|
}
|
|
207
272
|
},
|
|
@@ -222,6 +287,7 @@
|
|
|
222
287
|
}
|
|
223
288
|
},
|
|
224
289
|
"required": [
|
|
290
|
+
"name",
|
|
225
291
|
"garment",
|
|
226
292
|
"slot",
|
|
227
293
|
"primary_color",
|
|
@@ -234,9 +300,18 @@
|
|
|
234
300
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
235
301
|
"type": "object",
|
|
236
302
|
"properties": {
|
|
303
|
+
"name": {
|
|
304
|
+
"type": "string",
|
|
305
|
+
"description": "Nombre descriptivo de la prenda de ropa"
|
|
306
|
+
},
|
|
237
307
|
"garment": {
|
|
238
308
|
"type": "string",
|
|
239
309
|
"enum": [
|
|
310
|
+
"Camisetas Interiores",
|
|
311
|
+
"Calzoncillos",
|
|
312
|
+
"Bragas",
|
|
313
|
+
"Sujetadores",
|
|
314
|
+
"Calcetines",
|
|
240
315
|
"Camisetas",
|
|
241
316
|
"Polos",
|
|
242
317
|
"Camisas",
|
|
@@ -251,11 +326,16 @@
|
|
|
251
326
|
"Chinos",
|
|
252
327
|
"Faldas",
|
|
253
328
|
"Shorts",
|
|
329
|
+
"Americanas",
|
|
254
330
|
"Abrigos",
|
|
255
331
|
"Gabardinas",
|
|
256
332
|
"Parkas",
|
|
257
333
|
"Cazadoras",
|
|
258
334
|
"Chalecos",
|
|
335
|
+
"Mallas",
|
|
336
|
+
"Ropa Técnica",
|
|
337
|
+
"Shorts Deportivos",
|
|
338
|
+
"Camisetas Técnicas",
|
|
259
339
|
"Vestidos",
|
|
260
340
|
"Monos",
|
|
261
341
|
"Zapatillas",
|
|
@@ -268,7 +348,15 @@
|
|
|
268
348
|
"Bufandas",
|
|
269
349
|
"Guantes",
|
|
270
350
|
"Bolsos",
|
|
271
|
-
"Mochilas"
|
|
351
|
+
"Mochilas",
|
|
352
|
+
"Gafas de Sol",
|
|
353
|
+
"Pañuelos",
|
|
354
|
+
"Relojes",
|
|
355
|
+
"Joyas",
|
|
356
|
+
"Pijamas",
|
|
357
|
+
"Batas",
|
|
358
|
+
"Bañadores",
|
|
359
|
+
"Bikinis"
|
|
272
360
|
],
|
|
273
361
|
"description": "Tipo de Prenda"
|
|
274
362
|
},
|
|
@@ -297,6 +385,11 @@
|
|
|
297
385
|
"Cuello Pico",
|
|
298
386
|
"Cuello Alto",
|
|
299
387
|
"Cuello Camisa",
|
|
388
|
+
"Cuello Polo",
|
|
389
|
+
"Cuello Panadero",
|
|
390
|
+
"Cuello Mao",
|
|
391
|
+
"Cuello Chimenea",
|
|
392
|
+
"Capucha",
|
|
300
393
|
"Overshirt",
|
|
301
394
|
"Cropped",
|
|
302
395
|
"Larga",
|
|
@@ -304,9 +397,18 @@
|
|
|
304
397
|
"Pitillo",
|
|
305
398
|
"Ancha",
|
|
306
399
|
"Cargo",
|
|
400
|
+
"Acampanado",
|
|
307
401
|
"Trench",
|
|
308
402
|
"Plumífero",
|
|
309
|
-
"Doble botonadura"
|
|
403
|
+
"Doble botonadura",
|
|
404
|
+
"Botones",
|
|
405
|
+
"Cremallera",
|
|
406
|
+
"Velcro",
|
|
407
|
+
"Cordones",
|
|
408
|
+
"Broches",
|
|
409
|
+
"Bolsillos",
|
|
410
|
+
"Sin Bolsillos",
|
|
411
|
+
"Reversible"
|
|
310
412
|
]
|
|
311
413
|
}
|
|
312
414
|
},
|
|
@@ -315,9 +417,11 @@
|
|
|
315
417
|
"type": "string",
|
|
316
418
|
"enum": [
|
|
317
419
|
"Entallado",
|
|
420
|
+
"Ajustado",
|
|
318
421
|
"Regular",
|
|
319
422
|
"Relajado",
|
|
320
|
-
"
|
|
423
|
+
"Holgado",
|
|
424
|
+
"Extragrande"
|
|
321
425
|
]
|
|
322
426
|
},
|
|
323
427
|
"primary_color": {
|
|
@@ -339,7 +443,10 @@
|
|
|
339
443
|
"Camel",
|
|
340
444
|
"Caqui",
|
|
341
445
|
"Marino",
|
|
342
|
-
"Crema"
|
|
446
|
+
"Crema",
|
|
447
|
+
"Oro",
|
|
448
|
+
"Plata",
|
|
449
|
+
"Bronce"
|
|
343
450
|
],
|
|
344
451
|
"description": "Color principal"
|
|
345
452
|
},
|
|
@@ -363,7 +470,10 @@
|
|
|
363
470
|
"Camel",
|
|
364
471
|
"Caqui",
|
|
365
472
|
"Marino",
|
|
366
|
-
"Crema"
|
|
473
|
+
"Crema",
|
|
474
|
+
"Oro",
|
|
475
|
+
"Plata",
|
|
476
|
+
"Bronce"
|
|
367
477
|
]
|
|
368
478
|
},
|
|
369
479
|
"pattern": {
|
|
@@ -372,7 +482,14 @@
|
|
|
372
482
|
"enum": [
|
|
373
483
|
"Liso",
|
|
374
484
|
"Rayas",
|
|
375
|
-
"Cuadros"
|
|
485
|
+
"Cuadros",
|
|
486
|
+
"Lunares",
|
|
487
|
+
"Animal Print",
|
|
488
|
+
"Floral",
|
|
489
|
+
"Geométrico",
|
|
490
|
+
"Camuflaje",
|
|
491
|
+
"EstampadoGráfico",
|
|
492
|
+
"Degradado"
|
|
376
493
|
]
|
|
377
494
|
},
|
|
378
495
|
"materials": {
|
|
@@ -386,13 +503,23 @@
|
|
|
386
503
|
"Lana",
|
|
387
504
|
"Seda",
|
|
388
505
|
"Cuero",
|
|
506
|
+
"Cachemir",
|
|
507
|
+
"Ante",
|
|
389
508
|
"Poliéster",
|
|
390
509
|
"Nylon",
|
|
391
510
|
"Elastano",
|
|
392
511
|
"Viscosa",
|
|
512
|
+
"Piel Sintética",
|
|
513
|
+
"Gore-Tex",
|
|
393
514
|
"Denim",
|
|
394
515
|
"Punto",
|
|
395
|
-
"Felpa"
|
|
516
|
+
"Felpa",
|
|
517
|
+
"Tweed",
|
|
518
|
+
"Satén",
|
|
519
|
+
"Terciopelo",
|
|
520
|
+
"Jacquard",
|
|
521
|
+
"Franela",
|
|
522
|
+
"Gabardina"
|
|
396
523
|
]
|
|
397
524
|
}
|
|
398
525
|
},
|
|
@@ -428,7 +555,11 @@
|
|
|
428
555
|
"Trabajo",
|
|
429
556
|
"Evento",
|
|
430
557
|
"Viaje",
|
|
431
|
-
"Casa"
|
|
558
|
+
"Casa",
|
|
559
|
+
"Fiesta",
|
|
560
|
+
"Playa",
|
|
561
|
+
"Lluvia",
|
|
562
|
+
"Frío Extremo"
|
|
432
563
|
]
|
|
433
564
|
}
|
|
434
565
|
},
|
|
@@ -538,6 +669,7 @@
|
|
|
538
669
|
}
|
|
539
670
|
},
|
|
540
671
|
"required": [
|
|
672
|
+
"name",
|
|
541
673
|
"garment",
|
|
542
674
|
"slot",
|
|
543
675
|
"primary_color",
|