@segha/catalog 0.0.1 → 0.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 +14 -4
- package/json-schemas/CatalogClothingSchema.json +227 -0
- package/json-schemas/ClothingSchema.json +323 -0
- package/json-schemas/DetailedClothingSchema.json +75 -0
- package/json-schemas/MetaClothingSchema.json +41 -0
- package/json-schemas/es/CatalogClothingSchema.json +227 -0
- package/json-schemas/es/Clothing/Accessories.json +13 -0
- package/json-schemas/es/Clothing/BaseColor.json +19 -0
- package/json-schemas/es/Clothing/Bottom.json +11 -0
- package/json-schemas/es/Clothing/Care.json +13 -0
- package/json-schemas/es/Clothing/Cares.json +17 -0
- package/json-schemas/es/Clothing/CatalogClothingSchema.json +227 -0
- package/json-schemas/es/Clothing/ClothingSchema.json +323 -0
- package/json-schemas/es/Clothing/Color.json +23 -0
- package/json-schemas/es/Clothing/CommonFabric.json +9 -0
- package/json-schemas/es/Clothing/DetailedClothingSchema.json +75 -0
- package/json-schemas/es/Clothing/Dress.json +8 -0
- package/json-schemas/es/Clothing/Fit.json +11 -0
- package/json-schemas/es/Clothing/Formality.json +12 -0
- package/json-schemas/es/Clothing/Garment.json +39 -0
- package/json-schemas/es/Clothing/Ironing.json +8 -0
- package/json-schemas/es/Clothing/Layer.json +10 -0
- package/json-schemas/es/Clothing/Material.json +18 -0
- package/json-schemas/es/Clothing/Materials.json +22 -0
- package/json-schemas/es/Clothing/Measurements.json +8 -0
- package/json-schemas/es/Clothing/MetaClothingSchema.json +41 -0
- package/json-schemas/es/Clothing/NaturalMaterial.json +11 -0
- package/json-schemas/es/Clothing/Necks.json +10 -0
- package/json-schemas/es/Clothing/Outerwear.json +9 -0
- package/json-schemas/es/Clothing/Pants.json +10 -0
- package/json-schemas/es/Clothing/PantsSize.json +17 -0
- package/json-schemas/es/Clothing/Pattern.json +10 -0
- package/json-schemas/es/Clothing/PrimaryColor.json +24 -0
- package/json-schemas/es/Clothing/Season.json +11 -0
- package/json-schemas/es/Clothing/SecondaryColor.json +24 -0
- package/json-schemas/es/Clothing/Shoes.json +10 -0
- package/json-schemas/es/Clothing/ShoesSize.json +16 -0
- package/json-schemas/es/Clothing/Size.json +29 -0
- package/json-schemas/es/Clothing/Sleeves.json +9 -0
- package/json-schemas/es/Clothing/Slot.json +13 -0
- package/json-schemas/es/Clothing/SpecialColor.json +10 -0
- package/json-schemas/es/Clothing/SpecialCuts.json +9 -0
- package/json-schemas/es/Clothing/Status.json +13 -0
- package/json-schemas/es/Clothing/SyntheticMaterial.json +10 -0
- package/json-schemas/es/Clothing/Temperature.json +8 -0
- package/json-schemas/es/Clothing/Top.json +15 -0
- package/json-schemas/es/Clothing/TopsSize.json +13 -0
- package/json-schemas/es/Clothing/UseCase.json +14 -0
- package/json-schemas/es/Clothing/UseCases.json +18 -0
- package/json-schemas/es/Clothing/Variant.json +23 -0
- package/json-schemas/es/Clothing/Variants.json +27 -0
- package/json-schemas/es/Clothing/WashType.json +9 -0
- package/json-schemas/es/Clothing/index.json +1286 -0
- package/json-schemas/es/ClothingSchema.json +323 -0
- package/json-schemas/es/DetailedClothingSchema.json +75 -0
- package/json-schemas/es/MetaClothingSchema.json +41 -0
- package/json-schemas/es/index.json +673 -0
- package/json-schemas/index.json +673 -0
- package/package.json +36 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
# @segha/catalog
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
## 0.1.0
|
|
5
|
+
|
|
6
|
+
### Minor Changes
|
|
7
|
+
|
|
8
|
+
- Schema CatalogClothingSchema was added
|
|
9
|
+
- Schema ClothingSchema was added
|
|
10
|
+
- Schema DetailedClothingSchema was added
|
|
11
|
+
- Schema MetaClothingSchema was added
|
|
12
|
+
|
|
3
13
|
## 0.0.1
|
|
4
14
|
|
|
5
15
|
### Initial Release
|
|
6
16
|
|
|
7
|
-
- Schemas
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
17
|
+
- Schemas for Clothing
|
|
18
|
+
- Colors, Materials, Sizes, Measurements...
|
|
19
|
+
- Garments, Layers and Use Cases
|
|
20
|
+
- Variants and Status
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"garment": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"enum": [
|
|
8
|
+
"Camisetas",
|
|
9
|
+
"Polos",
|
|
10
|
+
"Camisas",
|
|
11
|
+
"Blusas",
|
|
12
|
+
"Tops",
|
|
13
|
+
"Jerseys",
|
|
14
|
+
"Sudaderas",
|
|
15
|
+
"Cárdigans",
|
|
16
|
+
"Chaquetas",
|
|
17
|
+
"Pantalones",
|
|
18
|
+
"Vaqueros",
|
|
19
|
+
"Chinos",
|
|
20
|
+
"Faldas",
|
|
21
|
+
"Shorts",
|
|
22
|
+
"Abrigos",
|
|
23
|
+
"Gabardinas",
|
|
24
|
+
"Parkas",
|
|
25
|
+
"Cazadoras",
|
|
26
|
+
"Chalecos",
|
|
27
|
+
"Vestidos",
|
|
28
|
+
"Monos",
|
|
29
|
+
"Zapatillas",
|
|
30
|
+
"Zapatos",
|
|
31
|
+
"Botas",
|
|
32
|
+
"Sandalias",
|
|
33
|
+
"Cinturones",
|
|
34
|
+
"Gorras",
|
|
35
|
+
"Sombreros",
|
|
36
|
+
"Bufandas",
|
|
37
|
+
"Guantes",
|
|
38
|
+
"Bolsos",
|
|
39
|
+
"Mochilas"
|
|
40
|
+
],
|
|
41
|
+
"description": "Tipo de Prenda"
|
|
42
|
+
},
|
|
43
|
+
"slot": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"enum": [
|
|
46
|
+
"Superior",
|
|
47
|
+
"Inferior",
|
|
48
|
+
"Cuerpo Completo",
|
|
49
|
+
"Exterior",
|
|
50
|
+
"Calzado",
|
|
51
|
+
"Accesorios"
|
|
52
|
+
],
|
|
53
|
+
"description": "Parte del outfit"
|
|
54
|
+
},
|
|
55
|
+
"variants": {
|
|
56
|
+
"description": "Detalles Estructurales",
|
|
57
|
+
"type": "array",
|
|
58
|
+
"items": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"enum": [
|
|
61
|
+
"Sin Mangas",
|
|
62
|
+
"Mangas Cortas",
|
|
63
|
+
"Mangas Largas",
|
|
64
|
+
"Cuello Redondo",
|
|
65
|
+
"Cuello Pico",
|
|
66
|
+
"Cuello Alto",
|
|
67
|
+
"Cuello Camisa",
|
|
68
|
+
"Overshirt",
|
|
69
|
+
"Cropped",
|
|
70
|
+
"Larga",
|
|
71
|
+
"Pierna Recta",
|
|
72
|
+
"Pitillo",
|
|
73
|
+
"Ancha",
|
|
74
|
+
"Cargo",
|
|
75
|
+
"Trench",
|
|
76
|
+
"Plumífero",
|
|
77
|
+
"Doble botonadura"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"fit": {
|
|
82
|
+
"description": "Ajuste",
|
|
83
|
+
"type": "string",
|
|
84
|
+
"enum": [
|
|
85
|
+
"Entallado",
|
|
86
|
+
"Regular",
|
|
87
|
+
"Relajado",
|
|
88
|
+
"Oversize"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"primary_color": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"enum": [
|
|
94
|
+
"Blanco",
|
|
95
|
+
"Negro",
|
|
96
|
+
"Gris",
|
|
97
|
+
"Beige",
|
|
98
|
+
"Marrón",
|
|
99
|
+
"Azul",
|
|
100
|
+
"Verde",
|
|
101
|
+
"Rojo",
|
|
102
|
+
"Burdeos",
|
|
103
|
+
"Rosa",
|
|
104
|
+
"Amarillo",
|
|
105
|
+
"Naranja",
|
|
106
|
+
"Morado",
|
|
107
|
+
"Camel",
|
|
108
|
+
"Caqui",
|
|
109
|
+
"Marino",
|
|
110
|
+
"Crema"
|
|
111
|
+
],
|
|
112
|
+
"description": "Color principal"
|
|
113
|
+
},
|
|
114
|
+
"secondary_color": {
|
|
115
|
+
"description": "Color secundario",
|
|
116
|
+
"type": "string",
|
|
117
|
+
"enum": [
|
|
118
|
+
"Blanco",
|
|
119
|
+
"Negro",
|
|
120
|
+
"Gris",
|
|
121
|
+
"Beige",
|
|
122
|
+
"Marrón",
|
|
123
|
+
"Azul",
|
|
124
|
+
"Verde",
|
|
125
|
+
"Rojo",
|
|
126
|
+
"Burdeos",
|
|
127
|
+
"Rosa",
|
|
128
|
+
"Amarillo",
|
|
129
|
+
"Naranja",
|
|
130
|
+
"Morado",
|
|
131
|
+
"Camel",
|
|
132
|
+
"Caqui",
|
|
133
|
+
"Marino",
|
|
134
|
+
"Crema"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"pattern": {
|
|
138
|
+
"description": "Estampado",
|
|
139
|
+
"type": "string",
|
|
140
|
+
"enum": [
|
|
141
|
+
"Liso",
|
|
142
|
+
"Rayas",
|
|
143
|
+
"Cuadros"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"materials": {
|
|
147
|
+
"description": "Materiales",
|
|
148
|
+
"type": "array",
|
|
149
|
+
"items": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"enum": [
|
|
152
|
+
"Algodón",
|
|
153
|
+
"Lino",
|
|
154
|
+
"Lana",
|
|
155
|
+
"Seda",
|
|
156
|
+
"Cuero",
|
|
157
|
+
"Poliéster",
|
|
158
|
+
"Nylon",
|
|
159
|
+
"Elastano",
|
|
160
|
+
"Viscosa",
|
|
161
|
+
"Denim",
|
|
162
|
+
"Punto",
|
|
163
|
+
"Felpa"
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"layer": {
|
|
168
|
+
"type": "string",
|
|
169
|
+
"enum": [
|
|
170
|
+
"Base",
|
|
171
|
+
"Intermedia",
|
|
172
|
+
"Exterior"
|
|
173
|
+
],
|
|
174
|
+
"description": "Capa Térmica"
|
|
175
|
+
},
|
|
176
|
+
"season": {
|
|
177
|
+
"description": "Estaciones",
|
|
178
|
+
"type": "string",
|
|
179
|
+
"enum": [
|
|
180
|
+
"Invierno",
|
|
181
|
+
"Verano",
|
|
182
|
+
"Entretiempo",
|
|
183
|
+
"Todo el año"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"use_case": {
|
|
187
|
+
"description": "Casos de uso",
|
|
188
|
+
"type": "array",
|
|
189
|
+
"items": {
|
|
190
|
+
"type": "string",
|
|
191
|
+
"enum": [
|
|
192
|
+
"Capsula",
|
|
193
|
+
"Favorita",
|
|
194
|
+
"Básico",
|
|
195
|
+
"Deporte",
|
|
196
|
+
"Trabajo",
|
|
197
|
+
"Evento",
|
|
198
|
+
"Viaje",
|
|
199
|
+
"Casa"
|
|
200
|
+
]
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"formality": {
|
|
204
|
+
"description": "Formalidad",
|
|
205
|
+
"type": "string",
|
|
206
|
+
"enum": [
|
|
207
|
+
"Muy Informal",
|
|
208
|
+
"Casual",
|
|
209
|
+
"Arreglado",
|
|
210
|
+
"Formal",
|
|
211
|
+
"Etiqueta"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
"brand": {
|
|
215
|
+
"description": "The brand of the clothing",
|
|
216
|
+
"type": "string"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"required": [
|
|
220
|
+
"garment",
|
|
221
|
+
"slot",
|
|
222
|
+
"primary_color",
|
|
223
|
+
"layer"
|
|
224
|
+
],
|
|
225
|
+
"additionalProperties": false,
|
|
226
|
+
"description": "Prenda de ropa: Datos obtenibles de catalogación"
|
|
227
|
+
}
|
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"garment": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"enum": [
|
|
8
|
+
"Camisetas",
|
|
9
|
+
"Polos",
|
|
10
|
+
"Camisas",
|
|
11
|
+
"Blusas",
|
|
12
|
+
"Tops",
|
|
13
|
+
"Jerseys",
|
|
14
|
+
"Sudaderas",
|
|
15
|
+
"Cárdigans",
|
|
16
|
+
"Chaquetas",
|
|
17
|
+
"Pantalones",
|
|
18
|
+
"Vaqueros",
|
|
19
|
+
"Chinos",
|
|
20
|
+
"Faldas",
|
|
21
|
+
"Shorts",
|
|
22
|
+
"Abrigos",
|
|
23
|
+
"Gabardinas",
|
|
24
|
+
"Parkas",
|
|
25
|
+
"Cazadoras",
|
|
26
|
+
"Chalecos",
|
|
27
|
+
"Vestidos",
|
|
28
|
+
"Monos",
|
|
29
|
+
"Zapatillas",
|
|
30
|
+
"Zapatos",
|
|
31
|
+
"Botas",
|
|
32
|
+
"Sandalias",
|
|
33
|
+
"Cinturones",
|
|
34
|
+
"Gorras",
|
|
35
|
+
"Sombreros",
|
|
36
|
+
"Bufandas",
|
|
37
|
+
"Guantes",
|
|
38
|
+
"Bolsos",
|
|
39
|
+
"Mochilas"
|
|
40
|
+
],
|
|
41
|
+
"description": "Tipo de Prenda"
|
|
42
|
+
},
|
|
43
|
+
"slot": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"enum": [
|
|
46
|
+
"Superior",
|
|
47
|
+
"Inferior",
|
|
48
|
+
"Cuerpo Completo",
|
|
49
|
+
"Exterior",
|
|
50
|
+
"Calzado",
|
|
51
|
+
"Accesorios"
|
|
52
|
+
],
|
|
53
|
+
"description": "Parte del outfit"
|
|
54
|
+
},
|
|
55
|
+
"variants": {
|
|
56
|
+
"description": "Detalles Estructurales",
|
|
57
|
+
"type": "array",
|
|
58
|
+
"items": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"enum": [
|
|
61
|
+
"Sin Mangas",
|
|
62
|
+
"Mangas Cortas",
|
|
63
|
+
"Mangas Largas",
|
|
64
|
+
"Cuello Redondo",
|
|
65
|
+
"Cuello Pico",
|
|
66
|
+
"Cuello Alto",
|
|
67
|
+
"Cuello Camisa",
|
|
68
|
+
"Overshirt",
|
|
69
|
+
"Cropped",
|
|
70
|
+
"Larga",
|
|
71
|
+
"Pierna Recta",
|
|
72
|
+
"Pitillo",
|
|
73
|
+
"Ancha",
|
|
74
|
+
"Cargo",
|
|
75
|
+
"Trench",
|
|
76
|
+
"Plumífero",
|
|
77
|
+
"Doble botonadura"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"fit": {
|
|
82
|
+
"description": "Ajuste",
|
|
83
|
+
"type": "string",
|
|
84
|
+
"enum": [
|
|
85
|
+
"Entallado",
|
|
86
|
+
"Regular",
|
|
87
|
+
"Relajado",
|
|
88
|
+
"Oversize"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"primary_color": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"enum": [
|
|
94
|
+
"Blanco",
|
|
95
|
+
"Negro",
|
|
96
|
+
"Gris",
|
|
97
|
+
"Beige",
|
|
98
|
+
"Marrón",
|
|
99
|
+
"Azul",
|
|
100
|
+
"Verde",
|
|
101
|
+
"Rojo",
|
|
102
|
+
"Burdeos",
|
|
103
|
+
"Rosa",
|
|
104
|
+
"Amarillo",
|
|
105
|
+
"Naranja",
|
|
106
|
+
"Morado",
|
|
107
|
+
"Camel",
|
|
108
|
+
"Caqui",
|
|
109
|
+
"Marino",
|
|
110
|
+
"Crema"
|
|
111
|
+
],
|
|
112
|
+
"description": "Color principal"
|
|
113
|
+
},
|
|
114
|
+
"secondary_color": {
|
|
115
|
+
"description": "Color secundario",
|
|
116
|
+
"type": "string",
|
|
117
|
+
"enum": [
|
|
118
|
+
"Blanco",
|
|
119
|
+
"Negro",
|
|
120
|
+
"Gris",
|
|
121
|
+
"Beige",
|
|
122
|
+
"Marrón",
|
|
123
|
+
"Azul",
|
|
124
|
+
"Verde",
|
|
125
|
+
"Rojo",
|
|
126
|
+
"Burdeos",
|
|
127
|
+
"Rosa",
|
|
128
|
+
"Amarillo",
|
|
129
|
+
"Naranja",
|
|
130
|
+
"Morado",
|
|
131
|
+
"Camel",
|
|
132
|
+
"Caqui",
|
|
133
|
+
"Marino",
|
|
134
|
+
"Crema"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"pattern": {
|
|
138
|
+
"description": "Estampado",
|
|
139
|
+
"type": "string",
|
|
140
|
+
"enum": [
|
|
141
|
+
"Liso",
|
|
142
|
+
"Rayas",
|
|
143
|
+
"Cuadros"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"materials": {
|
|
147
|
+
"description": "Materiales",
|
|
148
|
+
"type": "array",
|
|
149
|
+
"items": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"enum": [
|
|
152
|
+
"Algodón",
|
|
153
|
+
"Lino",
|
|
154
|
+
"Lana",
|
|
155
|
+
"Seda",
|
|
156
|
+
"Cuero",
|
|
157
|
+
"Poliéster",
|
|
158
|
+
"Nylon",
|
|
159
|
+
"Elastano",
|
|
160
|
+
"Viscosa",
|
|
161
|
+
"Denim",
|
|
162
|
+
"Punto",
|
|
163
|
+
"Felpa"
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"layer": {
|
|
168
|
+
"type": "string",
|
|
169
|
+
"enum": [
|
|
170
|
+
"Base",
|
|
171
|
+
"Intermedia",
|
|
172
|
+
"Exterior"
|
|
173
|
+
],
|
|
174
|
+
"description": "Capa Térmica"
|
|
175
|
+
},
|
|
176
|
+
"season": {
|
|
177
|
+
"description": "Estaciones",
|
|
178
|
+
"type": "string",
|
|
179
|
+
"enum": [
|
|
180
|
+
"Invierno",
|
|
181
|
+
"Verano",
|
|
182
|
+
"Entretiempo",
|
|
183
|
+
"Todo el año"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"use_case": {
|
|
187
|
+
"description": "Casos de uso",
|
|
188
|
+
"type": "array",
|
|
189
|
+
"items": {
|
|
190
|
+
"type": "string",
|
|
191
|
+
"enum": [
|
|
192
|
+
"Capsula",
|
|
193
|
+
"Favorita",
|
|
194
|
+
"Básico",
|
|
195
|
+
"Deporte",
|
|
196
|
+
"Trabajo",
|
|
197
|
+
"Evento",
|
|
198
|
+
"Viaje",
|
|
199
|
+
"Casa"
|
|
200
|
+
]
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"formality": {
|
|
204
|
+
"description": "Formalidad",
|
|
205
|
+
"type": "string",
|
|
206
|
+
"enum": [
|
|
207
|
+
"Muy Informal",
|
|
208
|
+
"Casual",
|
|
209
|
+
"Arreglado",
|
|
210
|
+
"Formal",
|
|
211
|
+
"Etiqueta"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
"brand": {
|
|
215
|
+
"description": "The brand of the clothing",
|
|
216
|
+
"type": "string"
|
|
217
|
+
},
|
|
218
|
+
"cares": {
|
|
219
|
+
"description": "Cuidados",
|
|
220
|
+
"type": "array",
|
|
221
|
+
"items": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"enum": [
|
|
224
|
+
"Lavado a mano",
|
|
225
|
+
"Lavado a máquina",
|
|
226
|
+
"Lavado en seco",
|
|
227
|
+
"Frio",
|
|
228
|
+
"Caliente",
|
|
229
|
+
"Planchado",
|
|
230
|
+
"Planchado a vapor"
|
|
231
|
+
]
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"status": {
|
|
235
|
+
"default": "Bien",
|
|
236
|
+
"description": "Estado",
|
|
237
|
+
"type": "string",
|
|
238
|
+
"enum": [
|
|
239
|
+
"Nuevo",
|
|
240
|
+
"Bien",
|
|
241
|
+
"Gastado",
|
|
242
|
+
"Dañado",
|
|
243
|
+
"Retirar"
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
"size": {
|
|
247
|
+
"type": "string",
|
|
248
|
+
"enum": [
|
|
249
|
+
"28",
|
|
250
|
+
"30",
|
|
251
|
+
"32",
|
|
252
|
+
"34",
|
|
253
|
+
"36",
|
|
254
|
+
"37",
|
|
255
|
+
"38",
|
|
256
|
+
"39",
|
|
257
|
+
"40",
|
|
258
|
+
"41",
|
|
259
|
+
"42",
|
|
260
|
+
"43",
|
|
261
|
+
"44",
|
|
262
|
+
"45",
|
|
263
|
+
"46",
|
|
264
|
+
"48",
|
|
265
|
+
"XS",
|
|
266
|
+
"S",
|
|
267
|
+
"M",
|
|
268
|
+
"L",
|
|
269
|
+
"XL",
|
|
270
|
+
"XXL",
|
|
271
|
+
"XXXL"
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
"measurements": {
|
|
275
|
+
"description": "Medidas",
|
|
276
|
+
"type": "array",
|
|
277
|
+
"items": {
|
|
278
|
+
"type": "number"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"type": {
|
|
282
|
+
"type": "string",
|
|
283
|
+
"const": "[[Recursos]]"
|
|
284
|
+
},
|
|
285
|
+
"subtype": {
|
|
286
|
+
"type": "string",
|
|
287
|
+
"const": "[[Prendas]]"
|
|
288
|
+
},
|
|
289
|
+
"areas": {
|
|
290
|
+
"type": "array",
|
|
291
|
+
"items": {
|
|
292
|
+
"type": "string",
|
|
293
|
+
"const": "[[Hogar]]"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"color": {
|
|
297
|
+
"type": "string",
|
|
298
|
+
"const": "#CB6120"
|
|
299
|
+
},
|
|
300
|
+
"icon": {
|
|
301
|
+
"type": "string",
|
|
302
|
+
"const": "shirt"
|
|
303
|
+
},
|
|
304
|
+
"cover": {
|
|
305
|
+
"type": "string"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"required": [
|
|
309
|
+
"garment",
|
|
310
|
+
"slot",
|
|
311
|
+
"primary_color",
|
|
312
|
+
"layer",
|
|
313
|
+
"status",
|
|
314
|
+
"size",
|
|
315
|
+
"type",
|
|
316
|
+
"subtype",
|
|
317
|
+
"areas",
|
|
318
|
+
"color",
|
|
319
|
+
"icon"
|
|
320
|
+
],
|
|
321
|
+
"additionalProperties": false,
|
|
322
|
+
"description": "Prenda de ropa"
|
|
323
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"cares": {
|
|
6
|
+
"description": "Cuidados",
|
|
7
|
+
"type": "array",
|
|
8
|
+
"items": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"enum": [
|
|
11
|
+
"Lavado a mano",
|
|
12
|
+
"Lavado a máquina",
|
|
13
|
+
"Lavado en seco",
|
|
14
|
+
"Frio",
|
|
15
|
+
"Caliente",
|
|
16
|
+
"Planchado",
|
|
17
|
+
"Planchado a vapor"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"status": {
|
|
22
|
+
"default": "Bien",
|
|
23
|
+
"description": "Estado",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"enum": [
|
|
26
|
+
"Nuevo",
|
|
27
|
+
"Bien",
|
|
28
|
+
"Gastado",
|
|
29
|
+
"Dañado",
|
|
30
|
+
"Retirar"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"size": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"enum": [
|
|
36
|
+
"28",
|
|
37
|
+
"30",
|
|
38
|
+
"32",
|
|
39
|
+
"34",
|
|
40
|
+
"36",
|
|
41
|
+
"37",
|
|
42
|
+
"38",
|
|
43
|
+
"39",
|
|
44
|
+
"40",
|
|
45
|
+
"41",
|
|
46
|
+
"42",
|
|
47
|
+
"43",
|
|
48
|
+
"44",
|
|
49
|
+
"45",
|
|
50
|
+
"46",
|
|
51
|
+
"48",
|
|
52
|
+
"XS",
|
|
53
|
+
"S",
|
|
54
|
+
"M",
|
|
55
|
+
"L",
|
|
56
|
+
"XL",
|
|
57
|
+
"XXL",
|
|
58
|
+
"XXXL"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"measurements": {
|
|
62
|
+
"description": "Medidas",
|
|
63
|
+
"type": "array",
|
|
64
|
+
"items": {
|
|
65
|
+
"type": "number"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"required": [
|
|
70
|
+
"status",
|
|
71
|
+
"size"
|
|
72
|
+
],
|
|
73
|
+
"additionalProperties": false,
|
|
74
|
+
"description": "Prenda de ropa: Datos adicionales de dificil obtención"
|
|
75
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"type": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"const": "[[Recursos]]"
|
|
8
|
+
},
|
|
9
|
+
"subtype": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"const": "[[Prendas]]"
|
|
12
|
+
},
|
|
13
|
+
"areas": {
|
|
14
|
+
"type": "array",
|
|
15
|
+
"items": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"const": "[[Hogar]]"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"color": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"const": "#CB6120"
|
|
23
|
+
},
|
|
24
|
+
"icon": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"const": "shirt"
|
|
27
|
+
},
|
|
28
|
+
"cover": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": [
|
|
33
|
+
"type",
|
|
34
|
+
"subtype",
|
|
35
|
+
"areas",
|
|
36
|
+
"color",
|
|
37
|
+
"icon"
|
|
38
|
+
],
|
|
39
|
+
"additionalProperties": false,
|
|
40
|
+
"description": "Prenda de ropa: Metadatos de Nota"
|
|
41
|
+
}
|