@segha/catalog 2.0.0 → 2.2.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 (175) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +355 -4
  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/index.ts +9 -9
  9. package/en/Movie/index.ts +34 -0
  10. package/en/Movie/types.ts +9 -0
  11. package/en/Note.ts +15 -0
  12. package/en/Wikipedia/index.ts +18 -0
  13. package/en/Wikipedia/types.ts +10 -0
  14. package/en/index.ts +5 -1
  15. package/en/types.ts +7 -0
  16. package/es/Areas.ts +24 -0
  17. package/es/Article/index.ts +34 -0
  18. package/es/Article/types.ts +9 -0
  19. package/es/Book/index.ts +36 -0
  20. package/es/Book/types.ts +9 -0
  21. package/es/Clothing/index.ts +11 -10
  22. package/es/Icon.ts +1673 -0
  23. package/es/Movie/index.ts +36 -0
  24. package/es/Movie/types.ts +9 -0
  25. package/es/Note.ts +19 -0
  26. package/es/Painting/index.ts +30 -0
  27. package/es/Painting/types.ts +9 -0
  28. package/es/Wikipedia/index.ts +18 -0
  29. package/es/Wikipedia/types.ts +10 -0
  30. package/es/Youtube/index.ts +19 -0
  31. package/es/Youtube/types.ts +10 -0
  32. package/es/index.ts +7 -0
  33. package/es/types.ts +10 -0
  34. package/json-schemas/ArticleSchema.json +102 -0
  35. package/json-schemas/BookSchema.json +123 -0
  36. package/json-schemas/CatalogArticleSchema.json +34 -0
  37. package/json-schemas/CatalogBookSchema.json +43 -0
  38. package/json-schemas/CatalogClothingSchema.json +0 -1
  39. package/json-schemas/CatalogMovieSchema.json +48 -0
  40. package/json-schemas/CatalogWikipediaSchema.json +34 -0
  41. package/json-schemas/ClothingSchema.json +0 -2
  42. package/json-schemas/DetailedArticleSchema.json +41 -0
  43. package/json-schemas/DetailedBookSchema.json +48 -0
  44. package/json-schemas/DetailedClothingSchema.json +0 -2
  45. package/json-schemas/DetailedMovieSchema.json +47 -0
  46. package/json-schemas/DetailedWikipediaSchema.json +41 -0
  47. package/json-schemas/MetaArticleSchema.json +45 -0
  48. package/json-schemas/MetaBookSchema.json +50 -0
  49. package/json-schemas/MetaClothingSchema.json +0 -1
  50. package/json-schemas/MetaMovieSchema.json +50 -0
  51. package/json-schemas/MetaWikipediaSchema.json +50 -0
  52. package/json-schemas/MovieSchema.json +127 -0
  53. package/json-schemas/NoteSchema.json +846 -0
  54. package/json-schemas/WikipediaSchema.json +107 -0
  55. package/json-schemas/en/Area.json +21 -0
  56. package/json-schemas/en/Areas.json +25 -0
  57. package/json-schemas/en/Article/ArticleSchema.json +102 -0
  58. package/json-schemas/en/Article/CatalogArticleSchema.json +34 -0
  59. package/json-schemas/en/Article/DetailedArticleSchema.json +41 -0
  60. package/json-schemas/en/Article/MetaArticleSchema.json +45 -0
  61. package/json-schemas/en/Article/index.json +229 -0
  62. package/json-schemas/en/ArticleSchema.json +102 -0
  63. package/json-schemas/en/Book/BookSchema.json +123 -0
  64. package/json-schemas/en/Book/CatalogBookSchema.json +43 -0
  65. package/json-schemas/en/Book/DetailedBookSchema.json +48 -0
  66. package/json-schemas/en/Book/MetaBookSchema.json +50 -0
  67. package/json-schemas/en/Book/index.json +271 -0
  68. package/json-schemas/en/BookSchema.json +123 -0
  69. package/json-schemas/en/CatalogArticleSchema.json +34 -0
  70. package/json-schemas/en/CatalogBookSchema.json +43 -0
  71. package/json-schemas/en/CatalogClothingSchema.json +0 -1
  72. package/json-schemas/en/CatalogMovieSchema.json +48 -0
  73. package/json-schemas/en/CatalogWikipediaSchema.json +34 -0
  74. package/json-schemas/en/Clothing/CatalogClothingSchema.json +0 -1
  75. package/json-schemas/en/Clothing/ClothingSchema.json +0 -2
  76. package/json-schemas/en/Clothing/DetailedClothingSchema.json +0 -2
  77. package/json-schemas/en/Clothing/MetaClothingSchema.json +0 -1
  78. package/json-schemas/en/Clothing/index.json +0 -6
  79. package/json-schemas/en/ClothingSchema.json +0 -2
  80. package/json-schemas/en/DetailedArticleSchema.json +41 -0
  81. package/json-schemas/en/DetailedBookSchema.json +48 -0
  82. package/json-schemas/en/DetailedClothingSchema.json +0 -2
  83. package/json-schemas/en/DetailedMovieSchema.json +47 -0
  84. package/json-schemas/en/DetailedWikipediaSchema.json +41 -0
  85. package/json-schemas/en/FirstLevelArea.json +21 -0
  86. package/json-schemas/en/MetaArticleSchema.json +45 -0
  87. package/json-schemas/en/MetaBookSchema.json +50 -0
  88. package/json-schemas/en/MetaClothingSchema.json +0 -1
  89. package/json-schemas/en/MetaMovieSchema.json +50 -0
  90. package/json-schemas/en/MetaWikipediaSchema.json +50 -0
  91. package/json-schemas/en/Movie/CatalogMovieSchema.json +48 -0
  92. package/json-schemas/en/Movie/DetailedMovieSchema.json +47 -0
  93. package/json-schemas/en/Movie/MetaMovieSchema.json +50 -0
  94. package/json-schemas/en/Movie/MovieSchema.json +127 -0
  95. package/json-schemas/en/Movie/index.json +279 -0
  96. package/json-schemas/en/MovieSchema.json +127 -0
  97. package/json-schemas/en/NoteSchema.json +846 -0
  98. package/json-schemas/en/Wikipedia/CatalogWikipediaSchema.json +34 -0
  99. package/json-schemas/en/Wikipedia/DetailedWikipediaSchema.json +41 -0
  100. package/json-schemas/en/Wikipedia/MetaWikipediaSchema.json +50 -0
  101. package/json-schemas/en/Wikipedia/WikipediaSchema.json +107 -0
  102. package/json-schemas/en/Wikipedia/index.json +239 -0
  103. package/json-schemas/en/WikipediaSchema.json +107 -0
  104. package/json-schemas/en/index.json +1923 -26
  105. package/json-schemas/es/Area.json +21 -0
  106. package/json-schemas/es/Areas.json +25 -0
  107. package/json-schemas/es/Article/ArticleSchema.json +138 -0
  108. package/json-schemas/es/Article/CatalogArticleSchema.json +47 -0
  109. package/json-schemas/es/Article/DetailedArticleSchema.json +38 -0
  110. package/json-schemas/es/Article/MetaArticleSchema.json +71 -0
  111. package/json-schemas/es/Article/index.json +301 -0
  112. package/json-schemas/es/ArticleSchema.json +138 -0
  113. package/json-schemas/es/Book/BookSchema.json +141 -0
  114. package/json-schemas/es/Book/CatalogBookSchema.json +48 -0
  115. package/json-schemas/es/Book/DetailedBookSchema.json +43 -0
  116. package/json-schemas/es/Book/MetaBookSchema.json +68 -0
  117. package/json-schemas/es/Book/index.json +307 -0
  118. package/json-schemas/es/BookSchema.json +141 -0
  119. package/json-schemas/es/CatalogArticleSchema.json +47 -0
  120. package/json-schemas/es/CatalogBookSchema.json +48 -0
  121. package/json-schemas/es/CatalogClothingSchema.json +0 -1
  122. package/json-schemas/es/CatalogMovieSchema.json +50 -0
  123. package/json-schemas/es/CatalogPaintingSchema.json +26 -0
  124. package/json-schemas/es/CatalogWikipediaSchema.json +47 -0
  125. package/json-schemas/es/CatalogYoutubeSchema.json +47 -0
  126. package/json-schemas/es/Clothing/CatalogClothingSchema.json +0 -1
  127. package/json-schemas/es/Clothing/ClothingSchema.json +30 -12
  128. package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -3
  129. package/json-schemas/es/Clothing/MetaClothingSchema.json +30 -11
  130. package/json-schemas/es/Clothing/index.json +61 -27
  131. package/json-schemas/es/ClothingSchema.json +30 -12
  132. package/json-schemas/es/DetailedArticleSchema.json +38 -0
  133. package/json-schemas/es/DetailedBookSchema.json +43 -0
  134. package/json-schemas/es/DetailedClothingSchema.json +1 -3
  135. package/json-schemas/es/DetailedMovieSchema.json +49 -0
  136. package/json-schemas/es/DetailedPaintingSchema.json +33 -0
  137. package/json-schemas/es/DetailedWikipediaSchema.json +38 -0
  138. package/json-schemas/es/DetailedYoutubeSchema.json +37 -0
  139. package/json-schemas/es/FirstLevelArea.json +21 -0
  140. package/json-schemas/es/Icon.json +1675 -0
  141. package/json-schemas/es/MetaArticleSchema.json +71 -0
  142. package/json-schemas/es/MetaBookSchema.json +68 -0
  143. package/json-schemas/es/MetaClothingSchema.json +30 -11
  144. package/json-schemas/es/MetaMovieSchema.json +69 -0
  145. package/json-schemas/es/MetaPaintingSchema.json +61 -0
  146. package/json-schemas/es/MetaWikipediaSchema.json +76 -0
  147. package/json-schemas/es/MetaYoutubeSchema.json +76 -0
  148. package/json-schemas/es/Movie/CatalogMovieSchema.json +50 -0
  149. package/json-schemas/es/Movie/DetailedMovieSchema.json +49 -0
  150. package/json-schemas/es/Movie/MetaMovieSchema.json +69 -0
  151. package/json-schemas/es/Movie/MovieSchema.json +150 -0
  152. package/json-schemas/es/Movie/index.json +325 -0
  153. package/json-schemas/es/MovieSchema.json +150 -0
  154. package/json-schemas/es/NoteSchema.json +1226 -0
  155. package/json-schemas/es/Painting/CatalogPaintingSchema.json +26 -0
  156. package/json-schemas/es/Painting/DetailedPaintingSchema.json +33 -0
  157. package/json-schemas/es/Painting/MetaPaintingSchema.json +61 -0
  158. package/json-schemas/es/Painting/PaintingSchema.json +106 -0
  159. package/json-schemas/es/Painting/index.json +233 -0
  160. package/json-schemas/es/PaintingSchema.json +106 -0
  161. package/json-schemas/es/Wikipedia/CatalogWikipediaSchema.json +47 -0
  162. package/json-schemas/es/Wikipedia/DetailedWikipediaSchema.json +38 -0
  163. package/json-schemas/es/Wikipedia/MetaWikipediaSchema.json +76 -0
  164. package/json-schemas/es/Wikipedia/WikipediaSchema.json +143 -0
  165. package/json-schemas/es/Wikipedia/index.json +311 -0
  166. package/json-schemas/es/WikipediaSchema.json +143 -0
  167. package/json-schemas/es/Youtube/CatalogYoutubeSchema.json +47 -0
  168. package/json-schemas/es/Youtube/DetailedYoutubeSchema.json +37 -0
  169. package/json-schemas/es/Youtube/MetaYoutubeSchema.json +76 -0
  170. package/json-schemas/es/Youtube/YoutubeSchema.json +142 -0
  171. package/json-schemas/es/Youtube/index.json +309 -0
  172. package/json-schemas/es/YoutubeSchema.json +142 -0
  173. package/json-schemas/es/index.json +4849 -103
  174. package/json-schemas/index.json +1850 -20
  175. package/package.json +3 -3
