@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,6 +3,1125 @@
3
3
  "title": "@segha/catalog/es",
4
4
  "description": "Schemas for Petroglyph Catalog",
5
5
  "$defs": {
6
+ "Area": {
7
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
8
+ "type": "string",
9
+ "enum": [
10
+ "[[Alimentación]]",
11
+ "[[Salud]]",
12
+ "[[Conocimiento]]",
13
+ "[[Pensamiento Estructurado]]",
14
+ "[[Hogar]]",
15
+ "[[Productividad]]",
16
+ "[[Exploración]]",
17
+ "[[Vínculos]]",
18
+ "[[Ejercicio]]",
19
+ "[[Energía Vital]]",
20
+ "[[Trabajo]]",
21
+ "[[Finanzas]]",
22
+ "[[Salud Mental]]",
23
+ "[[Creatividad]]"
24
+ ],
25
+ "description": "Área"
26
+ },
27
+ "Areas": {
28
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string",
32
+ "enum": [
33
+ "[[Alimentación]]",
34
+ "[[Salud]]",
35
+ "[[Conocimiento]]",
36
+ "[[Pensamiento Estructurado]]",
37
+ "[[Hogar]]",
38
+ "[[Productividad]]",
39
+ "[[Exploración]]",
40
+ "[[Vínculos]]",
41
+ "[[Ejercicio]]",
42
+ "[[Energía Vital]]",
43
+ "[[Trabajo]]",
44
+ "[[Finanzas]]",
45
+ "[[Salud Mental]]",
46
+ "[[Creatividad]]"
47
+ ],
48
+ "description": "Área"
49
+ },
50
+ "description": "Áreas"
51
+ },
52
+ "FirstLevelArea": {
53
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
54
+ "type": "string",
55
+ "enum": [
56
+ "[[Alimentación]]",
57
+ "[[Salud]]",
58
+ "[[Conocimiento]]",
59
+ "[[Pensamiento Estructurado]]",
60
+ "[[Hogar]]",
61
+ "[[Productividad]]",
62
+ "[[Exploración]]",
63
+ "[[Vínculos]]",
64
+ "[[Ejercicio]]",
65
+ "[[Energía Vital]]",
66
+ "[[Trabajo]]",
67
+ "[[Finanzas]]",
68
+ "[[Salud Mental]]",
69
+ "[[Creatividad]]"
70
+ ],
71
+ "description": "Área de Primer Nivel"
72
+ },
73
+ "NoteSchema": {
74
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
75
+ "anyOf": [
76
+ {
77
+ "type": "object",
78
+ "properties": {
79
+ "title": {
80
+ "type": "string",
81
+ "description": "Título del artículo"
82
+ },
83
+ "description": {
84
+ "description": "Descripción",
85
+ "type": "string"
86
+ },
87
+ "excerpt": {
88
+ "description": "Extracto del artículo",
89
+ "type": "string"
90
+ },
91
+ "author": {
92
+ "type": "array",
93
+ "items": {
94
+ "type": "string"
95
+ },
96
+ "description": "Autores"
97
+ },
98
+ "published": {
99
+ "description": "Año de publicación",
100
+ "type": "string"
101
+ },
102
+ "status": {
103
+ "type": "string",
104
+ "enum": [
105
+ "Pendiente",
106
+ "En Proceso",
107
+ "Leído",
108
+ "Consolidado"
109
+ ],
110
+ "description": "Estado de lectura"
111
+ },
112
+ "projects": {
113
+ "type": "array",
114
+ "items": {
115
+ "type": "string"
116
+ },
117
+ "description": "Proyectos"
118
+ },
119
+ "topics": {
120
+ "type": "array",
121
+ "items": {
122
+ "type": "string"
123
+ },
124
+ "description": "Temas"
125
+ },
126
+ "rating": {
127
+ "type": "number",
128
+ "description": "Puntuación del artículo"
129
+ },
130
+ "type": {
131
+ "type": "string",
132
+ "const": "[[Fuentes]]"
133
+ },
134
+ "format": {
135
+ "type": "string",
136
+ "const": "[[Artículos]]"
137
+ },
138
+ "areas": {
139
+ "type": "array",
140
+ "items": {
141
+ "type": "string",
142
+ "const": "[[Conocimiento]]"
143
+ }
144
+ },
145
+ "color": {
146
+ "type": "string",
147
+ "const": "#3171B2"
148
+ },
149
+ "icon": {
150
+ "type": "string",
151
+ "const": "newspaper"
152
+ },
153
+ "banner": {
154
+ "type": "string"
155
+ },
156
+ "url": {
157
+ "type": "string",
158
+ "description": "URL del artículo"
159
+ }
160
+ },
161
+ "required": [
162
+ "title",
163
+ "author",
164
+ "status",
165
+ "projects",
166
+ "topics",
167
+ "rating",
168
+ "type",
169
+ "format",
170
+ "areas",
171
+ "color",
172
+ "icon",
173
+ "url"
174
+ ],
175
+ "additionalProperties": false,
176
+ "description": "Artículo"
177
+ },
178
+ {
179
+ "type": "object",
180
+ "properties": {
181
+ "title": {
182
+ "type": "string",
183
+ "description": "Título del libro"
184
+ },
185
+ "subtitle": {
186
+ "description": "Subtítulo del libro",
187
+ "type": "string"
188
+ },
189
+ "description": {
190
+ "description": "Descripción del libro",
191
+ "type": "string"
192
+ },
193
+ "author": {
194
+ "type": "array",
195
+ "items": {
196
+ "type": "string"
197
+ },
198
+ "description": "Autores"
199
+ },
200
+ "published": {
201
+ "type": "string",
202
+ "description": "Año de publicación"
203
+ },
204
+ "categories": {
205
+ "type": "array",
206
+ "items": {
207
+ "type": "string"
208
+ },
209
+ "description": "Géneros"
210
+ },
211
+ "status": {
212
+ "type": "string",
213
+ "enum": [
214
+ "Pendiente",
215
+ "En Proceso",
216
+ "Leído",
217
+ "Consolidado"
218
+ ],
219
+ "description": "Estado de lectura"
220
+ },
221
+ "topics": {
222
+ "type": "array",
223
+ "items": {
224
+ "type": "string"
225
+ },
226
+ "description": "Temas"
227
+ },
228
+ "rating": {
229
+ "type": "number",
230
+ "description": "Puntuación del libro"
231
+ },
232
+ "online_rating": {
233
+ "type": "number",
234
+ "description": "Puntuación en línea"
235
+ },
236
+ "last_time_read": {
237
+ "type": "string",
238
+ "description": "Última vez leído"
239
+ },
240
+ "times_read": {
241
+ "type": "number",
242
+ "description": "Veces leído"
243
+ },
244
+ "type": {
245
+ "type": "string",
246
+ "const": "[[Fuentes]]"
247
+ },
248
+ "format": {
249
+ "type": "string",
250
+ "const": "[[Libros]]"
251
+ },
252
+ "areas": {
253
+ "type": "array",
254
+ "items": {
255
+ "type": "string",
256
+ "const": "[[Knowledge]]"
257
+ }
258
+ },
259
+ "color": {
260
+ "type": "string",
261
+ "const": "#3171B2"
262
+ },
263
+ "icon": {
264
+ "type": "string",
265
+ "const": "book"
266
+ },
267
+ "cover": {
268
+ "type": "string"
269
+ },
270
+ "url": {
271
+ "type": "string",
272
+ "description": "URL del libro en Amazon o similar"
273
+ },
274
+ "read_url": {
275
+ "type": "string",
276
+ "description": "URL de la lectura del libro"
277
+ }
278
+ },
279
+ "required": [
280
+ "title",
281
+ "author",
282
+ "published",
283
+ "categories",
284
+ "status",
285
+ "topics",
286
+ "rating",
287
+ "online_rating",
288
+ "last_time_read",
289
+ "times_read",
290
+ "type",
291
+ "format",
292
+ "areas",
293
+ "color",
294
+ "icon",
295
+ "url",
296
+ "read_url"
297
+ ],
298
+ "additionalProperties": false,
299
+ "description": "Libro"
300
+ },
301
+ {
302
+ "type": "object",
303
+ "properties": {
304
+ "name": {
305
+ "type": "string",
306
+ "description": "Nombre descriptivo de la prenda de ropa"
307
+ },
308
+ "garment": {
309
+ "type": "string",
310
+ "enum": [
311
+ "Camisetas Interiores",
312
+ "Calzoncillos",
313
+ "Bragas",
314
+ "Sujetadores",
315
+ "Calcetines",
316
+ "Camisetas",
317
+ "Polos",
318
+ "Camisas",
319
+ "Blusas",
320
+ "Tops",
321
+ "Jerseys",
322
+ "Sudaderas",
323
+ "Cárdigans",
324
+ "Chaquetas",
325
+ "Pantalones",
326
+ "Vaqueros",
327
+ "Chinos",
328
+ "Faldas",
329
+ "Shorts",
330
+ "Americanas",
331
+ "Abrigos",
332
+ "Gabardinas",
333
+ "Parkas",
334
+ "Cazadoras",
335
+ "Chalecos",
336
+ "Mallas",
337
+ "Ropa Técnica",
338
+ "Shorts Deportivos",
339
+ "Camisetas Técnicas",
340
+ "Vestidos",
341
+ "Monos",
342
+ "Zapatillas",
343
+ "Zapatos",
344
+ "Botas",
345
+ "Sandalias",
346
+ "Cinturones",
347
+ "Gorras",
348
+ "Sombreros",
349
+ "Bufandas",
350
+ "Guantes",
351
+ "Bolsos",
352
+ "Mochilas",
353
+ "Gafas de Sol",
354
+ "Pañuelos",
355
+ "Relojes",
356
+ "Joyas",
357
+ "Pijamas",
358
+ "Batas",
359
+ "Bañadores",
360
+ "Bikinis"
361
+ ],
362
+ "description": "Tipo de Prenda"
363
+ },
364
+ "slot": {
365
+ "type": "string",
366
+ "enum": [
367
+ "Superior",
368
+ "Inferior",
369
+ "Cuerpo Completo",
370
+ "Exterior",
371
+ "Calzado",
372
+ "Accesorios"
373
+ ],
374
+ "description": "Parte del outfit"
375
+ },
376
+ "variants": {
377
+ "description": "Detalles Estructurales",
378
+ "type": "array",
379
+ "items": {
380
+ "type": "string",
381
+ "enum": [
382
+ "Sin Mangas",
383
+ "Mangas Cortas",
384
+ "Mangas Largas",
385
+ "Cuello Redondo",
386
+ "Cuello Pico",
387
+ "Cuello Alto",
388
+ "Cuello Camisa",
389
+ "Cuello Polo",
390
+ "Cuello Panadero",
391
+ "Cuello Mao",
392
+ "Cuello Chimenea",
393
+ "Capucha",
394
+ "Overshirt",
395
+ "Cropped",
396
+ "Larga",
397
+ "Pierna Recta",
398
+ "Pitillo",
399
+ "Ancha",
400
+ "Cargo",
401
+ "Acampanado",
402
+ "Trench",
403
+ "Plumífero",
404
+ "Doble botonadura",
405
+ "Botones",
406
+ "Cremallera",
407
+ "Velcro",
408
+ "Cordones",
409
+ "Broches",
410
+ "Bolsillos",
411
+ "Sin Bolsillos",
412
+ "Reversible"
413
+ ]
414
+ }
415
+ },
416
+ "fit": {
417
+ "description": "Ajuste",
418
+ "type": "string",
419
+ "enum": [
420
+ "Entallado",
421
+ "Ajustado",
422
+ "Regular",
423
+ "Relajado",
424
+ "Holgado",
425
+ "Extragrande"
426
+ ]
427
+ },
428
+ "primary_color": {
429
+ "type": "string",
430
+ "enum": [
431
+ "Blanco",
432
+ "Negro",
433
+ "Gris",
434
+ "Beige",
435
+ "Marrón",
436
+ "Azul",
437
+ "Verde",
438
+ "Rojo",
439
+ "Burdeos",
440
+ "Rosa",
441
+ "Amarillo",
442
+ "Naranja",
443
+ "Morado",
444
+ "Camel",
445
+ "Caqui",
446
+ "Marino",
447
+ "Crema",
448
+ "Oro",
449
+ "Plata",
450
+ "Bronce"
451
+ ],
452
+ "description": "Color principal"
453
+ },
454
+ "secondary_color": {
455
+ "description": "Color secundario",
456
+ "type": "string",
457
+ "enum": [
458
+ "Blanco",
459
+ "Negro",
460
+ "Gris",
461
+ "Beige",
462
+ "Marrón",
463
+ "Azul",
464
+ "Verde",
465
+ "Rojo",
466
+ "Burdeos",
467
+ "Rosa",
468
+ "Amarillo",
469
+ "Naranja",
470
+ "Morado",
471
+ "Camel",
472
+ "Caqui",
473
+ "Marino",
474
+ "Crema",
475
+ "Oro",
476
+ "Plata",
477
+ "Bronce"
478
+ ]
479
+ },
480
+ "pattern": {
481
+ "description": "Estampado",
482
+ "type": "string",
483
+ "enum": [
484
+ "Liso",
485
+ "Rayas",
486
+ "Cuadros",
487
+ "Lunares",
488
+ "Animal Print",
489
+ "Floral",
490
+ "Geométrico",
491
+ "Camuflaje",
492
+ "EstampadoGráfico",
493
+ "Degradado"
494
+ ]
495
+ },
496
+ "materials": {
497
+ "description": "Materiales",
498
+ "type": "array",
499
+ "items": {
500
+ "type": "string",
501
+ "enum": [
502
+ "Algodón",
503
+ "Lino",
504
+ "Lana",
505
+ "Seda",
506
+ "Cuero",
507
+ "Cachemir",
508
+ "Ante",
509
+ "Poliéster",
510
+ "Nylon",
511
+ "Elastano",
512
+ "Viscosa",
513
+ "Piel Sintética",
514
+ "Gore-Tex",
515
+ "Denim",
516
+ "Punto",
517
+ "Felpa",
518
+ "Tweed",
519
+ "Satén",
520
+ "Terciopelo",
521
+ "Jacquard",
522
+ "Franela",
523
+ "Gabardina"
524
+ ]
525
+ }
526
+ },
527
+ "layer": {
528
+ "type": "string",
529
+ "enum": [
530
+ "Base",
531
+ "Intermedia",
532
+ "Exterior"
533
+ ],
534
+ "description": "Capa Térmica"
535
+ },
536
+ "season": {
537
+ "description": "Estaciones",
538
+ "type": "string",
539
+ "enum": [
540
+ "Invierno",
541
+ "Verano",
542
+ "Entretiempo",
543
+ "Todo el año"
544
+ ]
545
+ },
546
+ "use_case": {
547
+ "description": "Casos de uso",
548
+ "type": "array",
549
+ "items": {
550
+ "type": "string",
551
+ "enum": [
552
+ "Capsula",
553
+ "Favorita",
554
+ "Básico",
555
+ "Deporte",
556
+ "Trabajo",
557
+ "Evento",
558
+ "Viaje",
559
+ "Casa",
560
+ "Fiesta",
561
+ "Playa",
562
+ "Lluvia",
563
+ "Frío Extremo"
564
+ ]
565
+ }
566
+ },
567
+ "formality": {
568
+ "description": "Formalidad",
569
+ "type": "string",
570
+ "enum": [
571
+ "Muy Informal",
572
+ "Casual",
573
+ "Arreglado",
574
+ "Formal",
575
+ "Etiqueta"
576
+ ]
577
+ },
578
+ "brand": {
579
+ "description": "The brand of the clothing",
580
+ "type": "string"
581
+ },
582
+ "cares": {
583
+ "description": "Cuidados",
584
+ "type": "array",
585
+ "items": {
586
+ "type": "string",
587
+ "enum": [
588
+ "Lavado a mano",
589
+ "Lavado a máquina",
590
+ "Lavado en seco",
591
+ "Frio",
592
+ "Caliente",
593
+ "Planchado",
594
+ "Planchado a vapor"
595
+ ]
596
+ }
597
+ },
598
+ "status": {
599
+ "default": "Bien",
600
+ "description": "Estado",
601
+ "type": "string",
602
+ "enum": [
603
+ "Nuevo",
604
+ "Bien",
605
+ "Gastado",
606
+ "Dañado",
607
+ "Retirar"
608
+ ]
609
+ },
610
+ "size": {
611
+ "type": "string",
612
+ "enum": [
613
+ "28",
614
+ "30",
615
+ "32",
616
+ "34",
617
+ "36",
618
+ "37",
619
+ "38",
620
+ "39",
621
+ "40",
622
+ "41",
623
+ "42",
624
+ "43",
625
+ "44",
626
+ "45",
627
+ "46",
628
+ "48",
629
+ "XS",
630
+ "S",
631
+ "M",
632
+ "L",
633
+ "XL",
634
+ "XXL",
635
+ "XXXL"
636
+ ]
637
+ },
638
+ "measurements": {
639
+ "description": "Medidas",
640
+ "type": "array",
641
+ "items": {
642
+ "type": "number"
643
+ }
644
+ },
645
+ "type": {
646
+ "type": "string",
647
+ "const": "[[Recursos]]"
648
+ },
649
+ "subtype": {
650
+ "type": "string",
651
+ "const": "[[Prendas]]"
652
+ },
653
+ "areas": {
654
+ "type": "array",
655
+ "items": {
656
+ "type": "string",
657
+ "const": "[[Hogar]]"
658
+ }
659
+ },
660
+ "color": {
661
+ "type": "string",
662
+ "const": "#CB6120"
663
+ },
664
+ "icon": {
665
+ "type": "string",
666
+ "const": "shirt"
667
+ },
668
+ "cover": {
669
+ "type": "string"
670
+ }
671
+ },
672
+ "required": [
673
+ "name",
674
+ "garment",
675
+ "slot",
676
+ "primary_color",
677
+ "layer",
678
+ "status",
679
+ "size",
680
+ "type",
681
+ "subtype",
682
+ "areas",
683
+ "color",
684
+ "icon"
685
+ ],
686
+ "additionalProperties": false,
687
+ "description": "Prenda de ropa"
688
+ },
689
+ {
690
+ "type": "object",
691
+ "properties": {
692
+ "title": {
693
+ "type": "string",
694
+ "description": "Título de la película"
695
+ },
696
+ "description": {
697
+ "type": "string",
698
+ "description": "Descripción de la película"
699
+ },
700
+ "author": {
701
+ "type": "array",
702
+ "items": {
703
+ "type": "string"
704
+ },
705
+ "description": "Autores. Guionistas, directores, productores, etc."
706
+ },
707
+ "actors": {
708
+ "type": "array",
709
+ "items": {
710
+ "type": "string"
711
+ },
712
+ "description": "Actores"
713
+ },
714
+ "published": {
715
+ "type": "string",
716
+ "description": "Año de publicación"
717
+ },
718
+ "genres": {
719
+ "type": "array",
720
+ "items": {
721
+ "type": "string"
722
+ },
723
+ "description": "Géneros"
724
+ },
725
+ "status": {
726
+ "type": "string",
727
+ "enum": [
728
+ "Pendiente",
729
+ "En progreso",
730
+ "Completado"
731
+ ],
732
+ "description": "Estado de visualización"
733
+ },
734
+ "topics": {
735
+ "type": "array",
736
+ "items": {
737
+ "type": "string"
738
+ },
739
+ "description": "Temas"
740
+ },
741
+ "rating": {
742
+ "type": "number",
743
+ "description": "Puntuación de la película"
744
+ },
745
+ "online_rating": {
746
+ "type": "number",
747
+ "description": "Puntuación en línea"
748
+ },
749
+ "last_time_watched": {
750
+ "type": "string",
751
+ "description": "Última vez vista"
752
+ },
753
+ "times_watched": {
754
+ "type": "number",
755
+ "description": "Veces vista"
756
+ },
757
+ "type": {
758
+ "type": "string",
759
+ "const": "[[Fuentes]]"
760
+ },
761
+ "format": {
762
+ "type": "string",
763
+ "const": "[[Películas]]"
764
+ },
765
+ "areas": {
766
+ "type": "array",
767
+ "items": {
768
+ "type": "string",
769
+ "const": "[[Creatividad]]"
770
+ }
771
+ },
772
+ "color": {
773
+ "type": "string",
774
+ "const": "#BE9207"
775
+ },
776
+ "icon": {
777
+ "type": "string",
778
+ "const": "movie"
779
+ },
780
+ "cover": {
781
+ "type": "string"
782
+ },
783
+ "url": {
784
+ "type": "string",
785
+ "description": "URL de la película en IMDB o similar"
786
+ },
787
+ "watch_url": {
788
+ "type": "string",
789
+ "description": "URL de la película en streaming"
790
+ }
791
+ },
792
+ "required": [
793
+ "title",
794
+ "description",
795
+ "author",
796
+ "actors",
797
+ "published",
798
+ "genres",
799
+ "status",
800
+ "topics",
801
+ "rating",
802
+ "online_rating",
803
+ "last_time_watched",
804
+ "times_watched",
805
+ "type",
806
+ "format",
807
+ "areas",
808
+ "color",
809
+ "icon",
810
+ "url",
811
+ "watch_url"
812
+ ],
813
+ "additionalProperties": false,
814
+ "description": "Película"
815
+ }
816
+ ],
817
+ "description": "Nota: Unión de todos los tipos de notas"
818
+ },
819
+ "ArticleSchema": {
820
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
821
+ "type": "object",
822
+ "properties": {
823
+ "title": {
824
+ "type": "string",
825
+ "description": "Título del artículo"
826
+ },
827
+ "description": {
828
+ "description": "Descripción",
829
+ "type": "string"
830
+ },
831
+ "excerpt": {
832
+ "description": "Extracto del artículo",
833
+ "type": "string"
834
+ },
835
+ "author": {
836
+ "type": "array",
837
+ "items": {
838
+ "type": "string"
839
+ },
840
+ "description": "Autores"
841
+ },
842
+ "published": {
843
+ "description": "Año de publicación",
844
+ "type": "string"
845
+ },
846
+ "status": {
847
+ "type": "string",
848
+ "enum": [
849
+ "Pendiente",
850
+ "En Proceso",
851
+ "Leído",
852
+ "Consolidado"
853
+ ],
854
+ "description": "Estado de lectura"
855
+ },
856
+ "projects": {
857
+ "type": "array",
858
+ "items": {
859
+ "type": "string"
860
+ },
861
+ "description": "Proyectos"
862
+ },
863
+ "topics": {
864
+ "type": "array",
865
+ "items": {
866
+ "type": "string"
867
+ },
868
+ "description": "Temas"
869
+ },
870
+ "rating": {
871
+ "type": "number",
872
+ "description": "Puntuación del artículo"
873
+ },
874
+ "type": {
875
+ "type": "string",
876
+ "const": "[[Fuentes]]"
877
+ },
878
+ "format": {
879
+ "type": "string",
880
+ "const": "[[Artículos]]"
881
+ },
882
+ "areas": {
883
+ "type": "array",
884
+ "items": {
885
+ "type": "string",
886
+ "const": "[[Conocimiento]]"
887
+ }
888
+ },
889
+ "color": {
890
+ "type": "string",
891
+ "const": "#3171B2"
892
+ },
893
+ "icon": {
894
+ "type": "string",
895
+ "const": "newspaper"
896
+ },
897
+ "banner": {
898
+ "type": "string"
899
+ },
900
+ "url": {
901
+ "type": "string",
902
+ "description": "URL del artículo"
903
+ }
904
+ },
905
+ "required": [
906
+ "title",
907
+ "author",
908
+ "status",
909
+ "projects",
910
+ "topics",
911
+ "rating",
912
+ "type",
913
+ "format",
914
+ "areas",
915
+ "color",
916
+ "icon",
917
+ "url"
918
+ ],
919
+ "additionalProperties": false,
920
+ "description": "Artículo"
921
+ },
922
+ "BookSchema": {
923
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
924
+ "type": "object",
925
+ "properties": {
926
+ "title": {
927
+ "type": "string",
928
+ "description": "Título del libro"
929
+ },
930
+ "subtitle": {
931
+ "description": "Subtítulo del libro",
932
+ "type": "string"
933
+ },
934
+ "description": {
935
+ "description": "Descripción del libro",
936
+ "type": "string"
937
+ },
938
+ "author": {
939
+ "type": "array",
940
+ "items": {
941
+ "type": "string"
942
+ },
943
+ "description": "Autores"
944
+ },
945
+ "published": {
946
+ "type": "string",
947
+ "description": "Año de publicación"
948
+ },
949
+ "categories": {
950
+ "type": "array",
951
+ "items": {
952
+ "type": "string"
953
+ },
954
+ "description": "Géneros"
955
+ },
956
+ "status": {
957
+ "type": "string",
958
+ "enum": [
959
+ "Pendiente",
960
+ "En Proceso",
961
+ "Leído",
962
+ "Consolidado"
963
+ ],
964
+ "description": "Estado de lectura"
965
+ },
966
+ "topics": {
967
+ "type": "array",
968
+ "items": {
969
+ "type": "string"
970
+ },
971
+ "description": "Temas"
972
+ },
973
+ "rating": {
974
+ "type": "number",
975
+ "description": "Puntuación del libro"
976
+ },
977
+ "online_rating": {
978
+ "type": "number",
979
+ "description": "Puntuación en línea"
980
+ },
981
+ "last_time_read": {
982
+ "type": "string",
983
+ "description": "Última vez leído"
984
+ },
985
+ "times_read": {
986
+ "type": "number",
987
+ "description": "Veces leído"
988
+ },
989
+ "type": {
990
+ "type": "string",
991
+ "const": "[[Fuentes]]"
992
+ },
993
+ "format": {
994
+ "type": "string",
995
+ "const": "[[Libros]]"
996
+ },
997
+ "areas": {
998
+ "type": "array",
999
+ "items": {
1000
+ "type": "string",
1001
+ "const": "[[Knowledge]]"
1002
+ }
1003
+ },
1004
+ "color": {
1005
+ "type": "string",
1006
+ "const": "#3171B2"
1007
+ },
1008
+ "icon": {
1009
+ "type": "string",
1010
+ "const": "book"
1011
+ },
1012
+ "cover": {
1013
+ "type": "string"
1014
+ },
1015
+ "url": {
1016
+ "type": "string",
1017
+ "description": "URL del libro en Amazon o similar"
1018
+ },
1019
+ "read_url": {
1020
+ "type": "string",
1021
+ "description": "URL de la lectura del libro"
1022
+ }
1023
+ },
1024
+ "required": [
1025
+ "title",
1026
+ "author",
1027
+ "published",
1028
+ "categories",
1029
+ "status",
1030
+ "topics",
1031
+ "rating",
1032
+ "online_rating",
1033
+ "last_time_read",
1034
+ "times_read",
1035
+ "type",
1036
+ "format",
1037
+ "areas",
1038
+ "color",
1039
+ "icon",
1040
+ "url",
1041
+ "read_url"
1042
+ ],
1043
+ "additionalProperties": false,
1044
+ "description": "Libro"
1045
+ },
1046
+ "CatalogArticleSchema": {
1047
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1048
+ "type": "object",
1049
+ "properties": {
1050
+ "title": {
1051
+ "type": "string",
1052
+ "description": "Título del artículo"
1053
+ },
1054
+ "description": {
1055
+ "description": "Descripción",
1056
+ "type": "string"
1057
+ },
1058
+ "excerpt": {
1059
+ "description": "Extracto del artículo",
1060
+ "type": "string"
1061
+ },
1062
+ "author": {
1063
+ "type": "array",
1064
+ "items": {
1065
+ "type": "string"
1066
+ },
1067
+ "description": "Autores"
1068
+ },
1069
+ "published": {
1070
+ "description": "Año de publicación",
1071
+ "type": "string"
1072
+ }
1073
+ },
1074
+ "required": [
1075
+ "title",
1076
+ "author"
1077
+ ],
1078
+ "additionalProperties": false,
1079
+ "description": "Artículo: Datos obtenibles de catalogación"
1080
+ },
1081
+ "CatalogBookSchema": {
1082
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1083
+ "type": "object",
1084
+ "properties": {
1085
+ "title": {
1086
+ "type": "string",
1087
+ "description": "Título del libro"
1088
+ },
1089
+ "subtitle": {
1090
+ "description": "Subtítulo del libro",
1091
+ "type": "string"
1092
+ },
1093
+ "description": {
1094
+ "description": "Descripción del libro",
1095
+ "type": "string"
1096
+ },
1097
+ "author": {
1098
+ "type": "array",
1099
+ "items": {
1100
+ "type": "string"
1101
+ },
1102
+ "description": "Autores"
1103
+ },
1104
+ "published": {
1105
+ "type": "string",
1106
+ "description": "Año de publicación"
1107
+ },
1108
+ "categories": {
1109
+ "type": "array",
1110
+ "items": {
1111
+ "type": "string"
1112
+ },
1113
+ "description": "Géneros"
1114
+ }
1115
+ },
1116
+ "required": [
1117
+ "title",
1118
+ "author",
1119
+ "published",
1120
+ "categories"
1121
+ ],
1122
+ "additionalProperties": false,
1123
+ "description": "Libro: Datos obtenibles de catalogación"
1124
+ },
6
1125
  "CatalogClothingSchema": {
7
1126
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8
1127
  "type": "object",
@@ -296,6 +1415,55 @@
296
1415
  "additionalProperties": false,
297
1416
  "description": "Prenda de ropa: Datos obtenibles de catalogación"
298
1417
  },
