@segha/catalog 1.2.0 → 2.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.
Files changed (184) hide show
  1. package/CHANGELOG.md +91 -0
  2. package/README.md +335 -67
  3. package/en/Areas.ts +24 -0
  4. package/en/Article/index.ts +29 -0
  5. package/en/Article/types.ts +9 -0
  6. package/en/Book/index.ts +33 -0
  7. package/en/Book/types.ts +9 -0
  8. package/en/Clothing/Cares.ts +27 -0
  9. package/en/Clothing/Colors.ts +54 -0
  10. package/en/Clothing/Fit.ts +10 -0
  11. package/en/Clothing/Formality.ts +9 -0
  12. package/en/Clothing/Garment.ts +97 -0
  13. package/en/Clothing/Layer.ts +8 -0
  14. package/en/Clothing/Materials.ts +45 -0
  15. package/en/Clothing/Measurements.ts +5 -0
  16. package/en/Clothing/Season.ts +8 -0
  17. package/en/Clothing/Size.ts +47 -0
  18. package/en/Clothing/Slot.ts +10 -0
  19. package/en/Clothing/Status.ts +9 -0
  20. package/en/Clothing/UseCases.ts +20 -0
  21. package/en/Clothing/Variants.ts +73 -0
  22. package/en/Clothing/index.ts +51 -0
  23. package/en/Clothing/types.ts +9 -0
  24. package/en/Movie/index.ts +34 -0
  25. package/en/Movie/types.ts +9 -0
  26. package/en/Note.ts +13 -0
  27. package/en/index.ts +5 -0
  28. package/en/types.ts +9 -0
  29. package/es/Areas.ts +24 -0
  30. package/es/Article/index.ts +29 -0
  31. package/es/Article/types.ts +9 -0
  32. package/es/Book/index.ts +33 -0
  33. package/es/Book/types.ts +9 -0
  34. package/es/Clothing/index.ts +10 -10
  35. package/es/Movie/index.ts +34 -0
  36. package/es/Movie/types.ts +9 -0
  37. package/es/Note.ts +13 -0
  38. package/es/index.ts +4 -0
  39. package/es/types.ts +7 -0
  40. package/index.ts +2 -2
  41. package/json-schemas/ArticleSchema.json +103 -0
  42. package/json-schemas/BookSchema.json +124 -0
  43. package/json-schemas/CatalogArticleSchema.json +35 -0
  44. package/json-schemas/CatalogBookSchema.json +44 -0
  45. package/json-schemas/CatalogClothingSchema.json +176 -177
  46. package/json-schemas/CatalogMovieSchema.json +49 -0
  47. package/json-schemas/ClothingSchema.json +195 -196
  48. package/json-schemas/DetailedArticleSchema.json +42 -0
  49. package/json-schemas/DetailedBookSchema.json +49 -0
  50. package/json-schemas/DetailedClothingSchema.json +17 -17
  51. package/json-schemas/DetailedMovieSchema.json +48 -0
  52. package/json-schemas/MetaArticleSchema.json +46 -0
  53. package/json-schemas/MetaBookSchema.json +51 -0
  54. package/json-schemas/MetaClothingSchema.json +4 -4
  55. package/json-schemas/MetaMovieSchema.json +51 -0
  56. package/json-schemas/MovieSchema.json +128 -0
  57. package/json-schemas/NoteSchema.json +745 -0
  58. package/json-schemas/en/Area.json +21 -0
  59. package/json-schemas/en/Areas.json +25 -0
  60. package/json-schemas/en/Article/ArticleSchema.json +103 -0
  61. package/json-schemas/en/Article/CatalogArticleSchema.json +35 -0
  62. package/json-schemas/en/Article/DetailedArticleSchema.json +42 -0
  63. package/json-schemas/en/Article/MetaArticleSchema.json +46 -0
  64. package/json-schemas/en/Article/index.json +233 -0
  65. package/json-schemas/en/ArticleSchema.json +103 -0
  66. package/json-schemas/en/Book/BookSchema.json +124 -0
  67. package/json-schemas/en/Book/CatalogBookSchema.json +44 -0
  68. package/json-schemas/en/Book/DetailedBookSchema.json +49 -0
  69. package/json-schemas/en/Book/MetaBookSchema.json +51 -0
  70. package/json-schemas/en/Book/index.json +275 -0
  71. package/json-schemas/en/BookSchema.json +124 -0
  72. package/json-schemas/en/CatalogArticleSchema.json +35 -0
  73. package/json-schemas/en/CatalogBookSchema.json +44 -0
  74. package/json-schemas/en/CatalogClothingSchema.json +292 -0
  75. package/json-schemas/en/CatalogMovieSchema.json +49 -0
  76. package/json-schemas/en/Clothing/Accessories.json +18 -0
  77. package/json-schemas/en/Clothing/AdditionalFeatures.json +9 -0
  78. package/json-schemas/en/Clothing/BaseColor.json +19 -0
  79. package/json-schemas/en/Clothing/Bottom.json +12 -0
  80. package/json-schemas/en/Clothing/Care.json +13 -0
  81. package/json-schemas/en/Clothing/Cares.json +17 -0
  82. package/json-schemas/en/Clothing/CatalogClothingSchema.json +292 -0
  83. package/json-schemas/en/Clothing/Closures.json +11 -0
  84. package/json-schemas/en/Clothing/ClothingSchema.json +388 -0
  85. package/json-schemas/en/Clothing/Color.json +26 -0
  86. package/json-schemas/en/Clothing/CommonFabric.json +15 -0
  87. package/json-schemas/en/Clothing/DetailedClothingSchema.json +75 -0
  88. package/json-schemas/en/Clothing/Dress.json +9 -0
  89. package/json-schemas/en/Clothing/Fit.json +13 -0
  90. package/json-schemas/en/Clothing/Formality.json +12 -0
  91. package/json-schemas/en/Clothing/Garment.json +56 -0
  92. package/json-schemas/en/Clothing/Home.json +9 -0
  93. package/json-schemas/en/Clothing/Ironing.json +8 -0
  94. package/json-schemas/en/Clothing/Layer.json +10 -0
  95. package/json-schemas/en/Clothing/Material.json +28 -0
  96. package/json-schemas/en/Clothing/Materials.json +32 -0
  97. package/json-schemas/en/Clothing/Measurements.json +8 -0
  98. package/json-schemas/en/Clothing/MetaClothingSchema.json +41 -0
  99. package/json-schemas/en/Clothing/MetallicColor.json +9 -0
  100. package/json-schemas/en/Clothing/NaturalMaterial.json +13 -0
  101. package/json-schemas/en/Clothing/Necks.json +15 -0
  102. package/json-schemas/en/Clothing/Outerwear.json +9 -0
  103. package/json-schemas/en/Clothing/Pants.json +11 -0
  104. package/json-schemas/en/Clothing/PantsSize.json +17 -0
  105. package/json-schemas/en/Clothing/Pattern.json +17 -0
  106. package/json-schemas/en/Clothing/PrimaryColor.json +27 -0
  107. package/json-schemas/en/Clothing/Season.json +11 -0
  108. package/json-schemas/en/Clothing/SecondaryColor.json +27 -0
  109. package/json-schemas/en/Clothing/Shoes.json +11 -0
  110. package/json-schemas/en/Clothing/ShoesSize.json +16 -0
  111. package/json-schemas/en/Clothing/Size.json +29 -0
  112. package/json-schemas/en/Clothing/Sleeves.json +9 -0
  113. package/json-schemas/en/Clothing/Slot.json +13 -0
  114. package/json-schemas/en/Clothing/SpecialColor.json +10 -0
  115. package/json-schemas/en/Clothing/SpecialCuts.json +9 -0
  116. package/json-schemas/en/Clothing/Sportswear.json +11 -0
  117. package/json-schemas/en/Clothing/Status.json +13 -0
  118. package/json-schemas/en/Clothing/Swimsuits.json +9 -0
  119. package/json-schemas/en/Clothing/SyntheticMaterial.json +12 -0
  120. package/json-schemas/en/Clothing/Temperature.json +8 -0
  121. package/json-schemas/en/Clothing/Top.json +16 -0
  122. package/json-schemas/en/Clothing/TopsSize.json +13 -0
  123. package/json-schemas/en/Clothing/Underwear.json +12 -0
  124. package/json-schemas/en/Clothing/UseCase.json +18 -0
  125. package/json-schemas/en/Clothing/UseCases.json +22 -0
  126. package/json-schemas/en/Clothing/Variant.json +37 -0
  127. package/json-schemas/en/Clothing/Variants.json +41 -0
  128. package/json-schemas/en/Clothing/WashType.json +9 -0
  129. package/json-schemas/en/Clothing/index.json +1602 -0
  130. package/json-schemas/en/ClothingSchema.json +388 -0
  131. package/json-schemas/en/DetailedArticleSchema.json +42 -0
  132. package/json-schemas/en/DetailedBookSchema.json +49 -0
  133. package/json-schemas/en/DetailedClothingSchema.json +75 -0
  134. package/json-schemas/en/DetailedMovieSchema.json +48 -0
  135. package/json-schemas/en/FirstLevelArea.json +21 -0
  136. package/json-schemas/en/MetaArticleSchema.json +46 -0
  137. package/json-schemas/en/MetaBookSchema.json +51 -0
  138. package/json-schemas/en/MetaClothingSchema.json +41 -0
  139. package/json-schemas/en/MetaMovieSchema.json +51 -0
  140. package/json-schemas/en/Movie/CatalogMovieSchema.json +49 -0
  141. package/json-schemas/en/Movie/DetailedMovieSchema.json +48 -0
  142. package/json-schemas/en/Movie/MetaMovieSchema.json +51 -0
  143. package/json-schemas/en/Movie/MovieSchema.json +128 -0
  144. package/json-schemas/en/Movie/index.json +283 -0
  145. package/json-schemas/en/MovieSchema.json +128 -0
  146. package/json-schemas/en/NoteSchema.json +745 -0
  147. package/json-schemas/en/index.json +2385 -0
  148. package/json-schemas/es/Area.json +21 -0
  149. package/json-schemas/es/Areas.json +25 -0
  150. package/json-schemas/es/Article/ArticleSchema.json +103 -0
  151. package/json-schemas/es/Article/CatalogArticleSchema.json +35 -0
  152. package/json-schemas/es/Article/DetailedArticleSchema.json +42 -0
  153. package/json-schemas/es/Article/MetaArticleSchema.json +46 -0
  154. package/json-schemas/es/Article/index.json +233 -0
  155. package/json-schemas/es/ArticleSchema.json +103 -0
  156. package/json-schemas/es/Book/BookSchema.json +124 -0
  157. package/json-schemas/es/Book/CatalogBookSchema.json +44 -0
  158. package/json-schemas/es/Book/DetailedBookSchema.json +49 -0
  159. package/json-schemas/es/Book/MetaBookSchema.json +51 -0
  160. package/json-schemas/es/Book/index.json +275 -0
  161. package/json-schemas/es/BookSchema.json +124 -0
  162. package/json-schemas/es/CatalogArticleSchema.json +35 -0
  163. package/json-schemas/es/CatalogBookSchema.json +44 -0
  164. package/json-schemas/es/CatalogMovieSchema.json +49 -0
  165. package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -1
  166. package/json-schemas/es/Clothing/index.json +1 -1
  167. package/json-schemas/es/DetailedArticleSchema.json +42 -0
  168. package/json-schemas/es/DetailedBookSchema.json +49 -0
  169. package/json-schemas/es/DetailedClothingSchema.json +1 -1
  170. package/json-schemas/es/DetailedMovieSchema.json +48 -0
  171. package/json-schemas/es/FirstLevelArea.json +21 -0
  172. package/json-schemas/es/MetaArticleSchema.json +46 -0
  173. package/json-schemas/es/MetaBookSchema.json +51 -0
  174. package/json-schemas/es/MetaMovieSchema.json +51 -0
  175. package/json-schemas/es/Movie/CatalogMovieSchema.json +49 -0
  176. package/json-schemas/es/Movie/DetailedMovieSchema.json +48 -0
  177. package/json-schemas/es/Movie/MetaMovieSchema.json +51 -0
  178. package/json-schemas/es/Movie/MovieSchema.json +128 -0
  179. package/json-schemas/es/Movie/index.json +283 -0
  180. package/json-schemas/es/MovieSchema.json +128 -0
  181. package/json-schemas/es/NoteSchema.json +746 -0
  182. package/json-schemas/es/index.json +1584 -1
  183. package/json-schemas/index.json +1907 -394
  184. package/package.json +11 -3