@@ -0,0 +1,1226 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "anyOf": [
4
+ {
5
+ "type": "object",
6
+ "properties": {
7
+ "title": {
8
+ "type": "string",
9
+ "description": "Título del artículo"
10
+ },
11
+ "description": {
12
+ "description": "Descripción",
13
+ "anyOf": [
14
+ {
15
+ "type": "string"
16
+ },
17
+ {
18
+ "type": "null"
19
+ }
20
+ ]
21
+ },
22
+ "excerpt": {
23
+ "description": "Extracto del artículo",
24
+ "type": "string"
25
+ },
26
+ "author": {
27
+ "description": "Autores",
28
+ "type": "array",
29
+ "items": {
30
+ "type": "string"
31
+ }
32
+ },
33
+ "published": {
34
+ "description": "Año de publicación",
35
+ "anyOf": [
36
+ {
37
+ "type": "string"
38
+ },
39
+ {
40
+ "type": "number"
41
+ }
42
+ ]
43
+ },
44
+ "status": {
45
+ "type": "string",
46
+ "enum": [
47
+ "Pendiente",
48
+ "En Proceso",
49
+ "Leído",
50
+ "Consolidado"
51
+ ],
52
+ "description": "Estado de lectura"
53
+ },
54
+ "projects": {
55
+ "description": "Proyectos",
56
+ "type": "array",
57
+ "items": {
58
+ "type": "string"
59
+ }
60
+ },
61
+ "topics": {
62
+ "description": "Temas",
63
+ "type": "array",
64
+ "items": {
65
+ "type": "string"
66
+ }
67
+ },
68
+ "rating": {
69
+ "description": "Puntuación del artículo",
70
+ "type": "number"
71
+ },
72
+ "type": {
73
+ "type": "string",
74
+ "const": "[[Fuentes]]"
75
+ },
76
+ "format": {
77
+ "type": "string",
78
+ "const": "[[Artículos]]"
79
+ },
80
+ "areas": {
81
+ "default": [
82
+ "[[Conocimiento]]"
83
+ ],
84
+ "type": "array",
85
+ "items": {
86
+ "type": "string",
87
+ "enum": [
88
+ "[[Alimentación]]",
89
+ "[[Salud]]",
90
+ "[[Conocimiento]]",
91
+ "[[Pensamiento Estructurado]]",
92
+ "[[Hogar]]",
93
+ "[[Productividad]]",
94
+ "[[Exploración]]",
95
+ "[[Vínculos]]",
96
+ "[[Ejercicio]]",
97
+ "[[Energía Vital]]",
98
+ "[[Trabajo]]",
99
+ "[[Finanzas]]",
100
+ "[[Salud Mental]]",
101
+ "[[Creatividad]]"
102
+ ],
103
+ "description": "Área"
104
+ },
105
+ "description": "Áreas"
106
+ },
107
+ "color": {
108
+ "default": "#3171B2",
109
+ "description": "Color de la nota.",
110
+ "type": "string"
111
+ },
112
+ "icon": {
113
+ "default": "newspaper",
114
+ "description": "Icono de Lucide.",
115
+ "type": "string"
116
+ },
117
+ "banner": {
118
+ "description": "Banner de la nota.",
119
+ "anyOf": [
120
+ {
121
+ "type": "string"
122
+ },
123
+ {
124
+ "type": "null"
125
+ }
126
+ ]
127
+ },
128
+ "url": {
129
+ "description": "URL del artículo",
130
+ "type": "string"
131
+ }
132
+ },
133
+ "required": [
134
+ "title",
135
+ "status",
136
+ "type",
137
+ "format"
138
+ ],
139
+ "description": "Artículo"
140
+ },
141
+ {
142
+ "type": "object",
143
+ "properties": {
144
+ "title": {
145
+ "type": "string",
146
+ "description": "Título del libro"
147
+ },
148
+ "subtitle": {
149
+ "description": "Subtítulo del libro",
150
+ "type": "string"
151
+ },
152
+ "description": {
153
+ "description": "Descripción del libro",
154
+ "type": "string"
155
+ },
156
+ "author": {
157
+ "type": "array",
158
+ "items": {
159
+ "type": "string"
160
+ },
161
+ "description": "Autores"
162
+ },
163
+ "published": {
164
+ "description": "Año de publicación",
165
+ "anyOf": [
166
+ {
167
+ "type": "string"
168
+ },
169
+ {
170
+ "type": "number"
171
+ }
172
+ ]
173
+ },
174
+ "categories": {
175
+ "description": "Géneros",
176
+ "type": "array",
177
+ "items": {
178
+ "type": "string"
179
+ }
180
+ },
181
+ "status": {
182
+ "type": "string",
183
+ "enum": [
184
+ "Pendiente",
185
+ "En Proceso",
186
+ "Leído",
187
+ "Consolidado"
188
+ ],
189
+ "description": "Estado de lectura"
190
+ },
191
+ "topics": {
192
+ "description": "Temas",
193
+ "type": "array",
194
+ "items": {
195
+ "type": "string"
196
+ }
197
+ },
198
+ "rating": {
199
+ "description": "Puntuación del libro",
200
+ "type": "number"
201
+ },
202
+ "online_rating": {
203
+ "description": "Puntuación en línea",
204
+ "type": "number"
205
+ },
206
+ "last_time_read": {
207
+ "description": "Última vez leído",
208
+ "type": "string"
209
+ },
210
+ "times_read": {
211
+ "description": "Veces leído",
212
+ "type": "number"
213
+ },
214
+ "type": {
215
+ "type": "string",
216
+ "const": "[[Fuentes]]"
217
+ },
218
+ "format": {
219
+ "type": "string",
220
+ "const": "[[Libros]]"
221
+ },
222
+ "areas": {
223
+ "default": [
224
+ "[[Conocimiento]]"
225
+ ],
226
+ "type": "array",
227
+ "items": {
228
+ "type": "string",
229
+ "enum": [
230
+ "[[Alimentación]]",
231
+ "[[Salud]]",
232
+ "[[Conocimiento]]",
233
+ "[[Pensamiento Estructurado]]",
234
+ "[[Hogar]]",
235
+ "[[Productividad]]",
236
+ "[[Exploración]]",
237
+ "[[Vínculos]]",
238
+ "[[Ejercicio]]",
239
+ "[[Energía Vital]]",
240
+ "[[Trabajo]]",
241
+ "[[Finanzas]]",
242
+ "[[Salud Mental]]",
243
+ "[[Creatividad]]"
244
+ ],
245
+ "description": "Área"
246
+ },
247
+ "description": "Áreas"
248
+ },
249
+ "color": {
250
+ "default": "#3171B2",
251
+ "description": "Color de la nota.",
252
+ "type": "string"
253
+ },
254
+ "icon": {
255
+ "default": "book",
256
+ "description": "Icono de Lucide.",
257
+ "type": "string"
258
+ },
259
+ "cover": {
260
+ "description": "Portada del libro.",
261
+ "type": "string"
262
+ },
263
+ "url": {
264
+ "description": "URL del libro en Amazon o similar",
265
+ "type": "string"
266
+ },
267
+ "read_url": {
268
+ "description": "URL de la lectura del libro",
269
+ "type": "string"
270
+ }
271
+ },
272
+ "required": [
273
+ "title",
274
+ "author",
275
+ "status",
276
+ "type",
277
+ "format"
278
+ ],
279
+ "description": "Libro"
280
+ },
281
+ {
282
+ "type": "object",
283
+ "properties": {
284
+ "name": {
285
+ "type": "string",
286
+ "description": "Nombre descriptivo de la prenda de ropa"
287
+ },
288
+ "garment": {
289
+ "type": "string",
290
+ "enum": [
291
+ "Camisetas Interiores",
292
+ "Calzoncillos",
293
+ "Bragas",
294
+ "Sujetadores",
295
+ "Calcetines",
296
+ "Camisetas",
297
+ "Polos",
298
+ "Camisas",
299
+ "Blusas",
300
+ "Tops",
301
+ "Jerseys",
302
+ "Sudaderas",
303
+ "Cárdigans",
304
+ "Chaquetas",
305
+ "Pantalones",
306
+ "Vaqueros",
307
+ "Chinos",
308
+ "Faldas",
309
+ "Shorts",
310
+ "Americanas",
311
+ "Abrigos",
312
+ "Gabardinas",
313
+ "Parkas",
314
+ "Cazadoras",
315
+ "Chalecos",
316
+ "Mallas",
317
+ "Ropa Técnica",
318
+ "Shorts Deportivos",
319
+ "Camisetas Técnicas",
320
+ "Vestidos",
321
+ "Monos",
322
+ "Zapatillas",
323
+ "Zapatos",
324
+ "Botas",
325
+ "Sandalias",
326
+ "Cinturones",
327
+ "Gorras",
328
+ "Sombreros",
329
+ "Bufandas",
330
+ "Guantes",
331
+ "Bolsos",
332
+ "Mochilas",
333
+ "Gafas de Sol",
334
+ "Pañuelos",
335
+ "Relojes",
336
+ "Joyas",
337
+ "Pijamas",
338
+ "Batas",
339
+ "Bañadores",
340
+ "Bikinis"
341
+ ],
342
+ "description": "Tipo de Prenda"
343
+ },
344
+ "slot": {
345
+ "type": "string",
346
+ "enum": [
347
+ "Superior",
348
+ "Inferior",
349
+ "Cuerpo Completo",
350
+ "Exterior",
351
+ "Calzado",
352
+ "Accesorios"
353
+ ],
354
+ "description": "Parte del outfit"
355
+ },
356
+ "variants": {
357
+ "description": "Detalles Estructurales",
358
+ "type": "array",
359
+ "items": {
360
+ "type": "string",
361
+ "enum": [
362
+ "Sin Mangas",
363
+ "Mangas Cortas",
364
+ "Mangas Largas",
365
+ "Cuello Redondo",
366
+ "Cuello Pico",
367
+ "Cuello Alto",
368
+ "Cuello Camisa",
369
+ "Cuello Polo",
370
+ "Cuello Panadero",
371
+ "Cuello Mao",
372
+ "Cuello Chimenea",
373
+ "Capucha",
374
+ "Overshirt",
375
+ "Cropped",
376
+ "Larga",
377
+ "Pierna Recta",
378
+ "Pitillo",
379
+ "Ancha",
380
+ "Cargo",
381
+ "Acampanado",
382
+ "Trench",
383
+ "Plumífero",
384
+ "Doble botonadura",
385
+ "Botones",
386
+ "Cremallera",
387
+ "Velcro",
388
+ "Cordones",
389
+ "Broches",
390
+ "Bolsillos",
391
+ "Sin Bolsillos",
392
+ "Reversible"
393
+ ]
394
+ }
395
+ },
396
+ "fit": {
397
+ "description": "Ajuste",
398
+ "type": "string",
399
+ "enum": [
400
+ "Entallado",
401
+ "Ajustado",
402
+ "Regular",
403
+ "Relajado",
404
+ "Holgado",
405
+ "Extragrande"
406
+ ]
407
+ },
408
+ "primary_color": {
409
+ "type": "string",
410
+ "enum": [
411
+ "Blanco",
412
+ "Negro",
413
+ "Gris",
414
+ "Beige",
415
+ "Marrón",
416
+ "Azul",
417
+ "Verde",
418
+ "Rojo",
419
+ "Burdeos",
420
+ "Rosa",
421
+ "Amarillo",
422
+ "Naranja",
423
+ "Morado",
424
+ "Camel",
425
+ "Caqui",
426
+ "Marino",
427
+ "Crema",
428
+ "Oro",
429
+ "Plata",
430
+ "Bronce"
431
+ ],
432
+ "description": "Color principal"
433
+ },
434
+ "secondary_color": {
435
+ "description": "Color secundario",
436
+ "type": "string",
437
+ "enum": [
438
+ "Blanco",
439
+ "Negro",
440
+ "Gris",
441
+ "Beige",
442
+ "Marrón",
443
+ "Azul",
444
+ "Verde",
445
+ "Rojo",
446
+ "Burdeos",
447
+ "Rosa",
448
+ "Amarillo",
449
+ "Naranja",
450
+ "Morado",
451
+ "Camel",
452
+ "Caqui",
453
+ "Marino",
454
+ "Crema",
455
+ "Oro",
456
+ "Plata",
457
+ "Bronce"
458
+ ]
459
+ },
460
+ "pattern": {
461
+ "description": "Estampado",
462
+ "type": "string",
463
+ "enum": [
464
+ "Liso",
465
+ "Rayas",
466
+ "Cuadros",
467
+ "Lunares",
468
+ "Animal Print",
469
+ "Floral",
470
+ "Geométrico",
471
+ "Camuflaje",
472
+ "EstampadoGráfico",
473
+ "Degradado"
474
+ ]
475
+ },
476
+ "materials": {
477
+ "description": "Materiales",
478
+ "type": "array",
479
+ "items": {
480
+ "type": "string",
481
+ "enum": [
482
+ "Algodón",
483
+ "Lino",
484
+ "Lana",
485
+ "Seda",
486
+ "Cuero",
487
+ "Cachemir",
488
+ "Ante",
489
+ "Poliéster",
490
+ "Nylon",
491
+ "Elastano",
492
+ "Viscosa",
493
+ "Piel Sintética",
494
+ "Gore-Tex",
495
+ "Denim",
496
+ "Punto",
497
+ "Felpa",
498
+ "Tweed",
499
+ "Satén",
500
+ "Terciopelo",
501
+ "Jacquard",
502
+ "Franela",
503
+ "Gabardina"
504
+ ]
505
+ }
506
+ },
507
+ "layer": {
508
+ "type": "string",
509
+ "enum": [
510
+ "Base",
511
+ "Intermedia",
512
+ "Exterior"
513
+ ],
514
+ "description": "Capa Térmica"
515
+ },
516
+ "season": {
517
+ "description": "Estaciones",
518
+ "type": "string",
519
+ "enum": [
520
+ "Invierno",
521
+ "Verano",
522
+ "Entretiempo",
523
+ "Todo el año"
524
+ ]
525
+ },
526
+ "use_case": {
527
+ "description": "Casos de uso",
528
+ "type": "array",
529
+ "items": {
530
+ "type": "string",
531
+ "enum": [
532
+ "Capsula",
533
+ "Favorita",
534
+ "Básico",
535
+ "Deporte",
536
+ "Trabajo",
537
+ "Evento",
538
+ "Viaje",
539
+ "Casa",
540
+ "Fiesta",
541
+ "Playa",
542
+ "Lluvia",
543
+ "Frío Extremo"
544
+ ]
545
+ }
546
+ },
547
+ "formality": {
548
+ "description": "Formalidad",
549
+ "type": "string",
550
+ "enum": [
551
+ "Muy Informal",
552
+ "Casual",
553
+ "Arreglado",
554
+ "Formal",
555
+ "Etiqueta"
556
+ ]
557
+ },
558
+ "brand": {
559
+ "description": "The brand of the clothing",
560
+ "type": "string"
561
+ },
562
+ "cares": {
563
+ "description": "Cuidados",
564
+ "type": "array",
565
+ "items": {
566
+ "type": "string",
567
+ "enum": [
568
+ "Lavado a mano",
569
+ "Lavado a máquina",
570
+ "Lavado en seco",
571
+ "Frio",
572
+ "Caliente",
573
+ "Planchado",
574
+ "Planchado a vapor"
575
+ ]
576
+ }
577
+ },
578
+ "status": {
579
+ "default": "Bien",
580
+ "description": "Estado",
581
+ "type": "string",
582
+ "enum": [
583
+ "Nuevo",
584
+ "Bien",
585
+ "Gastado",
586
+ "Dañado",
587
+ "Retirar"
588
+ ]
589
+ },
590
+ "size": {
591
+ "type": "string",
592
+ "enum": [
593
+ "28",
594
+ "30",
595
+ "32",
596
+ "34",
597
+ "36",
598
+ "37",
599
+ "38",
600
+ "39",
601
+ "40",
602
+ "41",
603
+ "42",
604
+ "43",
605
+ "44",
606
+ "45",
607
+ "46",
608
+ "48",
609
+ "XS",
610
+ "S",
611
+ "M",
612
+ "L",
613
+ "XL",
614
+ "XXL",
615
+ "XXXL"
616
+ ]
617
+ },
618
+ "measurements": {
619
+ "description": "Medidas",
620
+ "type": "array",
621
+ "items": {
622
+ "type": "number"
623
+ }
624
+ },
625
+ "type": {
626
+ "type": "string",
627
+ "const": "[[Recursos]]"
628
+ },
629
+ "subtype": {
630
+ "type": "string",
631
+ "const": "[[Prendas]]"
632
+ },
633
+ "areas": {
634
+ "default": [
635
+ "[[Hogar]]"
636
+ ],
637
+ "type": "array",
638
+ "items": {
639
+ "type": "string",
640
+ "enum": [
641
+ "[[Alimentación]]",
642
+ "[[Salud]]",
643
+ "[[Conocimiento]]",
644
+ "[[Pensamiento Estructurado]]",
645
+ "[[Hogar]]",
646
+ "[[Productividad]]",
647
+ "[[Exploración]]",
648
+ "[[Vínculos]]",
649
+ "[[Ejercicio]]",
650
+ "[[Energía Vital]]",
651
+ "[[Trabajo]]",
652
+ "[[Finanzas]]",
653
+ "[[Salud Mental]]",
654
+ "[[Creatividad]]"
655
+ ],
656
+ "description": "Área"
657
+ },
658
+ "description": "Áreas"
659
+ },
660
+ "color": {
661
+ "default": "#CB6120",
662
+ "description": "Color de la nota.",
663
+ "type": "string"
664
+ },
665
+ "icon": {
666
+ "default": "shirt",
667
+ "description": "Icono de Lucide.",
668
+ "type": "string"
669
+ },
670
+ "cover": {
671
+ "description": "Foto de la prenda de ropa.",
672
+ "type": "string"
673
+ }
674
+ },
675
+ "required": [
676
+ "name",
677
+ "garment",
678
+ "slot",
679
+ "primary_color",
680
+ "layer",
681
+ "size",
682
+ "type",
683
+ "subtype"
684
+ ],
685
+ "description": "Prenda de ropa"
686
+ },
687
+ {
688
+ "type": "object",
689
+ "properties": {
690
+ "title": {
691
+ "type": "string",
692
+ "description": "Título de la película"
693
+ },
694
+ "description": {
695
+ "description": "Descripción de la película",
696
+ "type": "string"
697
+ },
698
+ "author": {
699
+ "description": "Autores. Guionistas, directores, productores, etc.",
700
+ "type": "array",
701
+ "items": {
702
+ "type": "string"
703
+ }
704
+ },
705
+ "actors": {
706
+ "description": "Actores",
707
+ "type": "array",
708
+ "items": {
709
+ "type": "string"
710
+ }
711
+ },
712
+ "published": {
713
+ "description": "Año de publicación",
714
+ "anyOf": [
715
+ {
716
+ "type": "string"
717
+ },
718
+ {
719
+ "type": "number"
720
+ }
721
+ ]
722
+ },
723
+ "genres": {
724
+ "description": "Géneros",
725
+ "type": "array",
726
+ "items": {
727
+ "type": "string"
728
+ }
729
+ },
730
+ "status": {
731
+ "type": "string",
732
+ "enum": [
733
+ "Pendiente",
734
+ "En progreso",
735
+ "Visto"
736
+ ],
737
+ "description": "Estado de visualización"
738
+ },
739
+ "topics": {
740
+ "description": "Temas",
741
+ "anyOf": [
742
+ {
743
+ "type": "array",
744
+ "items": {
745
+ "type": "string"
746
+ }
747
+ },
748
+ {
749
+ "type": "null"
750
+ }
751
+ ]
752
+ },
753
+ "rating": {
754
+ "description": "Puntuación de la película",
755
+ "type": "number"
756
+ },
757
+ "online_rating": {
758
+ "description": "Puntuación en línea",
759
+ "type": "number"
760
+ },
761
+ "last_time_watched": {
762
+ "description": "Última vez vista",
763
+ "type": "string"
764
+ },
765
+ "times_watched": {
766
+ "description": "Veces vista",
767
+ "type": "number"
768
+ },
769
+ "type": {
770
+ "type": "string",
771
+ "const": "[[Fuentes]]"
772
+ },
773
+ "format": {
774
+ "type": "string",
775
+ "const": "[[Películas]]"
776
+ },
777
+ "areas": {
778
+ "default": [
779
+ "[[Creatividad]]"
780
+ ],
781
+ "type": "array",
782
+ "items": {
783
+ "type": "string",
784
+ "enum": [
785
+ "[[Alimentación]]",
786
+ "[[Salud]]",
787
+ "[[Conocimiento]]",
788
+ "[[Pensamiento Estructurado]]",
789
+ "[[Hogar]]",
790
+ "[[Productividad]]",
791
+ "[[Exploración]]",
792
+ "[[Vínculos]]",
793
+ "[[Ejercicio]]",
794
+ "[[Energía Vital]]",
795
+ "[[Trabajo]]",
796
+ "[[Finanzas]]",
797
+ "[[Salud Mental]]",
798
+ "[[Creatividad]]"
799
+ ],
800
+ "description": "Área"
801
+ },
802
+ "description": "Áreas"
803
+ },
804
+ "color": {
805
+ "default": "#BE9207",
806
+ "description": "Color de la nota.",
807
+ "type": "string"
808
+ },
809
+ "icon": {
810
+ "default": "movie",
811
+ "description": "Icono de Lucide.",
812
+ "type": "string"
813
+ },
814
+ "cover": {
815
+ "description": "Portada de la película.",
816
+ "type": "string"
817
+ },
818
+ "url": {
819
+ "type": "string",
820
+ "description": "URL de la película en IMDB o similar"
821
+ },
822
+ "watch_url": {
823
+ "description": "URL de la película en streaming",
824
+ "type": "string"
825
+ }
826
+ },
827
+ "required": [
828
+ "title",
829
+ "status",
830
+ "type",
831
+ "format",
832
+ "url"
833
+ ],
834
+ "description": "Película"
835
+ },
836
+ {
837
+ "type": "object",
838
+ "properties": {
839
+ "title": {
840
+ "description": "Título de la pintura",
841
+ "type": "string"
842
+ },
843
+ "description": {
844
+ "description": "Descripción",
845
+ "type": "string"
846
+ },
847
+ "author": {
848
+ "description": "Autores",
849
+ "type": "array",
850
+ "items": {
851
+ "type": "string"
852
+ }
853
+ },
854
+ "published": {
855
+ "description": "Año de publicación",
856
+ "type": "string"
857
+ },
858
+ "collection": {
859
+ "description": "Colección",
860
+ "type": "string"
861
+ },
862
+ "position": {
863
+ "description": "Posición en la colección",
864
+ "type": "string"
865
+ },
866
+ "projects": {
867
+ "description": "Proyectos",
868
+ "type": "array",
869
+ "items": {
870
+ "type": "string"
871
+ }
872
+ },
873
+ "topics": {
874
+ "description": "Temas",
875
+ "type": "array",
876
+ "items": {
877
+ "type": "string"
878
+ }
879
+ },
880
+ "rating": {
881
+ "description": "Puntuación del artículo",
882
+ "type": "number"
883
+ },
884
+ "type": {
885
+ "type": "string",
886
+ "const": "[[Fuentes]]"
887
+ },
888
+ "format": {
889
+ "type": "string",
890
+ "const": "[[Pinturas]]"
891
+ },
892
+ "areas": {
893
+ "default": [
894
+ "[[Creatividad]]"
895
+ ],
896
+ "type": "array",
897
+ "items": {
898
+ "type": "string",
899
+ "enum": [
900
+ "[[Alimentación]]",
901
+ "[[Salud]]",
902
+ "[[Conocimiento]]",
903
+ "[[Pensamiento Estructurado]]",
904
+ "[[Hogar]]",
905
+ "[[Productividad]]",
906
+ "[[Exploración]]",
907
+ "[[Vínculos]]",
908
+ "[[Ejercicio]]",
909
+ "[[Energía Vital]]",
910
+ "[[Trabajo]]",
911
+ "[[Finanzas]]",
912
+ "[[Salud Mental]]",
913
+ "[[Creatividad]]"
914
+ ],
915
+ "description": "Área"
916
+ },
917
+ "description": "Áreas"
918
+ },
919
+ "color": {
920
+ "default": "#BE9207",
921
+ "description": "Color de la nota.",
922
+ "type": "string"
923
+ },
924
+ "icon": {
925
+ "default": "frame",
926
+ "description": "Icono de Lucide.",
927
+ "type": "string"
928
+ },
929
+ "cover": {
930
+ "type": "string",
931
+ "description": "Imagen de la pintura."
932
+ }
933
+ },
934
+ "required": [
935
+ "type",
936
+ "format",
937
+ "cover"
938
+ ],
939
+ "description": "Pintura"
940
+ },
941
+ {
942
+ "type": "object",
943
+ "properties": {
944
+ "title": {
945
+ "type": "string",
946
+ "description": "Título de la entrada de Wikipedia"
947
+ },
948
+ "description": {
949
+ "description": "Descripción",
950
+ "anyOf": [
951
+ {
952
+ "type": "string"
953
+ },
954
+ {
955
+ "type": "null"
956
+ }
957
+ ]
958
+ },
959
+ "excerpt": {
960
+ "description": "Extracto del artículo",
961
+ "type": "string"
962
+ },
963
+ "author": {
964
+ "description": "Autores",
965
+ "type": "array",
966
+ "items": {
967
+ "type": "string"
968
+ }
969
+ },
970
+ "published": {
971
+ "description": "Año de publicación",
972
+ "anyOf": [
973
+ {
974
+ "type": "string"
975
+ },
976
+ {
977
+ "type": "number"
978
+ }
979
+ ]
980
+ },
981
+ "status": {
982
+ "type": "string",
983
+ "enum": [
984
+ "Pendiente",
985
+ "En Proceso",
986
+ "Leído",
987
+ "Consolidado"
988
+ ],
989
+ "description": "Estado de lectura"
990
+ },
991
+ "projects": {
992
+ "description": "Proyectos",
993
+ "type": "array",
994
+ "items": {
995
+ "type": "string"
996
+ }
997
+ },
998
+ "topics": {
999
+ "description": "Temas",
1000
+ "type": "array",
1001
+ "items": {
1002
+ "type": "string"
1003
+ }
1004
+ },
1005
+ "rating": {
1006
+ "description": "Puntuación del artículo",
1007
+ "type": "number"
1008
+ },
1009
+ "type": {
1010
+ "type": "string",
1011
+ "const": "[[Fuentes]]"
1012
+ },
1013
+ "format": {
1014
+ "type": "string",
1015
+ "const": "[[Entradas de Enciclopedia]]"
1016
+ },
1017
+ "areas": {
1018
+ "default": [
1019
+ "[[Conocimiento]]"
1020
+ ],
1021
+ "type": "array",
1022
+ "items": {
1023
+ "type": "string",
1024
+ "enum": [
1025
+ "[[Alimentación]]",
1026
+ "[[Salud]]",
1027
+ "[[Conocimiento]]",
1028
+ "[[Pensamiento Estructurado]]",
1029
+ "[[Hogar]]",
1030
+ "[[Productividad]]",
1031
+ "[[Exploración]]",
1032
+ "[[Vínculos]]",
1033
+ "[[Ejercicio]]",
1034
+ "[[Energía Vital]]",
1035
+ "[[Trabajo]]",
1036
+ "[[Finanzas]]",
1037
+ "[[Salud Mental]]",
1038
+ "[[Creatividad]]"
1039
+ ],
1040
+ "description": "Área"
1041
+ },
1042
+ "description": "Áreas"
1043
+ },
1044
+ "color": {
1045
+ "default": "#3171B2",
1046
+ "description": "Color de la nota.",
1047
+ "type": "string"
1048
+ },
1049
+ "icon": {
1050
+ "default": "wikipedia",
1051
+ "description": "Icono de Lucide.",
1052
+ "type": "string"
1053
+ },
1054
+ "banner": {
1055
+ "description": "Banner de la nota.",
1056
+ "anyOf": [
1057
+ {
1058
+ "type": "string"
1059
+ },
1060
+ {
1061
+ "type": "null"
1062
+ }
1063
+ ]
1064
+ },
1065
+ "url": {
1066
+ "description": "URL del artículo",
1067
+ "type": "string"
1068
+ },
1069
+ "platform": {
1070
+ "type": "string",
1071
+ "const": "Wikipedia"
1072
+ }
1073
+ },
1074
+ "required": [
1075
+ "title",
1076
+ "status",
1077
+ "type",
1078
+ "format",
1079
+ "platform"
1080
+ ],
1081
+ "description": "Entrada de Wikipedia"
1082
+ },
1083
+ {
1084
+ "type": "object",
1085
+ "properties": {
1086
+ "title": {
1087
+ "type": "string",
1088
+ "description": "Título del vídeo de YouTube"
1089
+ },
1090
+ "description": {
1091
+ "description": "Descripción",
1092
+ "anyOf": [
1093
+ {
1094
+ "type": "string"
1095
+ },
1096
+ {
1097
+ "type": "null"
1098
+ }
1099
+ ]
1100
+ },
1101
+ "excerpt": {
1102
+ "description": "Extracto del artículo",
1103
+ "type": "string"
1104
+ },
1105
+ "author": {
1106
+ "description": "Autores",
1107
+ "type": "array",
1108
+ "items": {
1109
+ "type": "string"
1110
+ }
1111
+ },
1112
+ "published": {
1113
+ "description": "Año de publicación",
1114
+ "anyOf": [
1115
+ {
1116
+ "type": "string"
1117
+ },
1118
+ {
1119
+ "type": "number"
1120
+ }
1121
+ ]
1122
+ },
1123
+ "status": {
1124
+ "type": "string",
1125
+ "enum": [
1126
+ "Pendiente",
1127
+ "En progreso",
1128
+ "Visto"
1129
+ ],
1130
+ "description": "Estado de visualización"
1131
+ },
1132
+ "projects": {
1133
+ "description": "Proyectos",
1134
+ "type": "array",
1135
+ "items": {
1136
+ "type": "string"
1137
+ }
1138
+ },
1139
+ "topics": {
1140
+ "description": "Temas",
1141
+ "type": "array",
1142
+ "items": {
1143
+ "type": "string"
1144
+ }
1145
+ },
1146
+ "rating": {
1147
+ "description": "Puntuación del artículo",
1148
+ "type": "number"
1149
+ },
1150
+ "type": {
1151
+ "type": "string",
1152
+ "const": "[[Fuentes]]"
1153
+ },
1154
+ "format": {
1155
+ "type": "string",
1156
+ "const": "[[Vídeos]]"
1157
+ },
1158
+ "areas": {
1159
+ "default": [
1160
+ "[[Conocimiento]]"
1161
+ ],
1162
+ "type": "array",
1163
+ "items": {
1164
+ "type": "string",
1165
+ "enum": [
1166
+ "[[Alimentación]]",
1167
+ "[[Salud]]",
1168
+ "[[Conocimiento]]",
1169
+ "[[Pensamiento Estructurado]]",
1170
+ "[[Hogar]]",
1171
+ "[[Productividad]]",
1172
+ "[[Exploración]]",
1173
+ "[[Vínculos]]",
1174
+ "[[Ejercicio]]",
1175
+ "[[Energía Vital]]",
1176
+ "[[Trabajo]]",
1177
+ "[[Finanzas]]",
1178
+ "[[Salud Mental]]",
1179
+ "[[Creatividad]]"
1180
+ ],
1181
+ "description": "Área"
1182
+ },
1183
+ "description": "Áreas"
1184
+ },
1185
+ "color": {
1186
+ "default": "#3171B2",
1187
+ "description": "Color de la nota.",
1188
+ "type": "string"
1189
+ },
1190
+ "icon": {
1191
+ "default": "youtube",
1192
+ "description": "Icono de Lucide.",
1193
+ "type": "string"
1194
+ },
1195
+ "banner": {
1196
+ "description": "Banner de la nota.",
1197
+ "anyOf": [
1198
+ {
1199
+ "type": "string"
1200
+ },
1201
+ {
1202
+ "type": "null"
1203
+ }
1204
+ ]
1205
+ },
1206
+ "url": {
1207
+ "description": "URL del artículo",
1208
+ "type": "string"
1209
+ },
1210
+ "platform": {
1211
+ "type": "string",
1212
+ "const": "YouTube"
1213
+ }
1214
+ },
1215
+ "required": [
1216
+ "title",
1217
+ "status",
1218
+ "type",
1219
+ "format",
1220
+ "platform"
1221
+ ],
1222
+ "description": "Vídeo de YouTube"
1223
+ }
1224
+ ],
1225
+ "description": "Nota: Unión de todos los tipos de notas"
1226
+ }