1418
+ "CatalogMovieSchema": {
1419
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1420
+ "type": "object",
1421
+ "properties": {
1422
+ "title": {
1423
+ "type": "string",
1424
+ "description": "Título de la película"
1425
+ },
1426
+ "description": {
1427
+ "type": "string",
1428
+ "description": "Descripción de la película"
1429
+ },
1430
+ "author": {
1431
+ "type": "array",
1432
+ "items": {
1433
+ "type": "string"
1434
+ },
1435
+ "description": "Autores. Guionistas, directores, productores, etc."
1436
+ },
1437
+ "actors": {
1438
+ "type": "array",
1439
+ "items": {
1440
+ "type": "string"
1441
+ },
1442
+ "description": "Actores"
1443
+ },
1444
+ "published": {
1445
+ "type": "string",
1446
+ "description": "Año de publicación"
1447
+ },
1448
+ "genres": {
1449
+ "type": "array",
1450
+ "items": {
1451
+ "type": "string"
1452
+ },
1453
+ "description": "Géneros"
1454
+ }
1455
+ },
1456
+ "required": [
1457
+ "title",
1458
+ "description",
1459
+ "author",
1460
+ "actors",
1461
+ "published",
1462
+ "genres"
1463
+ ],
1464
+ "additionalProperties": false,
1465
+ "description": "Película: Datos obtenibles de catalogación"
1466
+ },
299
1467
  "ClothingSchema": {
300
1468
  "$schema": "https://json-schema.org/draft/2020-12/schema",
301
1469
  "type": "object",
@@ -685,6 +1853,97 @@
685
1853
  "additionalProperties": false,
686
1854
  "description": "Prenda de ropa"
687
1855
  },