@@ -3,230 +3,535 @@
3
3
  "title": "@segha/catalog",
4
4
  "description": "Schemas for Petroglyph Catalog",
5
5
  "$defs": {
6
+ "ArticleSchema": {
7
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
8
+ "type": "object",
9
+ "properties": {
10
+ "title": {
11
+ "type": "string",
12
+ "description": "Title of the article"
13
+ },
14
+ "description": {
15
+ "description": "Description",
16
+ "type": "string"
17
+ },
18
+ "excerpt": {
19
+ "description": "Extract of the article",
20
+ "type": "string"
21
+ },
22
+ "author": {
23
+ "type": "array",
24
+ "items": {
25
+ "type": "string"
26
+ },
27
+ "description": "Authors"
28
+ },
29
+ "published": {
30
+ "description": "Year of publication",
31
+ "type": "string"
32
+ },
33
+ "status": {
34
+ "type": "string",
35
+ "enum": [
36
+ "Pending",
37
+ "In Progress",
38
+ "Read",
39
+ "Consolidated"
40
+ ],
41
+ "description": "Reading status"
42
+ },
43
+ "projects": {
44
+ "type": "array",
45
+ "items": {
46
+ "type": "string"
47
+ },
48
+ "description": "Projects"
49
+ },
50
+ "topics": {
51
+ "type": "array",
52
+ "items": {
53
+ "type": "string"
54
+ },
55
+ "description": "Topics"
56
+ },
57
+ "rating": {
58
+ "type": "number",
59
+ "description": "Rating of the article"
60
+ },
61
+ "type": {
62
+ "type": "string",
63
+ "const": "[[Sources]]"
64
+ },
65
+ "format": {
66
+ "type": "string",
67
+ "const": "[[Articles]]"
68
+ },
69
+ "areas": {
70
+ "type": "array",
71
+ "items": {
72
+ "type": "string",
73
+ "const": "[[Knowledge]]"
74
+ }
75
+ },
76
+ "color": {
77
+ "type": "string",
78
+ "const": "#3171B2"
79
+ },
80
+ "icon": {
81
+ "type": "string",
82
+ "const": "newspaper"
83
+ },
84
+ "banner": {
85
+ "type": "string"
86
+ },
87
+ "url": {
88
+ "type": "string",
89
+ "description": "URL of the article"
90
+ }
91
+ },
92
+ "required": [
93
+ "title",
94
+ "author",
95
+ "status",
96
+ "projects",
97
+ "topics",
98
+ "rating",
99
+ "type",
100
+ "format",
101
+ "areas",
102
+ "color",
103
+ "icon",
104
+ "url"
105
+ ],
106
+ "additionalProperties": false,
107
+ "description": "Article"
108
+ },
109
+ "BookSchema": {
110
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
111
+ "type": "object",
112
+ "properties": {
113
+ "title": {
114
+ "type": "string",
115
+ "description": "Title of the book"
116
+ },
117
+ "subtitle": {
118
+ "description": "Subtitle of the book",
119
+ "type": "string"
120
+ },
121
+ "description": {
122
+ "description": "Description of the book",
123
+ "type": "string"
124
+ },
125
+ "author": {
126
+ "type": "array",
127
+ "items": {
128
+ "type": "string"
129
+ },
130
+ "description": "Authors"
131
+ },
132
+ "published": {
133
+ "type": "string",
134
+ "description": "Year of publication"
135
+ },
136
+ "categories": {
137
+ "type": "array",
138
+ "items": {
139
+ "type": "string"
140
+ },
141
+ "description": "Categories"
142
+ },
143
+ "status": {
144
+ "type": "string",
145
+ "enum": [
146
+ "Pending",
147
+ "In Progress",
148
+ "Read",
149
+ "Consolidated"
150
+ ],
151
+ "description": "Reading status"
152
+ },
153
+ "topics": {
154
+ "type": "array",
155
+ "items": {
156
+ "type": "string"
157
+ },
158
+ "description": "Topics"
159
+ },
160
+ "rating": {
161
+ "type": "number",
162
+ "description": "Rating of the book"
163
+ },
164
+ "online_rating": {
165
+ "type": "number",
166
+ "description": "Online rating"
167
+ },
168
+ "last_time_read": {
169
+ "type": "string",
170
+ "description": "Last time read"
171
+ },
172
+ "times_read": {
173
+ "type": "number",
174
+ "description": "Times read"
175
+ },
176
+ "type": {
177
+ "type": "string",
178
+ "const": "[[Sources]]"
179
+ },
180
+ "format": {
181
+ "type": "string",
182
+ "const": "[[Books]]"
183
+ },
184
+ "areas": {
185
+ "type": "array",
186
+ "items": {
187
+ "type": "string",
188
+ "const": "[[Knowledge]]"
189
+ }
190
+ },
191
+ "color": {
192
+ "type": "string",
193
+ "const": "#3171B2"
194
+ },
195
+ "icon": {
196
+ "type": "string",
197
+ "const": "book"
198
+ },
199
+ "cover": {
200
+ "type": "string"
201
+ },
202
+ "url": {
203
+ "type": "string",
204
+ "description": "URL of the book in Amazon or similar"
205
+ },
206
+ "read_url": {
207
+ "type": "string",
208
+ "description": "URL of the reading of the book"
209
+ }
210
+ },
211
+ "required": [
212
+ "title",
213
+ "author",
214
+ "published",
215
+ "categories",
216
+ "status",
217
+ "topics",
218
+ "rating",
219
+ "online_rating",
220
+ "last_time_read",
221
+ "times_read",
222
+ "type",
223
+ "format",
224
+ "areas",
225
+ "color",
226
+ "icon",
227
+ "url",
228
+ "read_url"
229
+ ],
230
+ "additionalProperties": false,
231
+ "description": "Book"
232
+ },
233
+ "CatalogArticleSchema": {
234
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
235
+ "type": "object",
236
+ "properties": {
237
+ "title": {
238
+ "type": "string",
239
+ "description": "Title of the article"
240
+ },
241
+ "description": {
242
+ "description": "Description",
243
+ "type": "string"
244
+ },
245
+ "excerpt": {
246
+ "description": "Extract of the article",
247
+ "type": "string"
248
+ },
249
+ "author": {
250
+ "type": "array",
251
+ "items": {
252
+ "type": "string"
253
+ },
254
+ "description": "Authors"
255
+ },
256
+ "published": {
257
+ "description": "Year of publication",
258
+ "type": "string"
259
+ }
260
+ },
261
+ "required": [
262
+ "title",
263
+ "author"
264
+ ],
265
+ "additionalProperties": false,
266
+ "description": "Article: Data obtained from catalogation"
267
+ },
268
+ "CatalogBookSchema": {
269
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
270
+ "type": "object",
271
+ "properties": {
272
+ "title": {
273
+ "type": "string",
274
+ "description": "Title of the book"
275
+ },
276
+ "subtitle": {
277
+ "description": "Subtitle of the book",
278
+ "type": "string"
279
+ },
280
+ "description": {
281
+ "description": "Description of the book",
282
+ "type": "string"
283
+ },
284
+ "author": {
285
+ "type": "array",
286
+ "items": {
287
+ "type": "string"
288
+ },
289
+ "description": "Authors"
290
+ },
291
+ "published": {
292
+ "type": "string",
293
+ "description": "Year of publication"
294
+ },
295
+ "categories": {
296
+ "type": "array",
297
+ "items": {
298
+ "type": "string"
299
+ },
300
+ "description": "Categories"
301
+ }
302
+ },
303
+ "required": [
304
+ "title",
305
+ "author",
306
+ "published",
307
+ "categories"
308
+ ],
309
+ "additionalProperties": false,
310
+ "description": "Book: Data obtained from catalogation"
311
+ },
6
312
  "CatalogClothingSchema": {
7
313
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8
314
  "type": "object",
9
315
  "properties": {
10
316
  "name": {
11
317
  "type": "string",
12
- "description": "Nombre descriptivo de la prenda de ropa"
318
+ "description": "Descriptive name of the clothing item"
13
319
  },
14
320
  "garment": {
15
321
  "type": "string",
16
322
  "enum": [
17
- "Camisetas Interiores",
18
- "Calzoncillos",
19
- "Bragas",
20
- "Sujetadores",
21
- "Calcetines",
22
- "Camisetas",
23
- "Polos",
24
- "Camisas",
25
- "Blusas",
323
+ "Undershirts",
324
+ "Boxers",
325
+ "Panties",
326
+ "Bras",
327
+ "Socks",
328
+ "T-Shirts",
329
+ "Polo Shirts",
330
+ "Shirts",
331
+ "Blouses",
26
332
  "Tops",
27
- "Jerseys",
28
- "Sudaderas",
29
- "Cárdigans",
30
- "Chaquetas",
31
- "Pantalones",
32
- "Vaqueros",
333
+ "Sweaters",
334
+ "Hoodies",
335
+ "Cardigans",
336
+ "Jackets",
337
+ "Pants",
338
+ "Jeans",
33
339
  "Chinos",
34
- "Faldas",
340
+ "Skirts",
35
341
  "Shorts",
36
- "Americanas",
37
- "Abrigos",
38
- "Gabardinas",
342
+ "Blazers",
343
+ "Coats",
344
+ "Trench Coats",
39
345
  "Parkas",
40
- "Cazadoras",
41
- "Chalecos",
42
- "Mallas",
43
- "Ropa Técnica",
44
- "Shorts Deportivos",
45
- "Camisetas Técnicas",
46
- "Vestidos",
47
- "Monos",
48
- "Zapatillas",
49
- "Zapatos",
50
- "Botas",
51
- "Sandalias",
52
- "Cinturones",
53
- "Gorras",
54
- "Sombreros",
55
- "Bufandas",
56
- "Guantes",
57
- "Bolsos",
58
- "Mochilas",
59
- "Gafas de Sol",
60
- "Pañuelos",
61
- "Relojes",
62
- "Joyas",
63
- "Pijamas",
64
- "Batas",
65
- "Bañadores",
346
+ "Vests",
347
+ "Leggings",
348
+ "Technical Wear",
349
+ "Sports Shorts",
350
+ "Technical T-Shirts",
351
+ "Dresses",
352
+ "Jumpsuits",
353
+ "Sneakers",
354
+ "Shoes",
355
+ "Boots",
356
+ "Sandals",
357
+ "Belts",
358
+ "Caps",
359
+ "Hats",
360
+ "Scarves",
361
+ "Gloves",
362
+ "Handbags",
363
+ "Backpacks",
364
+ "Sunglasses",
365
+ "Handkerchiefs",
366
+ "Watches",
367
+ "Jewelry",
368
+ "Pajamas",
369
+ "Robes",
370
+ "Swimsuits",
66
371
  "Bikinis"
67
372
  ],
68
- "description": "Tipo de Prenda"
373
+ "description": "Garment Type"
69
374
  },
70
375
  "slot": {
71
376
  "type": "string",
72
377
  "enum": [
73
- "Superior",
74
- "Inferior",
75
- "Cuerpo Completo",
76
- "Exterior",
77
- "Calzado",
78
- "Accesorios"
378
+ "Top",
379
+ "Bottom",
380
+ "Full Body",
381
+ "Outer",
382
+ "Footwear",
383
+ "Accessories"
79
384
  ],
80
- "description": "Parte del outfit"
385
+ "description": "Outfit part"
81
386
  },
82
387
  "variants": {
83
- "description": "Detalles Estructurales",
388
+ "description": "Structural Details",
84
389
  "type": "array",
85
390
  "items": {
86
391
  "type": "string",
87
392
  "enum": [
88
- "Sin Mangas",
89
- "Mangas Cortas",
90
- "Mangas Largas",
91
- "Cuello Redondo",
92
- "Cuello Pico",
93
- "Cuello Alto",
94
- "Cuello Camisa",
95
- "Cuello Polo",
96
- "Cuello Panadero",
97
- "Cuello Mao",
98
- "Cuello Chimenea",
99
- "Capucha",
393
+ "Sleeveless",
394
+ "Short Sleeves",
395
+ "Long Sleeves",
396
+ "Round Neck",
397
+ "V-Neck",
398
+ "High Neck",
399
+ "Shirt Collar",
400
+ "Polo Collar",
401
+ "Boat Neck",
402
+ "Mandarin Collar",
403
+ "Funnel Neck",
404
+ "Hood",
100
405
  "Overshirt",
101
406
  "Cropped",
102
- "Larga",
103
- "Pierna Recta",
104
- "Pitillo",
105
- "Ancha",
407
+ "Long",
408
+ "Straight Leg",
409
+ "Skinny",
410
+ "Wide",
106
411
  "Cargo",
107
- "Acampanado",
412
+ "Flared",
108
413
  "Trench",
109
- "Plumífero",
110
- "Doble botonadura",
111
- "Botones",
112
- "Cremallera",
414
+ "Puffer",
415
+ "Double Breasted",
416
+ "Buttons",
417
+ "Zipper",
113
418
  "Velcro",
114
- "Cordones",
115
- "Broches",
116
- "Bolsillos",
117
- "Sin Bolsillos",
419
+ "Laces",
420
+ "Snaps",
421
+ "Pockets",
422
+ "No Pockets",
118
423
  "Reversible"
119
424
  ]
120
425
  }
121
426
  },
122
427
  "fit": {
123
- "description": "Ajuste",
428
+ "description": "Fit",
124
429
  "type": "string",
125
430
  "enum": [
126
- "Entallado",
127
- "Ajustado",
431
+ "Fitted",
432
+ "Slim",
128
433
  "Regular",
129
- "Relajado",
130
- "Holgado",
131
- "Extragrande"
434
+ "Relaxed",
435
+ "Loose",
436
+ "Oversized"
132
437
  ]
133
438
  },
134
439
  "primary_color": {
135
440
  "type": "string",
136
441
  "enum": [
137
- "Blanco",
138
- "Negro",
139
- "Gris",
442
+ "White",
443
+ "Black",
444
+ "Gray",
140
445
  "Beige",
141
- "Marrón",
142
- "Azul",
143
- "Verde",
144
- "Rojo",
145
- "Burdeos",
146
- "Rosa",
147
- "Amarillo",
148
- "Naranja",
149
- "Morado",
446
+ "Brown",
447
+ "Blue",
448
+ "Green",
449
+ "Red",
450
+ "Burgundy",
451
+ "Pink",
452
+ "Yellow",
453
+ "Orange",
454
+ "Purple",
150
455
  "Camel",
151
- "Caqui",
152
- "Marino",
153
- "Crema",
154
- "Oro",
155
- "Plata",
156
- "Bronce"
456
+ "Khaki",
457
+ "Navy",
458
+ "Cream",
459
+ "Gold",
460
+ "Silver",
461
+ "Bronze"
157
462
  ],
158
- "description": "Color principal"
463
+ "description": "Primary color"
159
464
  },
160
465
  "secondary_color": {
161
- "description": "Color secundario",
466
+ "description": "Secondary color",
162
467
  "type": "string",
163
468
  "enum": [
164
- "Blanco",
165
- "Negro",
166
- "Gris",
469
+ "White",
470
+ "Black",
471
+ "Gray",
167
472
  "Beige",
168
- "Marrón",
169
- "Azul",
170
- "Verde",
171
- "Rojo",
172
- "Burdeos",
173
- "Rosa",
174
- "Amarillo",
175
- "Naranja",
176
- "Morado",
473
+ "Brown",
474
+ "Blue",
475
+ "Green",
476
+ "Red",
477
+ "Burgundy",
478
+ "Pink",
479
+ "Yellow",
480
+ "Orange",
481
+ "Purple",
177
482
  "Camel",
178
- "Caqui",
179
- "Marino",
180
- "Crema",
181
- "Oro",
182
- "Plata",
183
- "Bronce"
483
+ "Khaki",
484
+ "Navy",
485
+ "Cream",
486
+ "Gold",
487
+ "Silver",
488
+ "Bronze"
184
489
  ]
185
490
  },
186
491
  "pattern": {
187
- "description": "Estampado",
492
+ "description": "Pattern",
188
493
  "type": "string",
189
494
  "enum": [
190
- "Liso",
191
- "Rayas",
192
- "Cuadros",
193
- "Lunares",
495
+ "Solid",
496
+ "Stripes",
497
+ "Plaid",
498
+ "Polka Dots",
194
499
  "Animal Print",
195
500
  "Floral",
196
- "Geométrico",
197
- "Camuflaje",
198
- "EstampadoGráfico",
199
- "Degradado"
501
+ "Geometric",
502
+ "Camouflage",
503
+ "Graphic Print",
504
+ "Gradient"
200
505
  ]
201
506
  },
202
507
  "materials": {
203
- "description": "Materiales",
508
+ "description": "Materials",
204
509
  "type": "array",
205
510
  "items": {
206
511
  "type": "string",
207
512
  "enum": [
208
- "Algodón",
209
- "Lino",
210
- "Lana",
211
- "Seda",
212
- "Cuero",
213
- "Cachemir",
214
- "Ante",
215
- "Poliéster",
513
+ "Cotton",
514
+ "Linen",
515
+ "Wool",
516
+ "Silk",
517
+ "Leather",
518
+ "Cashmere",
519
+ "Suede",
520
+ "Polyester",
216
521
  "Nylon",
217
- "Elastano",
218
- "Viscosa",
219
- "Piel Sintética",
522
+ "Elastane",
523
+ "Viscose",
524
+ "Synthetic Leather",
220
525
  "Gore-Tex",
221
526
  "Denim",
222
- "Punto",
223
- "Felpa",
527
+ "Knit",
528
+ "Fleece",
224
529
  "Tweed",
225
- "Satén",
226
- "Terciopelo",
530
+ "Satin",
531
+ "Velvet",
227
532
  "Jacquard",
228
- "Franela",
229
- "Gabardina"
533
+ "Flannel",
534
+ "Gabardine"
230
535
  ]
231
536
  }
232
537
  },
@@ -234,51 +539,51 @@
234
539
  "type": "string",
235
540
  "enum": [
236
541
  "Base",
237
- "Intermedia",
238
- "Exterior"
542
+ "Mid",
543
+ "Outer"
239
544
  ],
240
- "description": "Capa Térmica"
545
+ "description": "Thermal Layer"
241
546
  },
242
547
  "season": {
243
- "description": "Estaciones",
548
+ "description": "Seasons",
244
549
  "type": "string",
245
550
  "enum": [
246
- "Invierno",
247
- "Verano",
248
- "Entretiempo",
249
- "Todo el año"
551
+ "Winter",
552
+ "Summer",
553
+ "Spring/Fall",
554
+ "All Year"
250
555
  ]
251
556
  },
252
557
  "use_case": {
253
- "description": "Casos de uso",
558
+ "description": "Use cases",
254
559
  "type": "array",
255
560
  "items": {
256
561
  "type": "string",
257
562
  "enum": [
258
- "Capsula",
259
- "Favorita",
260
- "Básico",
261
- "Deporte",
262
- "Trabajo",
263
- "Evento",
264
- "Viaje",
265
- "Casa",
266
- "Fiesta",
267
- "Playa",
268
- "Lluvia",
269
- "Frío Extremo"
563
+ "Capsule",
564
+ "Favorite",
565
+ "Basic",
566
+ "Sport",
567
+ "Work",
568
+ "Event",
569
+ "Travel",
570
+ "Home",
571
+ "Party",
572
+ "Beach",
573
+ "Rain",
574
+ "Extreme Cold"
270
575
  ]
271
576
  }
272
577
  },
273
578
  "formality": {
274
- "description": "Formalidad",
579
+ "description": "Formality",
275
580
  "type": "string",
276
581
  "enum": [
277
- "Muy Informal",
582
+ "Very Casual",
278
583
  "Casual",
279
- "Arreglado",
584
+ "Smart Casual",
280
585
  "Formal",
281
- "Etiqueta"
586
+ "Black Tie"
282
587
  ]
283
588
  },
284
589
  "brand": {
@@ -294,7 +599,56 @@
294
599
  "layer"
295
600
  ],
296
601
  "additionalProperties": false,
297
- "description": "Prenda de ropa: Datos obtenibles de catalogación"
602
+ "description": "Clothing item: Catalogable data"
603
+ },
604
+ "CatalogMovieSchema": {
605
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
606
+ "type": "object",
607
+ "properties": {
608
+ "title": {
609
+ "type": "string",
610
+ "description": "Title of the movie"
611
+ },
612
+ "description": {
613
+ "type": "string",
614
+ "description": "Description of the movie"
615
+ },
616
+ "author": {
617
+ "type": "array",
618
+ "items": {
619
+ "type": "string"
620
+ },
621
+ "description": "Authors. Writers, directors, producers, etc."
622
+ },
623
+ "actors": {
624
+ "type": "array",
625
+ "items": {
626
+ "type": "string"
627
+ },
628
+ "description": "Actors"
629
+ },
630
+ "published": {
631
+ "type": "string",
632
+ "description": "Year of publication"
633
+ },
634
+ "genres": {
635
+ "type": "array",
636
+ "items": {
637
+ "type": "string"
638
+ },
639
+ "description": "Genres"
640
+ }
641
+ },
642
+ "required": [
643
+ "title",
644
+ "description",
645
+ "author",
646
+ "actors",
647
+ "published",
648
+ "genres"
649
+ ],
650
+ "additionalProperties": false,
651
+ "description": "Movie: Data obtained from catalogation"
298
652
  },
299
653
  "ClothingSchema": {
300
654
  "$schema": "https://json-schema.org/draft/2020-12/schema",
@@ -302,224 +656,223 @@
302
656
  "properties": {
303
657
  "name": {
304
658
  "type": "string",
305
- "description": "Nombre descriptivo de la prenda de ropa"
659
+ "description": "Descriptive name of the clothing item"
306
660
  },
307
661
  "garment": {
308
662
  "type": "string",
309
663
  "enum": [
310
- "Camisetas Interiores",
311
- "Calzoncillos",
312
- "Bragas",
313
- "Sujetadores",
314
- "Calcetines",
315
- "Camisetas",
316
- "Polos",
317
- "Camisas",
318
- "Blusas",
664
+ "Undershirts",
665
+ "Boxers",
666
+ "Panties",
667
+ "Bras",
668
+ "Socks",
669
+ "T-Shirts",
670
+ "Polo Shirts",
671
+ "Shirts",
672
+ "Blouses",
319
673
  "Tops",
320
- "Jerseys",
321
- "Sudaderas",
322
- "Cárdigans",
323
- "Chaquetas",
324
- "Pantalones",
325
- "Vaqueros",
674
+ "Sweaters",
675
+ "Hoodies",
676
+ "Cardigans",
677
+ "Jackets",
678
+ "Pants",
679
+ "Jeans",
326
680
  "Chinos",
327
- "Faldas",
681
+ "Skirts",
328
682
  "Shorts",
329
- "Americanas",
330
- "Abrigos",
331
- "Gabardinas",
683
+ "Blazers",
684
+ "Coats",
685
+ "Trench Coats",
332
686
  "Parkas",
333
- "Cazadoras",
334
- "Chalecos",
335
- "Mallas",
336
- "Ropa Técnica",
337
- "Shorts Deportivos",
338
- "Camisetas Técnicas",
339
- "Vestidos",
340
- "Monos",
341
- "Zapatillas",
342
- "Zapatos",
343
- "Botas",
344
- "Sandalias",
345
- "Cinturones",
346
- "Gorras",
347
- "Sombreros",
348
- "Bufandas",
349
- "Guantes",
350
- "Bolsos",
351
- "Mochilas",
352
- "Gafas de Sol",
353
- "Pañuelos",
354
- "Relojes",
355
- "Joyas",
356
- "Pijamas",
357
- "Batas",
358
- "Bañadores",
687
+ "Vests",
688
+ "Leggings",
689
+ "Technical Wear",
690
+ "Sports Shorts",
691
+ "Technical T-Shirts",
692
+ "Dresses",
693
+ "Jumpsuits",
694
+ "Sneakers",
695
+ "Shoes",
696
+ "Boots",
697
+ "Sandals",
698
+ "Belts",
699
+ "Caps",
700
+ "Hats",
701
+ "Scarves",
702
+ "Gloves",
703
+ "Handbags",
704
+ "Backpacks",
705
+ "Sunglasses",
706
+ "Handkerchiefs",
707
+ "Watches",
708
+ "Jewelry",
709
+ "Pajamas",
710
+ "Robes",
711
+ "Swimsuits",
359
712
  "Bikinis"
360
713
  ],
361
- "description": "Tipo de Prenda"
714
+ "description": "Garment Type"
362
715
  },
363
716
  "slot": {
364
717
  "type": "string",
365
718
  "enum": [
366
- "Superior",
367
- "Inferior",
368
- "Cuerpo Completo",
369
- "Exterior",
370
- "Calzado",
371
- "Accesorios"
719
+ "Top",
720
+ "Bottom",
721
+ "Full Body",
722
+ "Outer",
723
+ "Footwear",
724
+ "Accessories"
372
725
  ],
373
- "description": "Parte del outfit"
726
+ "description": "Outfit part"
374
727
  },
375
728
  "variants": {
376
- "description": "Detalles Estructurales",
729
+ "description": "Structural Details",
377
730
  "type": "array",
378
731
  "items": {
379
732
  "type": "string",
380
733
  "enum": [
381
- "Sin Mangas",
382
- "Mangas Cortas",
383
- "Mangas Largas",
384
- "Cuello Redondo",
385
- "Cuello Pico",
386
- "Cuello Alto",
387
- "Cuello Camisa",
388
- "Cuello Polo",
389
- "Cuello Panadero",
390
- "Cuello Mao",
391
- "Cuello Chimenea",
392
- "Capucha",
734
+ "Sleeveless",
735
+ "Short Sleeves",
736
+ "Long Sleeves",
737
+ "Round Neck",
738
+ "V-Neck",
739
+ "High Neck",
740
+ "Shirt Collar",
741
+ "Polo Collar",
742
+ "Boat Neck",
743
+ "Mandarin Collar",
744
+ "Funnel Neck",
745
+ "Hood",
393
746
  "Overshirt",
394
747
  "Cropped",
395
- "Larga",
396
- "Pierna Recta",
397
- "Pitillo",
398
- "Ancha",
748
+ "Long",
749
+ "Straight Leg",
750
+ "Skinny",
751
+ "Wide",
399
752
  "Cargo",
400
- "Acampanado",
753
+ "Flared",
401
754
  "Trench",
402
- "Plumífero",
403
- "Doble botonadura",
404
- "Botones",
405
- "Cremallera",
755
+ "Puffer",
756
+ "Double Breasted",
757
+ "Buttons",
758
+ "Zipper",
406
759
  "Velcro",
407
- "Cordones",
408
- "Broches",
409
- "Bolsillos",
410
- "Sin Bolsillos",
760
+ "Laces",
761
+ "Snaps",
762
+ "Pockets",
763
+ "No Pockets",
411
764
  "Reversible"
412
765
  ]
413
766
  }
414
767
  },
415
768
  "fit": {
416
- "description": "Ajuste",
769
+ "description": "Fit",
417
770
  "type": "string",
418
771
  "enum": [
419
- "Entallado",
420
- "Ajustado",
772
+ "Fitted",
773
+ "Slim",
421
774
  "Regular",
422
- "Relajado",
423
- "Holgado",
424
- "Extragrande"
775
+ "Relaxed",
776
+ "Loose",
777
+ "Oversized"
425
778
  ]
426
779
  },
427
780
  "primary_color": {
428
781
  "type": "string",
429
782
  "enum": [
430
- "Blanco",
431
- "Negro",
432
- "Gris",
783
+ "White",
784
+ "Black",
785
+ "Gray",
433
786
  "Beige",
434
- "Marrón",
435
- "Azul",
436
- "Verde",
437
- "Rojo",
438
- "Burdeos",
439
- "Rosa",
440
- "Amarillo",
441
- "Naranja",
442
- "Morado",
787
+ "Brown",
788
+ "Blue",
789
+ "Green",
790
+ "Red",
791
+ "Burgundy",
792
+ "Pink",
793
+ "Yellow",
794
+ "Orange",
795
+ "Purple",
443
796
  "Camel",
444
- "Caqui",
445
- "Marino",
446
- "Crema",
447
- "Oro",
448
- "Plata",
449
- "Bronce"
797
+ "Khaki",
798
+ "Navy",
799
+ "Cream",
800
+ "Gold",
801
+ "Silver",
802
+ "Bronze"
450
803
  ],
451
- "description": "Color principal"
804
+ "description": "Primary color"
452
805
  },
453
806
  "secondary_color": {
454
- "description": "Color secundario",
807
+ "description": "Secondary color",
455
808
  "type": "string",
456
809
  "enum": [
457
- "Blanco",
458
- "Negro",
459
- "Gris",
810
+ "White",
811
+ "Black",
812
+ "Gray",
460
813
  "Beige",
461
- "Marrón",
462
- "Azul",
463
- "Verde",
464
- "Rojo",
465
- "Burdeos",
466
- "Rosa",
467
- "Amarillo",
468
- "Naranja",
469
- "Morado",
814
+ "Brown",
815
+ "Blue",
816
+ "Green",
817
+ "Red",
818
+ "Burgundy",
819
+ "Pink",
820
+ "Yellow",
821
+ "Orange",
822
+ "Purple",
470
823
  "Camel",
471
- "Caqui",
472
- "Marino",
473
- "Crema",
474
- "Oro",
475
- "Plata",
476
- "Bronce"
824
+ "Khaki",
825
+ "Navy",
826
+ "Cream",
827
+ "Gold",
828
+ "Silver",
829
+ "Bronze"
477
830
  ]
478
831
  },
479
832
  "pattern": {
480
- "description": "Estampado",
833
+ "description": "Pattern",
481
834
  "type": "string",
482
835
  "enum": [
483
- "Liso",
484
- "Rayas",
485
- "Cuadros",
486
- "Lunares",
836
+ "Solid",
837
+ "Stripes",
838
+ "Plaid",
839
+ "Polka Dots",
487
840
  "Animal Print",
488
841
  "Floral",
489
- "Geométrico",
490
- "Camuflaje",
491
- "EstampadoGráfico",
492
- "Degradado"
842
+ "Geometric",
843
+ "Camouflage",
844
+ "Graphic Print",
845
+ "Gradient"
493
846
  ]
494
847
  },
495
848
  "materials": {
496
- "description": "Materiales",
849
+ "description": "Materials",
497
850
  "type": "array",
498
851
  "items": {
499
852
  "type": "string",
500
853
  "enum": [
501
- "Algodón",
502
- "Lino",
503
- "Lana",
504
- "Seda",
505
- "Cuero",
506
- "Cachemir",
507
- "Ante",
508
- "Poliéster",
854
+ "Cotton",
855
+ "Linen",
856
+ "Wool",
857
+ "Silk",
858
+ "Leather",
859
+ "Cashmere",
860
+ "Suede",
861
+ "Polyester",
509
862
  "Nylon",
510
- "Elastano",
511
- "Viscosa",
512
- "Piel Sintética",
863
+ "Elastane",
864
+ "Viscose",
865
+ "Synthetic Leather",
513
866
  "Gore-Tex",
514
867
  "Denim",
515
- "Punto",
516
- "Felpa",
868
+ "Knit",
869
+ "Fleece",
517
870
  "Tweed",
518
- "Satén",
519
- "Terciopelo",
871
+ "Satin",
872
+ "Velvet",
520
873
  "Jacquard",
521
- "Franela",
522
- "Gabardina"
874
+ "Flannel",
875
+ "Gabardine"
523
876
  ]
524
877
  }
525
878
  },
@@ -527,51 +880,51 @@
527
880
  "type": "string",
528
881
  "enum": [
529
882
  "Base",
530
- "Intermedia",
531
- "Exterior"
883
+ "Mid",
884
+ "Outer"
532
885
  ],
533
- "description": "Capa Térmica"
886
+ "description": "Thermal Layer"
534
887
  },
535
888
  "season": {
536
- "description": "Estaciones",
889
+ "description": "Seasons",
537
890
  "type": "string",
538
891
  "enum": [
539
- "Invierno",
540
- "Verano",
541
- "Entretiempo",
542
- "Todo el año"
892
+ "Winter",
893
+ "Summer",
894
+ "Spring/Fall",
895
+ "All Year"
543
896
  ]
544
897
  },
545
898
  "use_case": {
546
- "description": "Casos de uso",
899
+ "description": "Use cases",
547
900
  "type": "array",
548
901
  "items": {
549
902
  "type": "string",
550
903
  "enum": [
551
- "Capsula",
552
- "Favorita",
553
- "Básico",
554
- "Deporte",
555
- "Trabajo",
556
- "Evento",
557
- "Viaje",
558
- "Casa",
559
- "Fiesta",
560
- "Playa",
561
- "Lluvia",
562
- "Frío Extremo"
904
+ "Capsule",
905
+ "Favorite",
906
+ "Basic",
907
+ "Sport",
908
+ "Work",
909
+ "Event",
910
+ "Travel",
911
+ "Home",
912
+ "Party",
913
+ "Beach",
914
+ "Rain",
915
+ "Extreme Cold"
563
916
  ]
564
917
  }
565
918
  },
566
919
  "formality": {
567
- "description": "Formalidad",
920
+ "description": "Formality",
568
921
  "type": "string",
569
922
  "enum": [
570
- "Muy Informal",
923
+ "Very Casual",
571
924
  "Casual",
572
- "Arreglado",
925
+ "Smart Casual",
573
926
  "Formal",
574
- "Etiqueta"
927
+ "Black Tie"
575
928
  ]
576
929
  },
577
930
  "brand": {
@@ -579,31 +932,31 @@
579
932
  "type": "string"
580
933
  },
581
934
  "cares": {
582
- "description": "Cuidados",
935
+ "description": "Care Instructions",
583
936
  "type": "array",
584
937
  "items": {
585
938
  "type": "string",
586
939
  "enum": [
587
- "Lavado a mano",
588
- "Lavado a máquina",
589
- "Lavado en seco",
590
- "Frio",
591
- "Caliente",
592
- "Planchado",
593
- "Planchado a vapor"
940
+ "Hand Wash",
941
+ "Machine Wash",
942
+ "Dry Clean",
943
+ "Cold",
944
+ "Hot",
945
+ "Ironing",
946
+ "Steam Ironing"
594
947
  ]
595
948
  }
596
949
  },
597
950
  "status": {
598
- "default": "Bien",
599
- "description": "Estado",
951
+ "default": "Good",
952
+ "description": "Status",
600
953
  "type": "string",
601
954
  "enum": [
602
- "Nuevo",
603
- "Bien",
604
- "Gastado",
605
- "Dañado",
606
- "Retirar"
955
+ "New",
956
+ "Good",
957
+ "Worn",
958
+ "Damaged",
959
+ "Retire"
607
960
  ]
608
961
  },
609
962
  "size": {
@@ -635,7 +988,7 @@
635
988
  ]
636
989
  },
637
990
  "measurements": {
638
- "description": "Medidas",
991
+ "description": "Measurements",
639
992
  "type": "array",
640
993
  "items": {
641
994
  "type": "number"
@@ -643,17 +996,17 @@
643
996
  },
644
997
  "type": {
645
998
  "type": "string",
646
- "const": "[[Recursos]]"
999
+ "const": "[[Resources]]"
647
1000
  },
648
1001
  "subtype": {
649
1002
  "type": "string",
650
- "const": "[[Prendas]]"
1003
+ "const": "[[Clothes]]"
651
1004
  },
652
1005
  "areas": {
653
1006
  "type": "array",
654
1007
  "items": {
655
1008
  "type": "string",
656
- "const": "[[Hogar]]"
1009
+ "const": "[[Home]]"
657
1010
  }
658
1011
  },
659
1012
  "color": {
@@ -683,38 +1036,129 @@
683
1036
  "icon"
684
1037
  ],
685
1038
  "additionalProperties": false,
686
- "description": "Prenda de ropa"
1039
+ "description": "Clothing item"
1040
+ },
1041
+ "DetailedArticleSchema": {
1042
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1043
+ "type": "object",
1044
+ "properties": {
1045
+ "status": {
1046
+ "type": "string",
1047
+ "enum": [
1048
+ "Pending",
1049
+ "In Progress",
1050
+ "Read",
1051
+ "Consolidated"
1052
+ ],
1053
+ "description": "Reading status"
1054
+ },
1055
+ "projects": {
1056
+ "type": "array",
1057
+ "items": {
1058
+ "type": "string"
1059
+ },
1060
+ "description": "Projects"
1061
+ },
1062
+ "topics": {
1063
+ "type": "array",
1064
+ "items": {
1065
+ "type": "string"
1066
+ },
1067
+ "description": "Topics"
1068
+ },
1069
+ "rating": {
1070
+ "type": "number",
1071
+ "description": "Rating of the article"
1072
+ }
1073
+ },
1074
+ "required": [
1075
+ "status",
1076
+ "projects",
1077
+ "topics",
1078
+ "rating"
1079
+ ],
1080
+ "additionalProperties": false,
1081
+ "description": "Article: Additional data"
1082
+ },
1083
+ "DetailedBookSchema": {
1084
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1085
+ "type": "object",
1086
+ "properties": {
1087
+ "status": {
1088
+ "type": "string",
1089
+ "enum": [
1090
+ "Pending",
1091
+ "In Progress",
1092
+ "Read",
1093
+ "Consolidated"
1094
+ ],
1095
+ "description": "Reading status"
1096
+ },
1097
+ "topics": {
1098
+ "type": "array",
1099
+ "items": {
1100
+ "type": "string"
1101
+ },
1102
+ "description": "Topics"
1103
+ },
1104
+ "rating": {
1105
+ "type": "number",
1106
+ "description": "Rating of the book"
1107
+ },
1108
+ "online_rating": {
1109
+ "type": "number",
1110
+ "description": "Online rating"
1111
+ },
1112
+ "last_time_read": {
1113
+ "type": "string",
1114
+ "description": "Last time read"
1115
+ },
1116
+ "times_read": {
1117
+ "type": "number",
1118
+ "description": "Times read"
1119
+ }
1120
+ },
1121
+ "required": [
1122
+ "status",
1123
+ "topics",
1124
+ "rating",
1125
+ "online_rating",
1126
+ "last_time_read",
1127
+ "times_read"
1128
+ ],
1129
+ "additionalProperties": false,
1130
+ "description": "Book: Additional data"
687
1131
  },
688
1132
  "DetailedClothingSchema": {
689
1133
  "$schema": "https://json-schema.org/draft/2020-12/schema",
690
1134
  "type": "object",
691
1135
  "properties": {
692
1136
  "cares": {
693
- "description": "Cuidados",
1137
+ "description": "Care Instructions",
694
1138
  "type": "array",
695
1139
  "items": {
696
1140
  "type": "string",
697
1141
  "enum": [
698
- "Lavado a mano",
699
- "Lavado a máquina",
700
- "Lavado en seco",
701
- "Frio",
702
- "Caliente",
703
- "Planchado",
704
- "Planchado a vapor"
1142
+ "Hand Wash",
1143
+ "Machine Wash",
1144
+ "Dry Clean",
1145
+ "Cold",
1146
+ "Hot",
1147
+ "Ironing",
1148
+ "Steam Ironing"
705
1149
  ]
706
1150
  }
707
1151
  },
708
1152
  "status": {
709
- "default": "Bien",
710
- "description": "Estado",
1153
+ "default": "Good",
1154
+ "description": "Status",
711
1155
  "type": "string",
712
1156
  "enum": [
713
- "Nuevo",
714
- "Bien",
715
- "Gastado",
716
- "Dañado",
717
- "Retirar"
1157
+ "New",
1158
+ "Good",
1159
+ "Worn",
1160
+ "Damaged",
1161
+ "Retire"
718
1162
  ]
719
1163
  },
720
1164
  "size": {
@@ -746,7 +1190,7 @@
746
1190
  ]
747
1191
  },
748
1192
  "measurements": {
749
- "description": "Medidas",
1193
+ "description": "Measurements",
750
1194
  "type": "array",
751
1195
  "items": {
752
1196
  "type": "number"
@@ -758,7 +1202,152 @@
758
1202
  "size"
759
1203
  ],
760
1204
  "additionalProperties": false,
761
- "description": "Prenda de ropa: Datos adicionales de dificil obtención"
1205
+ "description": "Clothing item: Additional hard-to-obtain data"
1206
+ },
1207
+ "DetailedMovieSchema": {
1208
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1209
+ "type": "object",
1210
+ "properties": {
1211
+ "status": {
1212
+ "type": "string",
1213
+ "enum": [
1214
+ "Pending",
1215
+ "In Progress",
1216
+ "Completed"
1217
+ ],
1218
+ "description": "Watching status"
1219
+ },
1220
+ "topics": {
1221
+ "type": "array",
1222
+ "items": {
1223
+ "type": "string"
1224
+ },
1225
+ "description": "Topics"
1226
+ },
1227
+ "rating": {
1228
+ "type": "number",
1229
+ "description": "Rating of the movie"
1230
+ },
1231
+ "online_rating": {
1232
+ "type": "number",
1233
+ "description": "Online rating"
1234
+ },
1235
+ "last_time_watched": {
1236
+ "type": "string",
1237
+ "description": "Last time watched"
1238
+ },
1239
+ "times_watched": {
1240
+ "type": "number",
1241
+ "description": "Times watched"
1242
+ }
1243
+ },
1244
+ "required": [
1245
+ "status",
1246
+ "topics",
1247
+ "rating",
1248
+ "online_rating",
1249
+ "last_time_watched",
1250
+ "times_watched"
1251
+ ],
1252
+ "additionalProperties": false,
1253
+ "description": "Movie: Additional data"
1254
+ },
1255
+ "MetaArticleSchema": {
1256
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1257
+ "type": "object",
1258
+ "properties": {
1259
+ "type": {
1260
+ "type": "string",
1261
+ "const": "[[Sources]]"
1262
+ },
1263
+ "format": {
1264
+ "type": "string",
1265
+ "const": "[[Articles]]"
1266
+ },
1267
+ "areas": {
1268
+ "type": "array",
1269
+ "items": {
1270
+ "type": "string",
1271
+ "const": "[[Knowledge]]"
1272
+ }
1273
+ },
1274
+ "color": {
1275
+ "type": "string",
1276
+ "const": "#3171B2"
1277
+ },
1278
+ "icon": {
1279
+ "type": "string",
1280
+ "const": "newspaper"
1281
+ },
1282
+ "banner": {
1283
+ "type": "string"
1284
+ },
1285
+ "url": {
1286
+ "type": "string",
1287
+ "description": "URL of the article"
1288
+ }
1289
+ },
1290
+ "required": [
1291
+ "type",
1292
+ "format",
1293
+ "areas",
1294
+ "color",
1295
+ "icon",
1296
+ "url"
1297
+ ],
1298
+ "additionalProperties": false,
1299
+ "description": "Article: Metadata of Note"
1300
+ },
1301
+ "MetaBookSchema": {
1302
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1303
+ "type": "object",
1304
+ "properties": {
1305
+ "type": {
1306
+ "type": "string",
1307
+ "const": "[[Sources]]"
1308
+ },
1309
+ "format": {
1310
+ "type": "string",
1311
+ "const": "[[Books]]"
1312
+ },
1313
+ "areas": {
1314
+ "type": "array",
1315
+ "items": {
1316
+ "type": "string",
1317
+ "const": "[[Knowledge]]"
1318
+ }
1319
+ },
1320
+ "color": {
1321
+ "type": "string",
1322
+ "const": "#3171B2"
1323
+ },
1324
+ "icon": {
1325
+ "type": "string",
1326
+ "const": "book"
1327
+ },
1328
+ "cover": {
1329
+ "type": "string"
1330
+ },
1331
+ "url": {
1332
+ "type": "string",
1333
+ "description": "URL of the book in Amazon or similar"
1334
+ },
1335
+ "read_url": {
1336
+ "type": "string",
1337
+ "description": "URL of the reading of the book"
1338
+ }
1339
+ },
1340
+ "required": [
1341
+ "type",
1342
+ "format",
1343
+ "areas",
1344
+ "color",
1345
+ "icon",
1346
+ "url",
1347
+ "read_url"
1348
+ ],
1349
+ "additionalProperties": false,
1350
+ "description": "Book: Metadata of Note"
762
1351
  },
763
1352
  "MetaClothingSchema": {
764
1353
  "$schema": "https://json-schema.org/draft/2020-12/schema",
@@ -766,17 +1355,17 @@
766
1355
  "properties": {
767
1356
  "type": {
768
1357
  "type": "string",
769
- "const": "[[Recursos]]"
1358
+ "const": "[[Resources]]"
770
1359
  },
771
1360
  "subtype": {
772
1361
  "type": "string",
773
- "const": "[[Prendas]]"
1362
+ "const": "[[Clothes]]"
774
1363
  },
775
1364
  "areas": {
776
1365
  "type": "array",
777
1366
  "items": {
778
1367
  "type": "string",
779
- "const": "[[Hogar]]"
1368
+ "const": "[[Home]]"
780
1369
  }
781
1370
  },
782
1371
  "color": {
@@ -799,7 +1388,931 @@
799
1388
  "icon"
800
1389
  ],
801
1390
  "additionalProperties": false,
802
- "description": "Prenda de ropa: Metadatos de Nota"
1391
+ "description": "Clothing item: Note metadata"
1392
+ },
1393
+ "MetaMovieSchema": {
1394
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1395
+ "type": "object",
1396
+ "properties": {
1397
+ "type": {
1398
+ "type": "string",
1399
+ "const": "[[Sources]]"
1400
+ },
1401
+ "format": {
1402
+ "type": "string",
1403
+ "const": "[[Movies]]"
1404
+ },
1405
+ "areas": {
1406
+ "type": "array",
1407
+ "items": {
1408
+ "type": "string",
1409
+ "const": "[[Creativity]]"
1410
+ }
1411
+ },
1412
+ "color": {
1413
+ "type": "string",
1414
+ "const": "#BE9207"
1415
+ },
1416
+ "icon": {
1417
+ "type": "string",
1418
+ "const": "movie"
1419
+ },
1420
+ "cover": {
1421
+ "type": "string"
1422
+ },
1423
+ "url": {
1424
+ "type": "string",
1425
+ "description": "URL of the movie in IMDB or similar"
1426
+ },
1427
+ "watch_url": {
1428
+ "type": "string",
1429
+ "description": "URL of the movie in streaming"
1430
+ }
1431
+ },
1432
+ "required": [
1433
+ "type",
1434
+ "format",
1435
+ "areas",
1436
+ "color",
1437
+ "icon",
1438
+ "url",
1439
+ "watch_url"
1440
+ ],
1441
+ "additionalProperties": false,
1442
+ "description": "Movie: Metadata of Note"
1443
+ },
1444
+ "MovieSchema": {
1445
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1446
+ "type": "object",
1447
+ "properties": {
1448
+ "title": {
1449
+ "type": "string",
1450
+ "description": "Title of the movie"
1451
+ },
1452
+ "description": {
1453
+ "type": "string",
1454
+ "description": "Description of the movie"
1455
+ },
1456
+ "author": {
1457
+ "type": "array",
1458
+ "items": {
1459
+ "type": "string"
1460
+ },
1461
+ "description": "Authors. Writers, directors, producers, etc."
1462
+ },
1463
+ "actors": {
1464
+ "type": "array",
1465
+ "items": {
1466
+ "type": "string"
1467
+ },
1468
+ "description": "Actors"
1469
+ },
1470
+ "published": {
1471
+ "type": "string",
1472
+ "description": "Year of publication"
1473
+ },
1474
+ "genres": {
1475
+ "type": "array",
1476
+ "items": {
1477
+ "type": "string"
1478
+ },
1479
+ "description": "Genres"
1480
+ },
1481
+ "status": {
1482
+ "type": "string",
1483
+ "enum": [
1484
+ "Pending",
1485
+ "In Progress",
1486
+ "Completed"
1487
+ ],
1488
+ "description": "Watching status"
1489
+ },
1490
+ "topics": {
1491
+ "type": "array",
1492
+ "items": {
1493
+ "type": "string"
1494
+ },
1495
+ "description": "Topics"
1496
+ },
1497
+ "rating": {
1498
+ "type": "number",
1499
+ "description": "Rating of the movie"
1500
+ },
1501
+ "online_rating": {
1502
+ "type": "number",
1503
+ "description": "Online rating"
1504
+ },
1505
+ "last_time_watched": {
1506
+ "type": "string",
1507
+ "description": "Last time watched"
1508
+ },
1509
+ "times_watched": {
1510
+ "type": "number",
1511
+ "description": "Times watched"
1512
+ },
1513
+ "type": {
1514
+ "type": "string",
1515
+ "const": "[[Sources]]"
1516
+ },
1517
+ "format": {
1518
+ "type": "string",
1519
+ "const": "[[Movies]]"
1520
+ },
1521
+ "areas": {
1522
+ "type": "array",
1523
+ "items": {
1524
+ "type": "string",
1525
+ "const": "[[Creativity]]"
1526
+ }
1527
+ },
1528
+ "color": {
1529
+ "type": "string",
1530
+ "const": "#BE9207"
1531
+ },
1532
+ "icon": {
1533
+ "type": "string",
1534
+ "const": "movie"
1535
+ },
1536
+ "cover": {
1537
+ "type": "string"
1538
+ },
1539
+ "url": {
1540
+ "type": "string",
1541
+ "description": "URL of the movie in IMDB or similar"
1542
+ },
1543
+ "watch_url": {
1544
+ "type": "string",
1545
+ "description": "URL of the movie in streaming"
1546
+ }
1547
+ },
1548
+ "required": [
1549
+ "title",
1550
+ "description",
1551
+ "author",
1552
+ "actors",
1553
+ "published",
1554
+ "genres",
1555
+ "status",
1556
+ "topics",
1557
+ "rating",
1558
+ "online_rating",
1559
+ "last_time_watched",
1560
+ "times_watched",
1561
+ "type",
1562
+ "format",
1563
+ "areas",
1564
+ "color",
1565
+ "icon",
1566
+ "url",
1567
+ "watch_url"
1568
+ ],
1569
+ "additionalProperties": false,
1570
+ "description": "Movie"
1571
+ },
1572
+ "NoteSchema": {
1573
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1574
+ "anyOf": [
1575
+ {
1576
+ "type": "object",
1577
+ "properties": {
1578
+ "title": {
1579
+ "type": "string",
1580
+ "description": "Title of the article"
1581
+ },
1582
+ "description": {
1583
+ "description": "Description",
1584
+ "type": "string"
1585
+ },
1586
+ "excerpt": {
1587
+ "description": "Extract of the article",
1588
+ "type": "string"
1589
+ },
1590
+ "author": {
1591
+ "type": "array",
1592
+ "items": {
1593
+ "type": "string"
1594
+ },
1595
+ "description": "Authors"
1596
+ },
1597
+ "published": {
1598
+ "description": "Year of publication",
1599
+ "type": "string"
1600
+ },
1601
+ "status": {
1602
+ "type": "string",
1603
+ "enum": [
1604
+ "Pending",
1605
+ "In Progress",
1606
+ "Read",
1607
+ "Consolidated"
1608
+ ],
1609
+ "description": "Reading status"
1610
+ },
1611
+ "projects": {
1612
+ "type": "array",
1613
+ "items": {
1614
+ "type": "string"
1615
+ },
1616
+ "description": "Projects"
1617
+ },
1618
+ "topics": {
1619
+ "type": "array",
1620
+ "items": {
1621
+ "type": "string"
1622
+ },
1623
+ "description": "Topics"
1624
+ },
1625
+ "rating": {
1626
+ "type": "number",
1627
+ "description": "Rating of the article"
1628
+ },
1629
+ "type": {
1630
+ "type": "string",
1631
+ "const": "[[Sources]]"
1632
+ },
1633
+ "format": {
1634
+ "type": "string",
1635
+ "const": "[[Articles]]"
1636
+ },
1637
+ "areas": {
1638
+ "type": "array",
1639
+ "items": {
1640
+ "type": "string",
1641
+ "const": "[[Knowledge]]"
1642
+ }
1643
+ },
1644
+ "color": {
1645
+ "type": "string",
1646
+ "const": "#3171B2"
1647
+ },
1648
+ "icon": {
1649
+ "type": "string",
1650
+ "const": "newspaper"
1651
+ },
1652
+ "banner": {
1653
+ "type": "string"
1654
+ },
1655
+ "url": {
1656
+ "type": "string",
1657
+ "description": "URL of the article"
1658
+ }
1659
+ },
1660
+ "required": [
1661
+ "title",
1662
+ "author",
1663
+ "status",
1664
+ "projects",
1665
+ "topics",
1666
+ "rating",
1667
+ "type",
1668
+ "format",
1669
+ "areas",
1670
+ "color",
1671
+ "icon",
1672
+ "url"
1673
+ ],
1674
+ "additionalProperties": false,
1675
+ "description": "Article"
1676
+ },
1677
+ {
1678
+ "type": "object",
1679
+ "properties": {
1680
+ "title": {
1681
+ "type": "string",
1682
+ "description": "Title of the book"
1683
+ },
1684
+ "subtitle": {
1685
+ "description": "Subtitle of the book",
1686
+ "type": "string"
1687
+ },
1688
+ "description": {
1689
+ "description": "Description of the book",
1690
+ "type": "string"
1691
+ },
1692
+ "author": {
1693
+ "type": "array",
1694
+ "items": {
1695
+ "type": "string"
1696
+ },
1697
+ "description": "Authors"
1698
+ },
1699
+ "published": {
1700
+ "type": "string",
1701
+ "description": "Year of publication"
1702
+ },
1703
+ "categories": {
1704
+ "type": "array",
1705
+ "items": {
1706
+ "type": "string"
1707
+ },
1708
+ "description": "Categories"
1709
+ },
1710
+ "status": {
1711
+ "type": "string",
1712
+ "enum": [
1713
+ "Pending",
1714
+ "In Progress",
1715
+ "Read",
1716
+ "Consolidated"
1717
+ ],
1718
+ "description": "Reading status"
1719
+ },
1720
+ "topics": {
1721
+ "type": "array",
1722
+ "items": {
1723
+ "type": "string"
1724
+ },
1725
+ "description": "Topics"
1726
+ },
1727
+ "rating": {
1728
+ "type": "number",
1729
+ "description": "Rating of the book"
1730
+ },
1731
+ "online_rating": {
1732
+ "type": "number",
1733
+ "description": "Online rating"
1734
+ },
1735
+ "last_time_read": {
1736
+ "type": "string",
1737
+ "description": "Last time read"
1738
+ },
1739
+ "times_read": {
1740
+ "type": "number",
1741
+ "description": "Times read"
1742
+ },
1743
+ "type": {
1744
+ "type": "string",
1745
+ "const": "[[Sources]]"
1746
+ },
1747
+ "format": {
1748
+ "type": "string",
1749
+ "const": "[[Books]]"
1750
+ },
1751
+ "areas": {
1752
+ "type": "array",
1753
+ "items": {
1754
+ "type": "string",
1755
+ "const": "[[Knowledge]]"
1756
+ }
1757
+ },
1758
+ "color": {
1759
+ "type": "string",
1760
+ "const": "#3171B2"
1761
+ },
1762
+ "icon": {
1763
+ "type": "string",
1764
+ "const": "book"
1765
+ },
1766
+ "cover": {
1767
+ "type": "string"
1768
+ },
1769
+ "url": {
1770
+ "type": "string",
1771
+ "description": "URL of the book in Amazon or similar"
1772
+ },
1773
+ "read_url": {
1774
+ "type": "string",
1775
+ "description": "URL of the reading of the book"
1776
+ }
1777
+ },
1778
+ "required": [
1779
+ "title",
1780
+ "author",
1781
+ "published",
1782
+ "categories",
1783
+ "status",
1784
+ "topics",
1785
+ "rating",
1786
+ "online_rating",
1787
+ "last_time_read",
1788
+ "times_read",
1789
+ "type",
1790
+ "format",
1791
+ "areas",
1792
+ "color",
1793
+ "icon",
1794
+ "url",
1795
+ "read_url"
1796
+ ],
1797
+ "additionalProperties": false,
1798
+ "description": "Book"
1799
+ },
1800
+ {
1801
+ "type": "object",
1802
+ "properties": {
1803
+ "name": {
1804
+ "type": "string",
1805
+ "description": "Descriptive name of the clothing item"
1806
+ },
1807
+ "garment": {
1808
+ "type": "string",
1809
+ "enum": [
1810
+ "Undershirts",
1811
+ "Boxers",
1812
+ "Panties",
1813
+ "Bras",
1814
+ "Socks",
1815
+ "T-Shirts",
1816
+ "Polo Shirts",
1817
+ "Shirts",
1818
+ "Blouses",
1819
+ "Tops",
1820
+ "Sweaters",
1821
+ "Hoodies",
1822
+ "Cardigans",
1823
+ "Jackets",
1824
+ "Pants",
1825
+ "Jeans",
1826
+ "Chinos",
1827
+ "Skirts",
1828
+ "Shorts",
1829
+ "Blazers",
1830
+ "Coats",
1831
+ "Trench Coats",
1832
+ "Parkas",
1833
+ "Vests",
1834
+ "Leggings",
1835
+ "Technical Wear",
1836
+ "Sports Shorts",
1837
+ "Technical T-Shirts",
1838
+ "Dresses",
1839
+ "Jumpsuits",
1840
+ "Sneakers",
1841
+ "Shoes",
1842
+ "Boots",
1843
+ "Sandals",
1844
+ "Belts",
1845
+ "Caps",
1846
+ "Hats",
1847
+ "Scarves",
1848
+ "Gloves",
1849
+ "Handbags",
1850
+ "Backpacks",
1851
+ "Sunglasses",
1852
+ "Handkerchiefs",
1853
+ "Watches",
1854
+ "Jewelry",
1855
+ "Pajamas",
1856
+ "Robes",
1857
+ "Swimsuits",
1858
+ "Bikinis"
1859
+ ],
1860
+ "description": "Garment Type"
1861
+ },
1862
+ "slot": {
1863
+ "type": "string",
1864
+ "enum": [
1865
+ "Top",
1866
+ "Bottom",
1867
+ "Full Body",
1868
+ "Outer",
1869
+ "Footwear",
1870
+ "Accessories"
1871
+ ],
1872
+ "description": "Outfit part"
1873
+ },
1874
+ "variants": {
1875
+ "description": "Structural Details",
1876
+ "type": "array",
1877
+ "items": {
1878
+ "type": "string",
1879
+ "enum": [
1880
+ "Sleeveless",
1881
+ "Short Sleeves",
1882
+ "Long Sleeves",
1883
+ "Round Neck",
1884
+ "V-Neck",
1885
+ "High Neck",
1886
+ "Shirt Collar",
1887
+ "Polo Collar",
1888
+ "Boat Neck",
1889
+ "Mandarin Collar",
1890
+ "Funnel Neck",
1891
+ "Hood",
1892
+ "Overshirt",
1893
+ "Cropped",
1894
+ "Long",
1895
+ "Straight Leg",
1896
+ "Skinny",
1897
+ "Wide",
1898
+ "Cargo",
1899
+ "Flared",
1900
+ "Trench",
1901
+ "Puffer",
1902
+ "Double Breasted",
1903
+ "Buttons",
1904
+ "Zipper",
1905
+ "Velcro",
1906
+ "Laces",
1907
+ "Snaps",
1908
+ "Pockets",
1909
+ "No Pockets",
1910
+ "Reversible"
1911
+ ]
1912
+ }
1913
+ },
1914
+ "fit": {
1915
+ "description": "Fit",
1916
+ "type": "string",
1917
+ "enum": [
1918
+ "Fitted",
1919
+ "Slim",
1920
+ "Regular",
1921
+ "Relaxed",
1922
+ "Loose",
1923
+ "Oversized"
1924
+ ]
1925
+ },
1926
+ "primary_color": {
1927
+ "type": "string",
1928
+ "enum": [
1929
+ "White",
1930
+ "Black",
1931
+ "Gray",
1932
+ "Beige",
1933
+ "Brown",
1934
+ "Blue",
1935
+ "Green",
1936
+ "Red",
1937
+ "Burgundy",
1938
+ "Pink",
1939
+ "Yellow",
1940
+ "Orange",
1941
+ "Purple",
1942
+ "Camel",
1943
+ "Khaki",
1944
+ "Navy",
1945
+ "Cream",
1946
+ "Gold",
1947
+ "Silver",
1948
+ "Bronze"
1949
+ ],
1950
+ "description": "Primary color"
1951
+ },
1952
+ "secondary_color": {
1953
+ "description": "Secondary color",
1954
+ "type": "string",
1955
+ "enum": [
1956
+ "White",
1957
+ "Black",
1958
+ "Gray",
1959
+ "Beige",
1960
+ "Brown",
1961
+ "Blue",
1962
+ "Green",
1963
+ "Red",
1964
+ "Burgundy",
1965
+ "Pink",
1966
+ "Yellow",
1967
+ "Orange",
1968
+ "Purple",
1969
+ "Camel",
1970
+ "Khaki",
1971
+ "Navy",
1972
+ "Cream",
1973
+ "Gold",
1974
+ "Silver",
1975
+ "Bronze"
1976
+ ]
1977
+ },
1978
+ "pattern": {
1979
+ "description": "Pattern",
1980
+ "type": "string",
1981
+ "enum": [
1982
+ "Solid",
1983
+ "Stripes",
1984
+ "Plaid",
1985
+ "Polka Dots",
1986
+ "Animal Print",
1987
+ "Floral",
1988
+ "Geometric",
1989
+ "Camouflage",
1990
+ "Graphic Print",
1991
+ "Gradient"
1992
+ ]
1993
+ },
1994
+ "materials": {
1995
+ "description": "Materials",
1996
+ "type": "array",
1997
+ "items": {
1998
+ "type": "string",
1999
+ "enum": [
2000
+ "Cotton",
2001
+ "Linen",
2002
+ "Wool",
2003
+ "Silk",
2004
+ "Leather",
2005
+ "Cashmere",
2006
+ "Suede",
2007
+ "Polyester",
2008
+ "Nylon",
2009
+ "Elastane",
2010
+ "Viscose",
2011
+ "Synthetic Leather",
2012
+ "Gore-Tex",
2013
+ "Denim",
2014
+ "Knit",
2015
+ "Fleece",
2016
+ "Tweed",
2017
+ "Satin",
2018
+ "Velvet",
2019
+ "Jacquard",
2020
+ "Flannel",
2021
+ "Gabardine"
2022
+ ]
2023
+ }
2024
+ },
2025
+ "layer": {
2026
+ "type": "string",
2027
+ "enum": [
2028
+ "Base",
2029
+ "Mid",
2030
+ "Outer"
2031
+ ],
2032
+ "description": "Thermal Layer"
2033
+ },
2034
+ "season": {
2035
+ "description": "Seasons",
2036
+ "type": "string",
2037
+ "enum": [
2038
+ "Winter",
2039
+ "Summer",
2040
+ "Spring/Fall",
2041
+ "All Year"
2042
+ ]
2043
+ },
2044
+ "use_case": {
2045
+ "description": "Use cases",
2046
+ "type": "array",
2047
+ "items": {
2048
+ "type": "string",
2049
+ "enum": [
2050
+ "Capsule",
2051
+ "Favorite",
2052
+ "Basic",
2053
+ "Sport",
2054
+ "Work",
2055
+ "Event",
2056
+ "Travel",
2057
+ "Home",
2058
+ "Party",
2059
+ "Beach",
2060
+ "Rain",
2061
+ "Extreme Cold"
2062
+ ]
2063
+ }
2064
+ },
2065
+ "formality": {
2066
+ "description": "Formality",
2067
+ "type": "string",
2068
+ "enum": [
2069
+ "Very Casual",
2070
+ "Casual",
2071
+ "Smart Casual",
2072
+ "Formal",
2073
+ "Black Tie"
2074
+ ]
2075
+ },
2076
+ "brand": {
2077
+ "description": "The brand of the clothing",
2078
+ "type": "string"
2079
+ },
2080
+ "cares": {
2081
+ "description": "Care Instructions",
2082
+ "type": "array",
2083
+ "items": {
2084
+ "type": "string",
2085
+ "enum": [
2086
+ "Hand Wash",
2087
+ "Machine Wash",
2088
+ "Dry Clean",
2089
+ "Cold",
2090
+ "Hot",
2091
+ "Ironing",
2092
+ "Steam Ironing"
2093
+ ]
2094
+ }
2095
+ },
2096
+ "status": {
2097
+ "default": "Good",
2098
+ "description": "Status",
2099
+ "type": "string",
2100
+ "enum": [
2101
+ "New",
2102
+ "Good",
2103
+ "Worn",
2104
+ "Damaged",
2105
+ "Retire"
2106
+ ]
2107
+ },
2108
+ "size": {
2109
+ "type": "string",
2110
+ "enum": [
2111
+ "28",
2112
+ "30",
2113
+ "32",
2114
+ "34",
2115
+ "36",
2116
+ "37",
2117
+ "38",
2118
+ "39",
2119
+ "40",
2120
+ "41",
2121
+ "42",
2122
+ "43",
2123
+ "44",
2124
+ "45",
2125
+ "46",
2126
+ "48",
2127
+ "XS",
2128
+ "S",
2129
+ "M",
2130
+ "L",
2131
+ "XL",
2132
+ "XXL",
2133
+ "XXXL"
2134
+ ]
2135
+ },
2136
+ "measurements": {
2137
+ "description": "Measurements",
2138
+ "type": "array",
2139
+ "items": {
2140
+ "type": "number"
2141
+ }
2142
+ },
2143
+ "type": {
2144
+ "type": "string",
2145
+ "const": "[[Resources]]"
2146
+ },
2147
+ "subtype": {
2148
+ "type": "string",
2149
+ "const": "[[Clothes]]"
2150
+ },
2151
+ "areas": {
2152
+ "type": "array",
2153
+ "items": {
2154
+ "type": "string",
2155
+ "const": "[[Home]]"
2156
+ }
2157
+ },
2158
+ "color": {
2159
+ "type": "string",
2160
+ "const": "#CB6120"
2161
+ },
2162
+ "icon": {
2163
+ "type": "string",
2164
+ "const": "shirt"
2165
+ },
2166
+ "cover": {
2167
+ "type": "string"
2168
+ }
2169
+ },
2170
+ "required": [
2171
+ "name",
2172
+ "garment",
2173
+ "slot",
2174
+ "primary_color",
2175
+ "layer",
2176
+ "status",
2177
+ "size",
2178
+ "type",
2179
+ "subtype",
2180
+ "areas",
2181
+ "color",
2182
+ "icon"
2183
+ ],
2184
+ "additionalProperties": false,
2185
+ "description": "Clothing item"
2186
+ },
2187
+ {
2188
+ "type": "object",
2189
+ "properties": {
2190
+ "title": {
2191
+ "type": "string",
2192
+ "description": "Title of the movie"
2193
+ },
2194
+ "description": {
2195
+ "type": "string",
2196
+ "description": "Description of the movie"
2197
+ },
2198
+ "author": {
2199
+ "type": "array",
2200
+ "items": {
2201
+ "type": "string"
2202
+ },
2203
+ "description": "Authors. Writers, directors, producers, etc."
2204
+ },
2205
+ "actors": {
2206
+ "type": "array",
2207
+ "items": {
2208
+ "type": "string"
2209
+ },
2210
+ "description": "Actors"
2211
+ },
2212
+ "published": {
2213
+ "type": "string",
2214
+ "description": "Year of publication"
2215
+ },
2216
+ "genres": {
2217
+ "type": "array",
2218
+ "items": {
2219
+ "type": "string"
2220
+ },
2221
+ "description": "Genres"
2222
+ },
2223
+ "status": {
2224
+ "type": "string",
2225
+ "enum": [
2226
+ "Pending",
2227
+ "In Progress",
2228
+ "Completed"
2229
+ ],
2230
+ "description": "Watching status"
2231
+ },
2232
+ "topics": {
2233
+ "type": "array",
2234
+ "items": {
2235
+ "type": "string"
2236
+ },
2237
+ "description": "Topics"
2238
+ },
2239
+ "rating": {
2240
+ "type": "number",
2241
+ "description": "Rating of the movie"
2242
+ },
2243
+ "online_rating": {
2244
+ "type": "number",
2245
+ "description": "Online rating"
2246
+ },
2247
+ "last_time_watched": {
2248
+ "type": "string",
2249
+ "description": "Last time watched"
2250
+ },
2251
+ "times_watched": {
2252
+ "type": "number",
2253
+ "description": "Times watched"
2254
+ },
2255
+ "type": {
2256
+ "type": "string",
2257
+ "const": "[[Sources]]"
2258
+ },
2259
+ "format": {
2260
+ "type": "string",
2261
+ "const": "[[Movies]]"
2262
+ },
2263
+ "areas": {
2264
+ "type": "array",
2265
+ "items": {
2266
+ "type": "string",
2267
+ "const": "[[Creativity]]"
2268
+ }
2269
+ },
2270
+ "color": {
2271
+ "type": "string",
2272
+ "const": "#BE9207"
2273
+ },
2274
+ "icon": {
2275
+ "type": "string",
2276
+ "const": "movie"
2277
+ },
2278
+ "cover": {
2279
+ "type": "string"
2280
+ },
2281
+ "url": {
2282
+ "type": "string",
2283
+ "description": "URL of the movie in IMDB or similar"
2284
+ },
2285
+ "watch_url": {
2286
+ "type": "string",
2287
+ "description": "URL of the movie in streaming"
2288
+ }
2289
+ },
2290
+ "required": [
2291
+ "title",
2292
+ "description",
2293
+ "author",
2294
+ "actors",
2295
+ "published",
2296
+ "genres",
2297
+ "status",
2298
+ "topics",
2299
+ "rating",
2300
+ "online_rating",
2301
+ "last_time_watched",
2302
+ "times_watched",
2303
+ "type",
2304
+ "format",
2305
+ "areas",
2306
+ "color",
2307
+ "icon",
2308
+ "url",
2309
+ "watch_url"
2310
+ ],
2311
+ "additionalProperties": false,
2312
+ "description": "Movie"
2313
+ }
2314
+ ],
2315
+ "description": "Note: Union of all note types"
803
2316
  }
804
2317
  }
805
2318
  }