1856
+ "DetailedArticleSchema": {
1857
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1858
+ "type": "object",
1859
+ "properties": {
1860
+ "status": {
1861
+ "type": "string",
1862
+ "enum": [
1863
+ "Pendiente",
1864
+ "En Proceso",
1865
+ "Leído",
1866
+ "Consolidado"
1867
+ ],
1868
+ "description": "Estado de lectura"
1869
+ },
1870
+ "projects": {
1871
+ "type": "array",
1872
+ "items": {
1873
+ "type": "string"
1874
+ },
1875
+ "description": "Proyectos"
1876
+ },
1877
+ "topics": {
1878
+ "type": "array",
1879
+ "items": {
1880
+ "type": "string"
1881
+ },
1882
+ "description": "Temas"
1883
+ },
1884
+ "rating": {
1885
+ "type": "number",
1886
+ "description": "Puntuación del artículo"
1887
+ }
1888
+ },
1889
+ "required": [
1890
+ "status",
1891
+ "projects",
1892
+ "topics",
1893
+ "rating"
1894
+ ],
1895
+ "additionalProperties": false,
1896
+ "description": "Artículo: Datos adicionales"
1897
+ },
1898
+ "DetailedBookSchema": {
1899
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1900
+ "type": "object",
1901
+ "properties": {
1902
+ "status": {
1903
+ "type": "string",
1904
+ "enum": [
1905
+ "Pendiente",
1906
+ "En Proceso",
1907
+ "Leído",
1908
+ "Consolidado"
1909
+ ],
1910
+ "description": "Estado de lectura"
1911
+ },
1912
+ "topics": {
1913
+ "type": "array",
1914
+ "items": {
1915
+ "type": "string"
1916
+ },
1917
+ "description": "Temas"
1918
+ },
1919
+ "rating": {
1920
+ "type": "number",
1921
+ "description": "Puntuación del libro"
1922
+ },
1923
+ "online_rating": {
1924
+ "type": "number",
1925
+ "description": "Puntuación en línea"
1926
+ },
1927
+ "last_time_read": {
1928
+ "type": "string",
1929
+ "description": "Última vez leído"
1930
+ },
1931
+ "times_read": {
1932
+ "type": "number",
1933
+ "description": "Veces leído"
1934
+ }
1935
+ },
1936
+ "required": [
1937
+ "status",
1938
+ "topics",
1939
+ "rating",
1940
+ "online_rating",
1941
+ "last_time_read",
1942
+ "times_read"
1943
+ ],
1944
+ "additionalProperties": false,
1945
+ "description": "Libro: Datos adicionales"
1946
+ },
688
1947
  "DetailedClothingSchema": {
689
1948
  "$schema": "https://json-schema.org/draft/2020-12/schema",
690
1949
  "type": "object",
@@ -758,7 +2017,152 @@
758
2017
  "size"
759
2018
  ],
760
2019
  "additionalProperties": false,
761
- "description": "Prenda de ropa: Datos adicionales de dificil obtención"
2020
+ "description": "Prenda de ropa: Datos adicionales"
2021
+ },
2022
+ "DetailedMovieSchema": {
2023
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2024
+ "type": "object",
2025
+ "properties": {
2026
+ "status": {
2027
+ "type": "string",
2028
+ "enum": [
2029
+ "Pendiente",
2030
+ "En progreso",
2031
+ "Completado"
2032
+ ],
2033
+ "description": "Estado de visualización"
2034
+ },
2035
+ "topics": {
2036
+ "type": "array",
2037
+ "items": {
2038
+ "type": "string"
2039
+ },
2040
+ "description": "Temas"
2041
+ },
2042
+ "rating": {
2043
+ "type": "number",
2044
+ "description": "Puntuación de la película"
2045
+ },
2046
+ "online_rating": {
2047
+ "type": "number",
2048
+ "description": "Puntuación en línea"
2049
+ },
2050
+ "last_time_watched": {
2051
+ "type": "string",
2052
+ "description": "Última vez vista"
2053
+ },
2054
+ "times_watched": {
2055
+ "type": "number",
2056
+ "description": "Veces vista"
2057
+ }
2058
+ },
2059
+ "required": [
2060
+ "status",
2061
+ "topics",
2062
+ "rating",
2063
+ "online_rating",
2064
+ "last_time_watched",
2065
+ "times_watched"
2066
+ ],
2067
+ "additionalProperties": false,
2068
+ "description": "Película: Datos adicionales"
2069
+ },
2070
+ "MetaArticleSchema": {
2071
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2072
+ "type": "object",
2073
+ "properties": {
2074
+ "type": {
2075
+ "type": "string",
2076
+ "const": "[[Fuentes]]"
2077
+ },
2078
+ "format": {
2079
+ "type": "string",
2080
+ "const": "[[Artículos]]"
2081
+ },
2082
+ "areas": {
2083
+ "type": "array",
2084
+ "items": {
2085
+ "type": "string",
2086
+ "const": "[[Conocimiento]]"
2087
+ }
2088
+ },
2089
+ "color": {
2090
+ "type": "string",
2091
+ "const": "#3171B2"
2092
+ },
2093
+ "icon": {
2094
+ "type": "string",
2095
+ "const": "newspaper"
2096
+ },
2097
+ "banner": {
2098
+ "type": "string"
2099
+ },
2100
+ "url": {
2101
+ "type": "string",
2102
+ "description": "URL del artículo"
2103
+ }
2104
+ },
2105
+ "required": [
2106
+ "type",
2107
+ "format",
2108
+ "areas",
2109
+ "color",
2110
+ "icon",
2111
+ "url"
2112
+ ],
2113
+ "additionalProperties": false,
2114
+ "description": "Artículo: Metadatos de Nota"
2115
+ },
2116
+ "MetaBookSchema": {
2117
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2118
+ "type": "object",
2119
+ "properties": {
2120
+ "type": {
2121
+ "type": "string",
2122
+ "const": "[[Fuentes]]"
2123
+ },
2124
+ "format": {
2125
+ "type": "string",
2126
+ "const": "[[Libros]]"
2127
+ },
2128
+ "areas": {
2129
+ "type": "array",
2130
+ "items": {
2131
+ "type": "string",
2132
+ "const": "[[Knowledge]]"
2133
+ }
2134
+ },
2135
+ "color": {
2136
+ "type": "string",
2137
+ "const": "#3171B2"
2138
+ },
2139
+ "icon": {
2140
+ "type": "string",
2141
+ "const": "book"
2142
+ },
2143
+ "cover": {
2144
+ "type": "string"
2145
+ },
2146
+ "url": {
2147
+ "type": "string",
2148
+ "description": "URL del libro en Amazon o similar"
2149
+ },
2150
+ "read_url": {
2151
+ "type": "string",
2152
+ "description": "URL de la lectura del libro"
2153
+ }
2154
+ },
2155
+ "required": [
2156
+ "type",
2157
+ "format",
2158
+ "areas",
2159
+ "color",
2160
+ "icon",
2161
+ "url",
2162
+ "read_url"
2163
+ ],
2164
+ "additionalProperties": false,
2165
+ "description": "Libro: Metadatos de Nota"
762
2166
  },
763
2167
  "MetaClothingSchema": {
764
2168
  "$schema": "https://json-schema.org/draft/2020-12/schema",
@@ -800,6 +2204,185 @@
800
2204
  ],
801
2205
  "additionalProperties": false,
802
2206
  "description": "Prenda de ropa: Metadatos de Nota"
2207
+ },
2208
+ "MetaMovieSchema": {
2209
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2210
+ "type": "object",
2211
+ "properties": {
2212
+ "type": {
2213
+ "type": "string",
2214
+ "const": "[[Fuentes]]"
2215
+ },
2216
+ "format": {
2217
+ "type": "string",
2218
+ "const": "[[Películas]]"
2219
+ },
2220
+ "areas": {
2221
+ "type": "array",
2222
+ "items": {
2223
+ "type": "string",
2224
+ "const": "[[Creatividad]]"
2225
+ }
2226
+ },
2227
+ "color": {
2228
+ "type": "string",
2229
+ "const": "#BE9207"
2230
+ },
2231
+ "icon": {
2232
+ "type": "string",
2233
+ "const": "movie"
2234
+ },
2235
+ "cover": {
2236
+ "type": "string"
2237
+ },
2238
+ "url": {
2239
+ "type": "string",
2240
+ "description": "URL de la película en IMDB o similar"
2241
+ },
2242
+ "watch_url": {
2243
+ "type": "string",
2244
+ "description": "URL de la película en streaming"
2245
+ }
2246
+ },
2247
+ "required": [
2248
+ "type",
2249
+ "format",
2250
+ "areas",
2251
+ "color",
2252
+ "icon",
2253
+ "url",
2254
+ "watch_url"
2255
+ ],
2256
+ "additionalProperties": false,
2257
+ "description": "Película: Metadatos de Nota"
2258
+ },
2259
+ "MovieSchema": {
2260
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2261
+ "type": "object",
2262
+ "properties": {
2263
+ "title": {
2264
+ "type": "string",
2265
+ "description": "Título de la película"
2266
+ },
2267
+ "description": {
2268
+ "type": "string",
2269
+ "description": "Descripción de la película"
2270
+ },
2271
+ "author": {
2272
+ "type": "array",
2273
+ "items": {
2274
+ "type": "string"
2275
+ },
2276
+ "description": "Autores. Guionistas, directores, productores, etc."
2277
+ },
2278
+ "actors": {
2279
+ "type": "array",
2280
+ "items": {
2281
+ "type": "string"
2282
+ },
2283
+ "description": "Actores"
2284
+ },
2285
+ "published": {
2286
+ "type": "string",
2287
+ "description": "Año de publicación"
2288
+ },
2289
+ "genres": {
2290
+ "type": "array",
2291
+ "items": {
2292
+ "type": "string"
2293
+ },
2294
+ "description": "Géneros"
2295
+ },
2296
+ "status": {
2297
+ "type": "string",
2298
+ "enum": [
2299
+ "Pendiente",
2300
+ "En progreso",
2301
+ "Completado"
2302
+ ],
2303
+ "description": "Estado de visualización"
2304
+ },
2305
+ "topics": {
2306
+ "type": "array",
2307
+ "items": {
2308
+ "type": "string"
2309
+ },
2310
+ "description": "Temas"
2311
+ },
2312
+ "rating": {
2313
+ "type": "number",
2314
+ "description": "Puntuación de la película"
2315
+ },
2316
+ "online_rating": {
2317
+ "type": "number",
2318
+ "description": "Puntuación en línea"
2319
+ },
2320
+ "last_time_watched": {
2321
+ "type": "string",
2322
+ "description": "Última vez vista"
2323
+ },
2324
+ "times_watched": {
2325
+ "type": "number",
2326
+ "description": "Veces vista"
2327
+ },
2328
+ "type": {
2329
+ "type": "string",
2330
+ "const": "[[Fuentes]]"
2331
+ },
2332
+ "format": {
2333
+ "type": "string",
2334
+ "const": "[[Películas]]"
2335
+ },
2336
+ "areas": {
2337
+ "type": "array",
2338
+ "items": {
2339
+ "type": "string",
2340
+ "const": "[[Creatividad]]"
2341
+ }
2342
+ },
2343
+ "color": {
2344
+ "type": "string",
2345
+ "const": "#BE9207"
2346
+ },
2347
+ "icon": {
2348
+ "type": "string",
2349
+ "const": "movie"
2350
+ },
2351
+ "cover": {
2352
+ "type": "string"
2353
+ },
2354
+ "url": {
2355
+ "type": "string",
2356
+ "description": "URL de la película en IMDB o similar"
2357
+ },
2358
+ "watch_url": {
2359
+ "type": "string",
2360
+ "description": "URL de la película en streaming"
2361
+ }
2362
+ },
2363
+ "required": [
2364
+ "title",
2365
+ "description",
2366
+ "author",
2367
+ "actors",
2368
+ "published",
2369
+ "genres",
2370
+ "status",
2371
+ "topics",
2372
+ "rating",
2373
+ "online_rating",
2374
+ "last_time_watched",
2375
+ "times_watched",
2376
+ "type",
2377
+ "format",
2378
+ "areas",
2379
+ "color",
2380
+ "icon",
2381
+ "url",
2382
+ "watch_url"
2383
+ ],
2384
+ "additionalProperties": false,
2385
+ "description": "Película"
803
2386
  }
804
2387
  }
805
2388
  }