@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
@@ -3,6 +3,3348 @@
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
+ "Icon": {
74
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
75
+ "type": "string",
76
+ "enum": [
77
+ "a-arrow-down",
78
+ "a-arrow-up",
79
+ "a-large-small",
80
+ "accessibility",
81
+ "activity",
82
+ "air-vent",
83
+ "airplay",
84
+ "alarm-clock-check",
85
+ "alarm-clock-minus",
86
+ "alarm-clock-off",
87
+ "alarm-clock-plus",
88
+ "alarm-clock",
89
+ "alarm-smoke",
90
+ "album",
91
+ "align-center-horizontal",
92
+ "align-center-vertical",
93
+ "align-end-horizontal",
94
+ "align-end-vertical",
95
+ "align-horizontal-distribute-center",
96
+ "align-horizontal-distribute-end",
97
+ "align-horizontal-distribute-start",
98
+ "align-horizontal-justify-center",
99
+ "align-horizontal-justify-end",
100
+ "align-horizontal-justify-start",
101
+ "align-horizontal-space-around",
102
+ "align-horizontal-space-between",
103
+ "align-start-horizontal",
104
+ "align-start-vertical",
105
+ "align-vertical-distribute-center",
106
+ "align-vertical-distribute-end",
107
+ "align-vertical-distribute-start",
108
+ "align-vertical-justify-center",
109
+ "align-vertical-justify-end",
110
+ "align-vertical-justify-start",
111
+ "align-vertical-space-around",
112
+ "align-vertical-space-between",
113
+ "ambulance",
114
+ "ampersand",
115
+ "ampersands",
116
+ "amphora",
117
+ "anchor",
118
+ "angry",
119
+ "annoyed",
120
+ "antenna",
121
+ "anvil",
122
+ "aperture",
123
+ "app-window-mac",
124
+ "app-window",
125
+ "apple",
126
+ "archive-restore",
127
+ "archive-x",
128
+ "archive",
129
+ "armchair",
130
+ "arrow-big-down-dash",
131
+ "arrow-big-down",
132
+ "arrow-big-left-dash",
133
+ "arrow-big-left",
134
+ "arrow-big-right-dash",
135
+ "arrow-big-right",
136
+ "arrow-big-up-dash",
137
+ "arrow-big-up",
138
+ "arrow-down-0-1",
139
+ "arrow-down-1-0",
140
+ "arrow-down-a-z",
141
+ "arrow-down-from-line",
142
+ "arrow-down-left",
143
+ "arrow-down-narrow-wide",
144
+ "arrow-down-right",
145
+ "arrow-down-to-dot",
146
+ "arrow-down-to-line",
147
+ "arrow-down-up",
148
+ "arrow-down-wide-narrow",
149
+ "arrow-down-z-a",
150
+ "arrow-down",
151
+ "arrow-left-from-line",
152
+ "arrow-left-right",
153
+ "arrow-left-to-line",
154
+ "arrow-left",
155
+ "arrow-right-from-line",
156
+ "arrow-right-left",
157
+ "arrow-right-to-line",
158
+ "arrow-right",
159
+ "arrow-up-0-1",
160
+ "arrow-up-1-0",
161
+ "arrow-up-a-z",
162
+ "arrow-up-down",
163
+ "arrow-up-from-dot",
164
+ "arrow-up-from-line",
165
+ "arrow-up-left",
166
+ "arrow-up-narrow-wide",
167
+ "arrow-up-right",
168
+ "arrow-up-to-line",
169
+ "arrow-up-wide-narrow",
170
+ "arrow-up-z-a",
171
+ "arrow-up",
172
+ "arrows-up-from-line",
173
+ "asterisk",
174
+ "at-sign",
175
+ "atom",
176
+ "audio-lines",
177
+ "audio-waveform",
178
+ "award",
179
+ "axe",
180
+ "axis-3d",
181
+ "baby",
182
+ "backpack",
183
+ "badge-alert",
184
+ "badge-cent",
185
+ "badge-check",
186
+ "badge-dollar-sign",
187
+ "badge-euro",
188
+ "badge-indian-rupee",
189
+ "badge-info",
190
+ "badge-japanese-yen",
191
+ "badge-minus",
192
+ "badge-percent",
193
+ "badge-plus",
194
+ "badge-pound-sterling",
195
+ "badge-question-mark",
196
+ "badge-russian-ruble",
197
+ "badge-swiss-franc",
198
+ "badge-turkish-lira",
199
+ "badge-x",
200
+ "badge",
201
+ "baggage-claim",
202
+ "balloon",
203
+ "ban",
204
+ "banana",
205
+ "bandage",
206
+ "banknote-arrow-down",
207
+ "banknote-arrow-up",
208
+ "banknote-x",
209
+ "banknote",
210
+ "barcode",
211
+ "barrel",
212
+ "baseline",
213
+ "bath",
214
+ "battery-charging",
215
+ "battery-full",
216
+ "battery-low",
217
+ "battery-medium",
218
+ "battery-plus",
219
+ "battery-warning",
220
+ "battery",
221
+ "beaker",
222
+ "bean-off",
223
+ "bean",
224
+ "bed-double",
225
+ "bed-single",
226
+ "bed",
227
+ "beef",
228
+ "beer-off",
229
+ "beer",
230
+ "bell-dot",
231
+ "bell-electric",
232
+ "bell-minus",
233
+ "bell-off",
234
+ "bell-plus",
235
+ "bell-ring",
236
+ "bell",
237
+ "between-horizontal-end",
238
+ "between-horizontal-start",
239
+ "between-vertical-end",
240
+ "between-vertical-start",
241
+ "biceps-flexed",
242
+ "bike",
243
+ "binary",
244
+ "binoculars",
245
+ "biohazard",
246
+ "bird",
247
+ "birdhouse",
248
+ "bitcoin",
249
+ "blend",
250
+ "blinds",
251
+ "blocks",
252
+ "bluetooth-connected",
253
+ "bluetooth-off",
254
+ "bluetooth-searching",
255
+ "bluetooth",
256
+ "bold",
257
+ "bolt",
258
+ "bomb",
259
+ "bone",
260
+ "book-a",
261
+ "book-alert",
262
+ "book-audio",
263
+ "book-check",
264
+ "book-copy",
265
+ "book-dashed",
266
+ "book-down",
267
+ "book-headphones",
268
+ "book-heart",
269
+ "book-image",
270
+ "book-key",
271
+ "book-lock",
272
+ "book-marked",
273
+ "book-minus",
274
+ "book-open-check",
275
+ "book-open-text",
276
+ "book-open",
277
+ "book-plus",
278
+ "book-search",
279
+ "book-text",
280
+ "book-type",
281
+ "book-up-2",
282
+ "book-up",
283
+ "book-user",
284
+ "book-x",
285
+ "book",
286
+ "bookmark-check",
287
+ "bookmark-minus",
288
+ "bookmark-plus",
289
+ "bookmark-x",
290
+ "bookmark",
291
+ "boom-box",
292
+ "bot-message-square",
293
+ "bot-off",
294
+ "bot",
295
+ "bottle-wine",
296
+ "bow-arrow",
297
+ "box",
298
+ "boxes",
299
+ "braces",
300
+ "brackets",
301
+ "brain-circuit",
302
+ "brain-cog",
303
+ "brain",
304
+ "brick-wall-fire",
305
+ "brick-wall-shield",
306
+ "brick-wall",
307
+ "briefcase-business",
308
+ "briefcase-conveyor-belt",
309
+ "briefcase-medical",
310
+ "briefcase",
311
+ "bring-to-front",
312
+ "brush-cleaning",
313
+ "brush",
314
+ "bubbles",
315
+ "bug-off",
316
+ "bug-play",
317
+ "bug",
318
+ "building-2",
319
+ "building",
320
+ "bus-front",
321
+ "bus",
322
+ "cable-car",
323
+ "cable",
324
+ "cake-slice",
325
+ "cake",
326
+ "calculator",
327
+ "calendar-1",
328
+ "calendar-arrow-down",
329
+ "calendar-arrow-up",
330
+ "calendar-check-2",
331
+ "calendar-check",
332
+ "calendar-clock",
333
+ "calendar-cog",
334
+ "calendar-days",
335
+ "calendar-fold",
336
+ "calendar-heart",
337
+ "calendar-minus-2",
338
+ "calendar-minus",
339
+ "calendar-off",
340
+ "calendar-plus-2",
341
+ "calendar-plus",
342
+ "calendar-range",
343
+ "calendar-search",
344
+ "calendar-sync",
345
+ "calendar-x-2",
346
+ "calendar-x",
347
+ "calendar",
348
+ "calendars",
349
+ "camera-off",
350
+ "camera",
351
+ "candy-cane",
352
+ "candy-off",
353
+ "candy",
354
+ "cannabis-off",
355
+ "cannabis",
356
+ "captions-off",
357
+ "captions",
358
+ "car-front",
359
+ "car-taxi-front",
360
+ "car",
361
+ "caravan",
362
+ "card-sim",
363
+ "carrot",
364
+ "case-lower",
365
+ "case-sensitive",
366
+ "case-upper",
367
+ "cassette-tape",
368
+ "cast",
369
+ "castle",
370
+ "cat",
371
+ "cctv",
372
+ "chart-area",
373
+ "chart-bar-big",
374
+ "chart-bar-decreasing",
375
+ "chart-bar-increasing",
376
+ "chart-bar-stacked",
377
+ "chart-bar",
378
+ "chart-candlestick",
379
+ "chart-column-big",
380
+ "chart-column-decreasing",
381
+ "chart-column-increasing",
382
+ "chart-column-stacked",
383
+ "chart-column",
384
+ "chart-gantt",
385
+ "chart-line",
386
+ "chart-network",
387
+ "chart-no-axes-column-decreasing",
388
+ "chart-no-axes-column-increasing",
389
+ "chart-no-axes-column",
390
+ "chart-no-axes-combined",
391
+ "chart-no-axes-gantt",
392
+ "chart-pie",
393
+ "chart-scatter",
394
+ "chart-spline",
395
+ "check-check",
396
+ "check-line",
397
+ "check",
398
+ "chef-hat",
399
+ "cherry",
400
+ "chess-bishop",
401
+ "chess-king",
402
+ "chess-knight",
403
+ "chess-pawn",
404
+ "chess-queen",
405
+ "chess-rook",
406
+ "chevron-down",
407
+ "chevron-first",
408
+ "chevron-last",
409
+ "chevron-left",
410
+ "chevron-right",
411
+ "chevron-up",
412
+ "chevrons-down-up",
413
+ "chevrons-down",
414
+ "chevrons-left-right-ellipsis",
415
+ "chevrons-left-right",
416
+ "chevrons-left",
417
+ "chevrons-right-left",
418
+ "chevrons-right",
419
+ "chevrons-up-down",
420
+ "chevrons-up",
421
+ "chromium",
422
+ "church",
423
+ "cigarette-off",
424
+ "cigarette",
425
+ "circle-alert",
426
+ "circle-arrow-down",
427
+ "circle-arrow-left",
428
+ "circle-arrow-out-down-left",
429
+ "circle-arrow-out-down-right",
430
+ "circle-arrow-out-up-left",
431
+ "circle-arrow-out-up-right",
432
+ "circle-arrow-right",
433
+ "circle-arrow-up",
434
+ "circle-check-big",
435
+ "circle-check",
436
+ "circle-chevron-down",
437
+ "circle-chevron-left",
438
+ "circle-chevron-right",
439
+ "circle-chevron-up",
440
+ "circle-dashed",
441
+ "circle-divide",
442
+ "circle-dollar-sign",
443
+ "circle-dot-dashed",
444
+ "circle-dot",
445
+ "circle-ellipsis",
446
+ "circle-equal",
447
+ "circle-fading-arrow-up",
448
+ "circle-fading-plus",
449
+ "circle-gauge",
450
+ "circle-minus",
451
+ "circle-off",
452
+ "circle-parking-off",
453
+ "circle-parking",
454
+ "circle-pause",
455
+ "circle-percent",
456
+ "circle-pile",
457
+ "circle-play",
458
+ "circle-plus",
459
+ "circle-pound-sterling",
460
+ "circle-power",
461
+ "circle-question-mark",
462
+ "circle-slash-2",
463
+ "circle-slash",
464
+ "circle-small",
465
+ "circle-star",
466
+ "circle-stop",
467
+ "circle-user-round",
468
+ "circle-user",
469
+ "circle-x",
470
+ "circle",
471
+ "circuit-board",
472
+ "citrus",
473
+ "clapperboard",
474
+ "clipboard-check",
475
+ "clipboard-clock",
476
+ "clipboard-copy",
477
+ "clipboard-list",
478
+ "clipboard-minus",
479
+ "clipboard-paste",
480
+ "clipboard-pen-line",
481
+ "clipboard-pen",
482
+ "clipboard-plus",
483
+ "clipboard-type",
484
+ "clipboard-x",
485
+ "clipboard",
486
+ "clock-1",
487
+ "clock-10",
488
+ "clock-11",
489
+ "clock-12",
490
+ "clock-2",
491
+ "clock-3",
492
+ "clock-4",
493
+ "clock-5",
494
+ "clock-6",
495
+ "clock-7",
496
+ "clock-8",
497
+ "clock-9",
498
+ "clock-alert",
499
+ "clock-arrow-down",
500
+ "clock-arrow-up",
501
+ "clock-check",
502
+ "clock-fading",
503
+ "clock-plus",
504
+ "clock",
505
+ "closed-caption",
506
+ "cloud-alert",
507
+ "cloud-backup",
508
+ "cloud-check",
509
+ "cloud-cog",
510
+ "cloud-download",
511
+ "cloud-drizzle",
512
+ "cloud-fog",
513
+ "cloud-hail",
514
+ "cloud-lightning",
515
+ "cloud-moon-rain",
516
+ "cloud-moon",
517
+ "cloud-off",
518
+ "cloud-rain-wind",
519
+ "cloud-rain",
520
+ "cloud-snow",
521
+ "cloud-sun-rain",
522
+ "cloud-sun",
523
+ "cloud-sync",
524
+ "cloud-upload",
525
+ "cloud",
526
+ "cloudy",
527
+ "clover",
528
+ "club",
529
+ "code-xml",
530
+ "code",
531
+ "codepen",
532
+ "codesandbox",
533
+ "coffee",
534
+ "cog",
535
+ "coins",
536
+ "columns-2",
537
+ "columns-3-cog",
538
+ "columns-3",
539
+ "columns-4",
540
+ "combine",
541
+ "command",
542
+ "compass",
543
+ "component",
544
+ "computer",
545
+ "concierge-bell",
546
+ "cone",
547
+ "construction",
548
+ "contact-round",
549
+ "contact",
550
+ "container",
551
+ "contrast",
552
+ "cookie",
553
+ "cooking-pot",
554
+ "copy-check",
555
+ "copy-minus",
556
+ "copy-plus",
557
+ "copy-slash",
558
+ "copy-x",
559
+ "copy",
560
+ "copyleft",
561
+ "copyright",
562
+ "corner-down-left",
563
+ "corner-down-right",
564
+ "corner-left-down",
565
+ "corner-left-up",
566
+ "corner-right-down",
567
+ "corner-right-up",
568
+ "corner-up-left",
569
+ "corner-up-right",
570
+ "cpu",
571
+ "creative-commons",
572
+ "credit-card",
573
+ "croissant",
574
+ "crop",
575
+ "cross",
576
+ "crosshair",
577
+ "crown",
578
+ "cuboid",
579
+ "cup-soda",
580
+ "currency",
581
+ "cylinder",
582
+ "dam",
583
+ "database-backup",
584
+ "database-zap",
585
+ "database",
586
+ "decimals-arrow-left",
587
+ "decimals-arrow-right",
588
+ "delete",
589
+ "dessert",
590
+ "diameter",
591
+ "diamond-minus",
592
+ "diamond-percent",
593
+ "diamond-plus",
594
+ "diamond",
595
+ "dice-1",
596
+ "dice-2",
597
+ "dice-3",
598
+ "dice-4",
599
+ "dice-5",
600
+ "dice-6",
601
+ "dices",
602
+ "diff",
603
+ "disc-2",
604
+ "disc-3",
605
+ "disc-album",
606
+ "disc",
607
+ "divide",
608
+ "dna-off",
609
+ "dna",
610
+ "dock",
611
+ "dog",
612
+ "dollar-sign",
613
+ "donut",
614
+ "door-closed-locked",
615
+ "door-closed",
616
+ "door-open",
617
+ "dot",
618
+ "download",
619
+ "drafting-compass",
620
+ "drama",
621
+ "dribbble",
622
+ "drill",
623
+ "drone",
624
+ "droplet-off",
625
+ "droplet",
626
+ "droplets",
627
+ "drum",
628
+ "drumstick",
629
+ "dumbbell",
630
+ "ear-off",
631
+ "ear",
632
+ "earth-lock",
633
+ "earth",
634
+ "eclipse",
635
+ "egg-fried",
636
+ "egg-off",
637
+ "egg",
638
+ "ellipsis-vertical",
639
+ "ellipsis",
640
+ "equal-approximately",
641
+ "equal-not",
642
+ "equal",
643
+ "eraser",
644
+ "ethernet-port",
645
+ "euro",
646
+ "ev-charger",
647
+ "expand",
648
+ "external-link",
649
+ "eye-closed",
650
+ "eye-off",
651
+ "eye",
652
+ "facebook",
653
+ "factory",
654
+ "fan",
655
+ "fast-forward",
656
+ "feather",
657
+ "fence",
658
+ "ferris-wheel",
659
+ "figma",
660
+ "file-archive",
661
+ "file-axis-3d",
662
+ "file-badge",
663
+ "file-box",
664
+ "file-braces-corner",
665
+ "file-braces",
666
+ "file-chart-column-increasing",
667
+ "file-chart-column",
668
+ "file-chart-line",
669
+ "file-chart-pie",
670
+ "file-check-corner",
671
+ "file-check",
672
+ "file-clock",
673
+ "file-code-corner",
674
+ "file-code",
675
+ "file-cog",
676
+ "file-diff",
677
+ "file-digit",
678
+ "file-down",
679
+ "file-exclamation-point",
680
+ "file-headphone",
681
+ "file-heart",
682
+ "file-image",
683
+ "file-input",
684
+ "file-key",
685
+ "file-lock",
686
+ "file-minus-corner",
687
+ "file-minus",
688
+ "file-music",
689
+ "file-output",
690
+ "file-pen-line",
691
+ "file-pen",
692
+ "file-play",
693
+ "file-plus-corner",
694
+ "file-plus",
695
+ "file-question-mark",
696
+ "file-scan",
697
+ "file-search-corner",
698
+ "file-search",
699
+ "file-signal",
700
+ "file-sliders",
701
+ "file-spreadsheet",
702
+ "file-stack",
703
+ "file-symlink",
704
+ "file-terminal",
705
+ "file-text",
706
+ "file-type-corner",
707
+ "file-type",
708
+ "file-up",
709
+ "file-user",
710
+ "file-video-camera",
711
+ "file-volume",
712
+ "file-x-corner",
713
+ "file-x",
714
+ "file",
715
+ "files",
716
+ "film",
717
+ "fingerprint-pattern",
718
+ "fire-extinguisher",
719
+ "fish-off",
720
+ "fish-symbol",
721
+ "fish",
722
+ "fishing-hook",
723
+ "flag-off",
724
+ "flag-triangle-left",
725
+ "flag-triangle-right",
726
+ "flag",
727
+ "flame-kindling",
728
+ "flame",
729
+ "flashlight-off",
730
+ "flashlight",
731
+ "flask-conical-off",
732
+ "flask-conical",
733
+ "flask-round",
734
+ "flip-horizontal-2",
735
+ "flip-horizontal",
736
+ "flip-vertical-2",
737
+ "flip-vertical",
738
+ "flower-2",
739
+ "flower",
740
+ "focus",
741
+ "fold-horizontal",
742
+ "fold-vertical",
743
+ "folder-archive",
744
+ "folder-check",
745
+ "folder-clock",
746
+ "folder-closed",
747
+ "folder-code",
748
+ "folder-cog",
749
+ "folder-dot",
750
+ "folder-down",
751
+ "folder-git-2",
752
+ "folder-git",
753
+ "folder-heart",
754
+ "folder-input",
755
+ "folder-kanban",
756
+ "folder-key",
757
+ "folder-lock",
758
+ "folder-minus",
759
+ "folder-open-dot",
760
+ "folder-open",
761
+ "folder-output",
762
+ "folder-pen",
763
+ "folder-plus",
764
+ "folder-root",
765
+ "folder-search-2",
766
+ "folder-search",
767
+ "folder-symlink",
768
+ "folder-sync",
769
+ "folder-tree",
770
+ "folder-up",
771
+ "folder-x",
772
+ "folder",
773
+ "folders",
774
+ "footprints",
775
+ "forklift",
776
+ "form",
777
+ "forward",
778
+ "frame",
779
+ "framer",
780
+ "frown",
781
+ "fuel",
782
+ "fullscreen",
783
+ "funnel-plus",
784
+ "funnel-x",
785
+ "funnel",
786
+ "gallery-horizontal-end",
787
+ "gallery-horizontal",
788
+ "gallery-thumbnails",
789
+ "gallery-vertical-end",
790
+ "gallery-vertical",
791
+ "gamepad-2",
792
+ "gamepad-directional",
793
+ "gamepad",
794
+ "gauge",
795
+ "gavel",
796
+ "gem",
797
+ "georgian-lari",
798
+ "ghost",
799
+ "gift",
800
+ "git-branch-minus",
801
+ "git-branch-plus",
802
+ "git-branch",
803
+ "git-commit-horizontal",
804
+ "git-commit-vertical",
805
+ "git-compare-arrows",
806
+ "git-compare",
807
+ "git-fork",
808
+ "git-graph",
809
+ "git-merge",
810
+ "git-pull-request-arrow",
811
+ "git-pull-request-closed",
812
+ "git-pull-request-create-arrow",
813
+ "git-pull-request-create",
814
+ "git-pull-request-draft",
815
+ "git-pull-request",
816
+ "github",
817
+ "gitlab",
818
+ "glass-water",
819
+ "glasses",
820
+ "globe-lock",
821
+ "globe-x",
822
+ "globe",
823
+ "goal",
824
+ "gpu",
825
+ "graduation-cap",
826
+ "grape",
827
+ "grid-2x2-check",
828
+ "grid-2x2-plus",
829
+ "grid-2x2-x",
830
+ "grid-2x2",
831
+ "grid-3x2",
832
+ "grid-3x3",
833
+ "grip-horizontal",
834
+ "grip-vertical",
835
+ "grip",
836
+ "group",
837
+ "guitar",
838
+ "ham",
839
+ "hamburger",
840
+ "hammer",
841
+ "hand-coins",
842
+ "hand-fist",
843
+ "hand-grab",
844
+ "hand-heart",
845
+ "hand-helping",
846
+ "hand-metal",
847
+ "hand-platter",
848
+ "hand",
849
+ "handbag",
850
+ "handshake",
851
+ "hard-drive-download",
852
+ "hard-drive-upload",
853
+ "hard-drive",
854
+ "hard-hat",
855
+ "hash",
856
+ "hat-glasses",
857
+ "haze",
858
+ "hd",
859
+ "hdmi-port",
860
+ "heading-1",
861
+ "heading-2",
862
+ "heading-3",
863
+ "heading-4",
864
+ "heading-5",
865
+ "heading-6",
866
+ "heading",
867
+ "headphone-off",
868
+ "headphones",
869
+ "headset",
870
+ "heart-crack",
871
+ "heart-handshake",
872
+ "heart-minus",
873
+ "heart-off",
874
+ "heart-plus",
875
+ "heart-pulse",
876
+ "heart",
877
+ "heater",
878
+ "helicopter",
879
+ "hexagon",
880
+ "highlighter",
881
+ "history",
882
+ "hop-off",
883
+ "hop",
884
+ "hospital",
885
+ "hotel",
886
+ "hourglass",
887
+ "house-heart",
888
+ "house-plug",
889
+ "house-plus",
890
+ "house-wifi",
891
+ "house",
892
+ "ice-cream-bowl",
893
+ "ice-cream-cone",
894
+ "id-card-lanyard",
895
+ "id-card",
896
+ "image-down",
897
+ "image-minus",
898
+ "image-off",
899
+ "image-play",
900
+ "image-plus",
901
+ "image-up",
902
+ "image-upscale",
903
+ "image",
904
+ "images",
905
+ "import",
906
+ "inbox",
907
+ "indian-rupee",
908
+ "infinity",
909
+ "info",
910
+ "inspection-panel",
911
+ "instagram",
912
+ "italic",
913
+ "iteration-ccw",
914
+ "iteration-cw",
915
+ "japanese-yen",
916
+ "joystick",
917
+ "kanban",
918
+ "kayak",
919
+ "key-round",
920
+ "key-square",
921
+ "key",
922
+ "keyboard-music",
923
+ "keyboard-off",
924
+ "keyboard",
925
+ "lamp-ceiling",
926
+ "lamp-desk",
927
+ "lamp-floor",
928
+ "lamp-wall-down",
929
+ "lamp-wall-up",
930
+ "lamp",
931
+ "land-plot",
932
+ "landmark",
933
+ "languages",
934
+ "laptop-minimal-check",
935
+ "laptop-minimal",
936
+ "laptop",
937
+ "lasso-select",
938
+ "lasso",
939
+ "laugh",
940
+ "layers-2",
941
+ "layers-plus",
942
+ "layers",
943
+ "layout-dashboard",
944
+ "layout-grid",
945
+ "layout-list",
946
+ "layout-panel-left",
947
+ "layout-panel-top",
948
+ "layout-template",
949
+ "leaf",
950
+ "leafy-green",
951
+ "lectern",
952
+ "library-big",
953
+ "library",
954
+ "life-buoy",
955
+ "ligature",
956
+ "lightbulb-off",
957
+ "lightbulb",
958
+ "line-squiggle",
959
+ "link-2-off",
960
+ "link-2",
961
+ "link",
962
+ "linkedin",
963
+ "list-check",
964
+ "list-checks",
965
+ "list-chevrons-down-up",
966
+ "list-chevrons-up-down",
967
+ "list-collapse",
968
+ "list-end",
969
+ "list-filter-plus",
970
+ "list-filter",
971
+ "list-indent-decrease",
972
+ "list-indent-increase",
973
+ "list-minus",
974
+ "list-music",
975
+ "list-ordered",
976
+ "list-plus",
977
+ "list-restart",
978
+ "list-start",
979
+ "list-todo",
980
+ "list-tree",
981
+ "list-video",
982
+ "list-x",
983
+ "list",
984
+ "loader-circle",
985
+ "loader-pinwheel",
986
+ "loader",
987
+ "locate-fixed",
988
+ "locate-off",
989
+ "locate",
990
+ "lock-keyhole-open",
991
+ "lock-keyhole",
992
+ "lock-open",
993
+ "lock",
994
+ "log-in",
995
+ "log-out",
996
+ "logs",
997
+ "lollipop",
998
+ "luggage",
999
+ "magnet",
1000
+ "mail-check",
1001
+ "mail-minus",
1002
+ "mail-open",
1003
+ "mail-plus",
1004
+ "mail-question-mark",
1005
+ "mail-search",
1006
+ "mail-warning",
1007
+ "mail-x",
1008
+ "mail",
1009
+ "mailbox",
1010
+ "mails",
1011
+ "map-minus",
1012
+ "map-pin-check-inside",
1013
+ "map-pin-check",
1014
+ "map-pin-house",
1015
+ "map-pin-minus-inside",
1016
+ "map-pin-minus",
1017
+ "map-pin-off",
1018
+ "map-pin-pen",
1019
+ "map-pin-plus-inside",
1020
+ "map-pin-plus",
1021
+ "map-pin-x-inside",
1022
+ "map-pin-x",
1023
+ "map-pin",
1024
+ "map-pinned",
1025
+ "map-plus",
1026
+ "map",
1027
+ "mars-stroke",
1028
+ "mars",
1029
+ "martini",
1030
+ "maximize-2",
1031
+ "maximize",
1032
+ "medal",
1033
+ "megaphone-off",
1034
+ "megaphone",
1035
+ "meh",
1036
+ "memory-stick",
1037
+ "menu",
1038
+ "merge",
1039
+ "message-circle-code",
1040
+ "message-circle-dashed",
1041
+ "message-circle-heart",
1042
+ "message-circle-more",
1043
+ "message-circle-off",
1044
+ "message-circle-plus",
1045
+ "message-circle-question-mark",
1046
+ "message-circle-reply",
1047
+ "message-circle-warning",
1048
+ "message-circle-x",
1049
+ "message-circle",
1050
+ "message-square-code",
1051
+ "message-square-dashed",
1052
+ "message-square-diff",
1053
+ "message-square-dot",
1054
+ "message-square-heart",
1055
+ "message-square-lock",
1056
+ "message-square-more",
1057
+ "message-square-off",
1058
+ "message-square-plus",
1059
+ "message-square-quote",
1060
+ "message-square-reply",
1061
+ "message-square-share",
1062
+ "message-square-text",
1063
+ "message-square-warning",
1064
+ "message-square-x",
1065
+ "message-square",
1066
+ "messages-square",
1067
+ "mic-off",
1068
+ "mic-vocal",
1069
+ "mic",
1070
+ "microchip",
1071
+ "microscope",
1072
+ "microwave",
1073
+ "milestone",
1074
+ "milk-off",
1075
+ "milk",
1076
+ "minimize-2",
1077
+ "minimize",
1078
+ "minus",
1079
+ "monitor-check",
1080
+ "monitor-cloud",
1081
+ "monitor-cog",
1082
+ "monitor-dot",
1083
+ "monitor-down",
1084
+ "monitor-off",
1085
+ "monitor-pause",
1086
+ "monitor-play",
1087
+ "monitor-smartphone",
1088
+ "monitor-speaker",
1089
+ "monitor-stop",
1090
+ "monitor-up",
1091
+ "monitor-x",
1092
+ "monitor",
1093
+ "moon-star",
1094
+ "moon",
1095
+ "motorbike",
1096
+ "mountain-snow",
1097
+ "mountain",
1098
+ "mouse-off",
1099
+ "mouse-pointer-2-off",
1100
+ "mouse-pointer-2",
1101
+ "mouse-pointer-ban",
1102
+ "mouse-pointer-click",
1103
+ "mouse-pointer",
1104
+ "mouse",
1105
+ "move-3d",
1106
+ "move-diagonal-2",
1107
+ "move-diagonal",
1108
+ "move-down-left",
1109
+ "move-down-right",
1110
+ "move-down",
1111
+ "move-horizontal",
1112
+ "move-left",
1113
+ "move-right",
1114
+ "move-up-left",
1115
+ "move-up-right",
1116
+ "move-up",
1117
+ "move-vertical",
1118
+ "move",
1119
+ "music-2",
1120
+ "music-3",
1121
+ "music-4",
1122
+ "music",
1123
+ "navigation-2-off",
1124
+ "navigation-2",
1125
+ "navigation-off",
1126
+ "navigation",
1127
+ "network",
1128
+ "newspaper",
1129
+ "nfc",
1130
+ "non-binary",
1131
+ "notebook-pen",
1132
+ "notebook-tabs",
1133
+ "notebook-text",
1134
+ "notebook",
1135
+ "notepad-text-dashed",
1136
+ "notepad-text",
1137
+ "nut-off",
1138
+ "nut",
1139
+ "octagon-alert",
1140
+ "octagon-minus",
1141
+ "octagon-pause",
1142
+ "octagon-x",
1143
+ "octagon",
1144
+ "omega",
1145
+ "option",
1146
+ "orbit",
1147
+ "origami",
1148
+ "package-2",
1149
+ "package-check",
1150
+ "package-minus",
1151
+ "package-open",
1152
+ "package-plus",
1153
+ "package-search",
1154
+ "package-x",
1155
+ "package",
1156
+ "paint-bucket",
1157
+ "paint-roller",
1158
+ "paintbrush-vertical",
1159
+ "paintbrush",
1160
+ "palette",
1161
+ "panda",
1162
+ "panel-bottom-close",
1163
+ "panel-bottom-dashed",
1164
+ "panel-bottom-open",
1165
+ "panel-bottom",
1166
+ "panel-left-close",
1167
+ "panel-left-dashed",
1168
+ "panel-left-open",
1169
+ "panel-left-right-dashed",
1170
+ "panel-left",
1171
+ "panel-right-close",
1172
+ "panel-right-dashed",
1173
+ "panel-right-open",
1174
+ "panel-right",
1175
+ "panel-top-bottom-dashed",
1176
+ "panel-top-close",
1177
+ "panel-top-dashed",
1178
+ "panel-top-open",
1179
+ "panel-top",
1180
+ "panels-left-bottom",
1181
+ "panels-right-bottom",
1182
+ "panels-top-left",
1183
+ "paperclip",
1184
+ "parentheses",
1185
+ "parking-meter",
1186
+ "party-popper",
1187
+ "pause",
1188
+ "paw-print",
1189
+ "pc-case",
1190
+ "pen-line",
1191
+ "pen-off",
1192
+ "pen-tool",
1193
+ "pen",
1194
+ "pencil-line",
1195
+ "pencil-off",
1196
+ "pencil-ruler",
1197
+ "pencil",
1198
+ "pentagon",
1199
+ "percent",
1200
+ "person-standing",
1201
+ "philippine-peso",
1202
+ "phone-call",
1203
+ "phone-forwarded",
1204
+ "phone-incoming",
1205
+ "phone-missed",
1206
+ "phone-off",
1207
+ "phone-outgoing",
1208
+ "phone",
1209
+ "pi",
1210
+ "piano",
1211
+ "pickaxe",
1212
+ "picture-in-picture-2",
1213
+ "picture-in-picture",
1214
+ "piggy-bank",
1215
+ "pilcrow-left",
1216
+ "pilcrow-right",
1217
+ "pilcrow",
1218
+ "pill-bottle",
1219
+ "pill",
1220
+ "pin-off",
1221
+ "pin",
1222
+ "pipette",
1223
+ "pizza",
1224
+ "plane-landing",
1225
+ "plane-takeoff",
1226
+ "plane",
1227
+ "play",
1228
+ "plug-2",
1229
+ "plug-zap",
1230
+ "plug",
1231
+ "plus",
1232
+ "pocket-knife",
1233
+ "pocket",
1234
+ "podcast",
1235
+ "pointer-off",
1236
+ "pointer",
1237
+ "popcorn",
1238
+ "popsicle",
1239
+ "pound-sterling",
1240
+ "power-off",
1241
+ "power",
1242
+ "presentation",
1243
+ "printer-check",
1244
+ "printer-x",
1245
+ "printer",
1246
+ "projector",
1247
+ "proportions",
1248
+ "puzzle",
1249
+ "pyramid",
1250
+ "qr-code",
1251
+ "quote",
1252
+ "rabbit",
1253
+ "radar",
1254
+ "radiation",
1255
+ "radical",
1256
+ "radio-receiver",
1257
+ "radio-tower",
1258
+ "radio",
1259
+ "radius",
1260
+ "rail-symbol",
1261
+ "rainbow",
1262
+ "rat",
1263
+ "ratio",
1264
+ "receipt-cent",
1265
+ "receipt-euro",
1266
+ "receipt-indian-rupee",
1267
+ "receipt-japanese-yen",
1268
+ "receipt-pound-sterling",
1269
+ "receipt-russian-ruble",
1270
+ "receipt-swiss-franc",
1271
+ "receipt-text",
1272
+ "receipt-turkish-lira",
1273
+ "receipt",
1274
+ "rectangle-circle",
1275
+ "rectangle-ellipsis",
1276
+ "rectangle-goggles",
1277
+ "rectangle-horizontal",
1278
+ "rectangle-vertical",
1279
+ "recycle",
1280
+ "redo-2",
1281
+ "redo-dot",
1282
+ "redo",
1283
+ "refresh-ccw-dot",
1284
+ "refresh-ccw",
1285
+ "refresh-cw-off",
1286
+ "refresh-cw",
1287
+ "refrigerator",
1288
+ "regex",
1289
+ "remove-formatting",
1290
+ "repeat-1",
1291
+ "repeat-2",
1292
+ "repeat",
1293
+ "replace-all",
1294
+ "replace",
1295
+ "reply-all",
1296
+ "reply",
1297
+ "rewind",
1298
+ "ribbon",
1299
+ "rocket",
1300
+ "rocking-chair",
1301
+ "roller-coaster",
1302
+ "rose",
1303
+ "rotate-3d",
1304
+ "rotate-ccw-key",
1305
+ "rotate-ccw-square",
1306
+ "rotate-ccw",
1307
+ "rotate-cw-square",
1308
+ "rotate-cw",
1309
+ "route-off",
1310
+ "route",
1311
+ "router",
1312
+ "rows-2",
1313
+ "rows-3",
1314
+ "rows-4",
1315
+ "rss",
1316
+ "ruler-dimension-line",
1317
+ "ruler",
1318
+ "russian-ruble",
1319
+ "sailboat",
1320
+ "salad",
1321
+ "sandwich",
1322
+ "satellite-dish",
1323
+ "satellite",
1324
+ "saudi-riyal",
1325
+ "save-all",
1326
+ "save-off",
1327
+ "save",
1328
+ "scale-3d",
1329
+ "scale",
1330
+ "scaling",
1331
+ "scan-barcode",
1332
+ "scan-eye",
1333
+ "scan-face",
1334
+ "scan-heart",
1335
+ "scan-line",
1336
+ "scan-qr-code",
1337
+ "scan-search",
1338
+ "scan-text",
1339
+ "scan",
1340
+ "school",
1341
+ "scissors-line-dashed",
1342
+ "scissors",
1343
+ "scooter",
1344
+ "screen-share-off",
1345
+ "screen-share",
1346
+ "scroll-text",
1347
+ "scroll",
1348
+ "search-alert",
1349
+ "search-check",
1350
+ "search-code",
1351
+ "search-slash",
1352
+ "search-x",
1353
+ "search",
1354
+ "section",
1355
+ "send-horizontal",
1356
+ "send-to-back",
1357
+ "send",
1358
+ "separator-horizontal",
1359
+ "separator-vertical",
1360
+ "server-cog",
1361
+ "server-crash",
1362
+ "server-off",
1363
+ "server",
1364
+ "settings-2",
1365
+ "settings",
1366
+ "shapes",
1367
+ "share-2",
1368
+ "share",
1369
+ "sheet",
1370
+ "shell",
1371
+ "shield-alert",
1372
+ "shield-ban",
1373
+ "shield-check",
1374
+ "shield-ellipsis",
1375
+ "shield-half",
1376
+ "shield-minus",
1377
+ "shield-off",
1378
+ "shield-plus",
1379
+ "shield-question-mark",
1380
+ "shield-user",
1381
+ "shield-x",
1382
+ "shield",
1383
+ "ship-wheel",
1384
+ "ship",
1385
+ "shirt",
1386
+ "shopping-bag",
1387
+ "shopping-basket",
1388
+ "shopping-cart",
1389
+ "shovel",
1390
+ "shower-head",
1391
+ "shredder",
1392
+ "shrimp",
1393
+ "shrink",
1394
+ "shrub",
1395
+ "shuffle",
1396
+ "sigma",
1397
+ "signal-high",
1398
+ "signal-low",
1399
+ "signal-medium",
1400
+ "signal-zero",
1401
+ "signal",
1402
+ "signature",
1403
+ "signpost-big",
1404
+ "signpost",
1405
+ "siren",
1406
+ "skip-back",
1407
+ "skip-forward",
1408
+ "skull",
1409
+ "slack",
1410
+ "slash",
1411
+ "slice",
1412
+ "sliders-horizontal",
1413
+ "sliders-vertical",
1414
+ "smartphone-charging",
1415
+ "smartphone-nfc",
1416
+ "smartphone",
1417
+ "smile-plus",
1418
+ "smile",
1419
+ "snail",
1420
+ "snowflake",
1421
+ "soap-dispenser-droplet",
1422
+ "sofa",
1423
+ "solar-panel",
1424
+ "soup",
1425
+ "space",
1426
+ "spade",
1427
+ "sparkle",
1428
+ "sparkles",
1429
+ "speaker",
1430
+ "speech",
1431
+ "spell-check-2",
1432
+ "spell-check",
1433
+ "spline-pointer",
1434
+ "spline",
1435
+ "split",
1436
+ "spool",
1437
+ "spotlight",
1438
+ "spray-can",
1439
+ "sprout",
1440
+ "square-activity",
1441
+ "square-arrow-down-left",
1442
+ "square-arrow-down-right",
1443
+ "square-arrow-down",
1444
+ "square-arrow-left",
1445
+ "square-arrow-out-down-left",
1446
+ "square-arrow-out-down-right",
1447
+ "square-arrow-out-up-left",
1448
+ "square-arrow-out-up-right",
1449
+ "square-arrow-right",
1450
+ "square-arrow-up-left",
1451
+ "square-arrow-up-right",
1452
+ "square-arrow-up",
1453
+ "square-asterisk",
1454
+ "square-bottom-dashed-scissors",
1455
+ "square-chart-gantt",
1456
+ "square-check-big",
1457
+ "square-check",
1458
+ "square-chevron-down",
1459
+ "square-chevron-left",
1460
+ "square-chevron-right",
1461
+ "square-chevron-up",
1462
+ "square-code",
1463
+ "square-dashed-bottom-code",
1464
+ "square-dashed-bottom",
1465
+ "square-dashed-kanban",
1466
+ "square-dashed-mouse-pointer",
1467
+ "square-dashed-top-solid",
1468
+ "square-dashed",
1469
+ "square-divide",
1470
+ "square-dot",
1471
+ "square-equal",
1472
+ "square-function",
1473
+ "square-kanban",
1474
+ "square-library",
1475
+ "square-m",
1476
+ "square-menu",
1477
+ "square-minus",
1478
+ "square-mouse-pointer",
1479
+ "square-parking-off",
1480
+ "square-parking",
1481
+ "square-pause",
1482
+ "square-pen",
1483
+ "square-percent",
1484
+ "square-pi",
1485
+ "square-pilcrow",
1486
+ "square-play",
1487
+ "square-plus",
1488
+ "square-power",
1489
+ "square-radical",
1490
+ "square-round-corner",
1491
+ "square-scissors",
1492
+ "square-sigma",
1493
+ "square-slash",
1494
+ "square-split-horizontal",
1495
+ "square-split-vertical",
1496
+ "square-square",
1497
+ "square-stack",
1498
+ "square-star",
1499
+ "square-stop",
1500
+ "square-terminal",
1501
+ "square-user-round",
1502
+ "square-user",
1503
+ "square-x",
1504
+ "square",
1505
+ "squares-exclude",
1506
+ "squares-intersect",
1507
+ "squares-subtract",
1508
+ "squares-unite",
1509
+ "squircle-dashed",
1510
+ "squircle",
1511
+ "squirrel",
1512
+ "stamp",
1513
+ "star-half",
1514
+ "star-off",
1515
+ "star",
1516
+ "step-back",
1517
+ "step-forward",
1518
+ "stethoscope",
1519
+ "sticker",
1520
+ "sticky-note",
1521
+ "stone",
1522
+ "store",
1523
+ "stretch-horizontal",
1524
+ "stretch-vertical",
1525
+ "strikethrough",
1526
+ "subscript",
1527
+ "sun-dim",
1528
+ "sun-medium",
1529
+ "sun-moon",
1530
+ "sun-snow",
1531
+ "sun",
1532
+ "sunrise",
1533
+ "sunset",
1534
+ "superscript",
1535
+ "swatch-book",
1536
+ "swiss-franc",
1537
+ "switch-camera",
1538
+ "sword",
1539
+ "swords",
1540
+ "syringe",
1541
+ "table-2",
1542
+ "table-cells-merge",
1543
+ "table-cells-split",
1544
+ "table-columns-split",
1545
+ "table-of-contents",
1546
+ "table-properties",
1547
+ "table-rows-split",
1548
+ "table",
1549
+ "tablet-smartphone",
1550
+ "tablet",
1551
+ "tablets",
1552
+ "tag",
1553
+ "tags",
1554
+ "tally-1",
1555
+ "tally-2",
1556
+ "tally-3",
1557
+ "tally-4",
1558
+ "tally-5",
1559
+ "tangent",
1560
+ "target",
1561
+ "telescope",
1562
+ "tent-tree",
1563
+ "tent",
1564
+ "terminal",
1565
+ "test-tube-diagonal",
1566
+ "test-tube",
1567
+ "test-tubes",
1568
+ "text-align-center",
1569
+ "text-align-end",
1570
+ "text-align-justify",
1571
+ "text-align-start",
1572
+ "text-cursor-input",
1573
+ "text-cursor",
1574
+ "text-initial",
1575
+ "text-quote",
1576
+ "text-search",
1577
+ "text-select",
1578
+ "text-wrap",
1579
+ "theater",
1580
+ "thermometer-snowflake",
1581
+ "thermometer-sun",
1582
+ "thermometer",
1583
+ "thumbs-down",
1584
+ "thumbs-up",
1585
+ "ticket-check",
1586
+ "ticket-minus",
1587
+ "ticket-percent",
1588
+ "ticket-plus",
1589
+ "ticket-slash",
1590
+ "ticket-x",
1591
+ "ticket",
1592
+ "tickets-plane",
1593
+ "tickets",
1594
+ "timer-off",
1595
+ "timer-reset",
1596
+ "timer",
1597
+ "toggle-left",
1598
+ "toggle-right",
1599
+ "toilet",
1600
+ "tool-case",
1601
+ "toolbox",
1602
+ "tornado",
1603
+ "torus",
1604
+ "touchpad-off",
1605
+ "touchpad",
1606
+ "tower-control",
1607
+ "toy-brick",
1608
+ "tractor",
1609
+ "traffic-cone",
1610
+ "train-front-tunnel",
1611
+ "train-front",
1612
+ "train-track",
1613
+ "tram-front",
1614
+ "transgender",
1615
+ "trash-2",
1616
+ "trash",
1617
+ "tree-deciduous",
1618
+ "tree-palm",
1619
+ "tree-pine",
1620
+ "trees",
1621
+ "trello",
1622
+ "trending-down",
1623
+ "trending-up-down",
1624
+ "trending-up",
1625
+ "triangle-alert",
1626
+ "triangle-dashed",
1627
+ "triangle-right",
1628
+ "triangle",
1629
+ "trophy",
1630
+ "truck-electric",
1631
+ "truck",
1632
+ "turkish-lira",
1633
+ "turntable",
1634
+ "turtle",
1635
+ "tv-minimal-play",
1636
+ "tv-minimal",
1637
+ "tv",
1638
+ "twitch",
1639
+ "twitter",
1640
+ "type-outline",
1641
+ "type",
1642
+ "umbrella-off",
1643
+ "umbrella",
1644
+ "underline",
1645
+ "undo-2",
1646
+ "undo-dot",
1647
+ "undo",
1648
+ "unfold-horizontal",
1649
+ "unfold-vertical",
1650
+ "ungroup",
1651
+ "university",
1652
+ "unlink-2",
1653
+ "unlink",
1654
+ "unplug",
1655
+ "upload",
1656
+ "usb",
1657
+ "user-check",
1658
+ "user-cog",
1659
+ "user-lock",
1660
+ "user-minus",
1661
+ "user-pen",
1662
+ "user-plus",
1663
+ "user-round-check",
1664
+ "user-round-cog",
1665
+ "user-round-minus",
1666
+ "user-round-pen",
1667
+ "user-round-plus",
1668
+ "user-round-search",
1669
+ "user-round-x",
1670
+ "user-round",
1671
+ "user-search",
1672
+ "user-star",
1673
+ "user-x",
1674
+ "user",
1675
+ "users-round",
1676
+ "users",
1677
+ "utensils-crossed",
1678
+ "utensils",
1679
+ "utility-pole",
1680
+ "van",
1681
+ "variable",
1682
+ "vault",
1683
+ "vector-square",
1684
+ "vegan",
1685
+ "venetian-mask",
1686
+ "venus-and-mars",
1687
+ "venus",
1688
+ "vibrate-off",
1689
+ "vibrate",
1690
+ "video-off",
1691
+ "video",
1692
+ "videotape",
1693
+ "view",
1694
+ "voicemail",
1695
+ "volleyball",
1696
+ "volume-1",
1697
+ "volume-2",
1698
+ "volume-off",
1699
+ "volume-x",
1700
+ "volume",
1701
+ "vote",
1702
+ "wallet-cards",
1703
+ "wallet-minimal",
1704
+ "wallet",
1705
+ "wallpaper",
1706
+ "wand-sparkles",
1707
+ "wand",
1708
+ "warehouse",
1709
+ "washing-machine",
1710
+ "watch",
1711
+ "waves-arrow-down",
1712
+ "waves-arrow-up",
1713
+ "waves-ladder",
1714
+ "waves",
1715
+ "waypoints",
1716
+ "webcam",
1717
+ "webhook-off",
1718
+ "webhook",
1719
+ "weight-tilde",
1720
+ "weight",
1721
+ "wheat-off",
1722
+ "wheat",
1723
+ "whole-word",
1724
+ "wifi-cog",
1725
+ "wifi-high",
1726
+ "wifi-low",
1727
+ "wifi-off",
1728
+ "wifi-pen",
1729
+ "wifi-sync",
1730
+ "wifi-zero",
1731
+ "wifi",
1732
+ "wind-arrow-down",
1733
+ "wind",
1734
+ "wine-off",
1735
+ "wine",
1736
+ "workflow",
1737
+ "worm",
1738
+ "wrench",
1739
+ "x",
1740
+ "youtube",
1741
+ "zap-off",
1742
+ "zap",
1743
+ "zoom-in",
1744
+ "zoom-out"
1745
+ ],
1746
+ "description": "Icono"
1747
+ },
1748
+ "NoteSchema": {
1749
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1750
+ "anyOf": [
1751
+ {
1752
+ "type": "object",
1753
+ "properties": {
1754
+ "title": {
1755
+ "type": "string",
1756
+ "description": "Título del artículo"
1757
+ },
1758
+ "description": {
1759
+ "description": "Descripción",
1760
+ "anyOf": [
1761
+ {
1762
+ "type": "string"
1763
+ },
1764
+ {
1765
+ "type": "null"
1766
+ }
1767
+ ]
1768
+ },
1769
+ "excerpt": {
1770
+ "description": "Extracto del artículo",
1771
+ "type": "string"
1772
+ },
1773
+ "author": {
1774
+ "description": "Autores",
1775
+ "type": "array",
1776
+ "items": {
1777
+ "type": "string"
1778
+ }
1779
+ },
1780
+ "published": {
1781
+ "description": "Año de publicación",
1782
+ "anyOf": [
1783
+ {
1784
+ "type": "string"
1785
+ },
1786
+ {
1787
+ "type": "number"
1788
+ }
1789
+ ]
1790
+ },
1791
+ "status": {
1792
+ "type": "string",
1793
+ "enum": [
1794
+ "Pendiente",
1795
+ "En Proceso",
1796
+ "Leído",
1797
+ "Consolidado"
1798
+ ],
1799
+ "description": "Estado de lectura"
1800
+ },
1801
+ "projects": {
1802
+ "description": "Proyectos",
1803
+ "type": "array",
1804
+ "items": {
1805
+ "type": "string"
1806
+ }
1807
+ },
1808
+ "topics": {
1809
+ "description": "Temas",
1810
+ "type": "array",
1811
+ "items": {
1812
+ "type": "string"
1813
+ }
1814
+ },
1815
+ "rating": {
1816
+ "description": "Puntuación del artículo",
1817
+ "type": "number"
1818
+ },
1819
+ "type": {
1820
+ "type": "string",
1821
+ "const": "[[Fuentes]]"
1822
+ },
1823
+ "format": {
1824
+ "type": "string",
1825
+ "const": "[[Artículos]]"
1826
+ },
1827
+ "areas": {
1828
+ "default": [
1829
+ "[[Conocimiento]]"
1830
+ ],
1831
+ "type": "array",
1832
+ "items": {
1833
+ "type": "string",
1834
+ "enum": [
1835
+ "[[Alimentación]]",
1836
+ "[[Salud]]",
1837
+ "[[Conocimiento]]",
1838
+ "[[Pensamiento Estructurado]]",
1839
+ "[[Hogar]]",
1840
+ "[[Productividad]]",
1841
+ "[[Exploración]]",
1842
+ "[[Vínculos]]",
1843
+ "[[Ejercicio]]",
1844
+ "[[Energía Vital]]",
1845
+ "[[Trabajo]]",
1846
+ "[[Finanzas]]",
1847
+ "[[Salud Mental]]",
1848
+ "[[Creatividad]]"
1849
+ ],
1850
+ "description": "Área"
1851
+ },
1852
+ "description": "Áreas"
1853
+ },
1854
+ "color": {
1855
+ "default": "#3171B2",
1856
+ "description": "Color de la nota.",
1857
+ "type": "string"
1858
+ },
1859
+ "icon": {
1860
+ "default": "newspaper",
1861
+ "description": "Icono de Lucide.",
1862
+ "type": "string"
1863
+ },
1864
+ "banner": {
1865
+ "description": "Banner de la nota.",
1866
+ "anyOf": [
1867
+ {
1868
+ "type": "string"
1869
+ },
1870
+ {
1871
+ "type": "null"
1872
+ }
1873
+ ]
1874
+ },
1875
+ "url": {
1876
+ "description": "URL del artículo",
1877
+ "type": "string"
1878
+ }
1879
+ },
1880
+ "required": [
1881
+ "title",
1882
+ "status",
1883
+ "type",
1884
+ "format"
1885
+ ],
1886
+ "description": "Artículo"
1887
+ },
1888
+ {
1889
+ "type": "object",
1890
+ "properties": {
1891
+ "title": {
1892
+ "type": "string",
1893
+ "description": "Título del libro"
1894
+ },
1895
+ "subtitle": {
1896
+ "description": "Subtítulo del libro",
1897
+ "type": "string"
1898
+ },
1899
+ "description": {
1900
+ "description": "Descripción del libro",
1901
+ "type": "string"
1902
+ },
1903
+ "author": {
1904
+ "type": "array",
1905
+ "items": {
1906
+ "type": "string"
1907
+ },
1908
+ "description": "Autores"
1909
+ },
1910
+ "published": {
1911
+ "description": "Año de publicación",
1912
+ "anyOf": [
1913
+ {
1914
+ "type": "string"
1915
+ },
1916
+ {
1917
+ "type": "number"
1918
+ }
1919
+ ]
1920
+ },
1921
+ "categories": {
1922
+ "description": "Géneros",
1923
+ "type": "array",
1924
+ "items": {
1925
+ "type": "string"
1926
+ }
1927
+ },
1928
+ "status": {
1929
+ "type": "string",
1930
+ "enum": [
1931
+ "Pendiente",
1932
+ "En Proceso",
1933
+ "Leído",
1934
+ "Consolidado"
1935
+ ],
1936
+ "description": "Estado de lectura"
1937
+ },
1938
+ "topics": {
1939
+ "description": "Temas",
1940
+ "type": "array",
1941
+ "items": {
1942
+ "type": "string"
1943
+ }
1944
+ },
1945
+ "rating": {
1946
+ "description": "Puntuación del libro",
1947
+ "type": "number"
1948
+ },
1949
+ "online_rating": {
1950
+ "description": "Puntuación en línea",
1951
+ "type": "number"
1952
+ },
1953
+ "last_time_read": {
1954
+ "description": "Última vez leído",
1955
+ "type": "string"
1956
+ },
1957
+ "times_read": {
1958
+ "description": "Veces leído",
1959
+ "type": "number"
1960
+ },
1961
+ "type": {
1962
+ "type": "string",
1963
+ "const": "[[Fuentes]]"
1964
+ },
1965
+ "format": {
1966
+ "type": "string",
1967
+ "const": "[[Libros]]"
1968
+ },
1969
+ "areas": {
1970
+ "default": [
1971
+ "[[Conocimiento]]"
1972
+ ],
1973
+ "type": "array",
1974
+ "items": {
1975
+ "type": "string",
1976
+ "enum": [
1977
+ "[[Alimentación]]",
1978
+ "[[Salud]]",
1979
+ "[[Conocimiento]]",
1980
+ "[[Pensamiento Estructurado]]",
1981
+ "[[Hogar]]",
1982
+ "[[Productividad]]",
1983
+ "[[Exploración]]",
1984
+ "[[Vínculos]]",
1985
+ "[[Ejercicio]]",
1986
+ "[[Energía Vital]]",
1987
+ "[[Trabajo]]",
1988
+ "[[Finanzas]]",
1989
+ "[[Salud Mental]]",
1990
+ "[[Creatividad]]"
1991
+ ],
1992
+ "description": "Área"
1993
+ },
1994
+ "description": "Áreas"
1995
+ },
1996
+ "color": {
1997
+ "default": "#3171B2",
1998
+ "description": "Color de la nota.",
1999
+ "type": "string"
2000
+ },
2001
+ "icon": {
2002
+ "default": "book",
2003
+ "description": "Icono de Lucide.",
2004
+ "type": "string"
2005
+ },
2006
+ "cover": {
2007
+ "description": "Portada del libro.",
2008
+ "type": "string"
2009
+ },
2010
+ "url": {
2011
+ "description": "URL del libro en Amazon o similar",
2012
+ "type": "string"
2013
+ },
2014
+ "read_url": {
2015
+ "description": "URL de la lectura del libro",
2016
+ "type": "string"
2017
+ }
2018
+ },
2019
+ "required": [
2020
+ "title",
2021
+ "author",
2022
+ "status",
2023
+ "type",
2024
+ "format"
2025
+ ],
2026
+ "description": "Libro"
2027
+ },
2028
+ {
2029
+ "type": "object",
2030
+ "properties": {
2031
+ "name": {
2032
+ "type": "string",
2033
+ "description": "Nombre descriptivo de la prenda de ropa"
2034
+ },
2035
+ "garment": {
2036
+ "type": "string",
2037
+ "enum": [
2038
+ "Camisetas Interiores",
2039
+ "Calzoncillos",
2040
+ "Bragas",
2041
+ "Sujetadores",
2042
+ "Calcetines",
2043
+ "Camisetas",
2044
+ "Polos",
2045
+ "Camisas",
2046
+ "Blusas",
2047
+ "Tops",
2048
+ "Jerseys",
2049
+ "Sudaderas",
2050
+ "Cárdigans",
2051
+ "Chaquetas",
2052
+ "Pantalones",
2053
+ "Vaqueros",
2054
+ "Chinos",
2055
+ "Faldas",
2056
+ "Shorts",
2057
+ "Americanas",
2058
+ "Abrigos",
2059
+ "Gabardinas",
2060
+ "Parkas",
2061
+ "Cazadoras",
2062
+ "Chalecos",
2063
+ "Mallas",
2064
+ "Ropa Técnica",
2065
+ "Shorts Deportivos",
2066
+ "Camisetas Técnicas",
2067
+ "Vestidos",
2068
+ "Monos",
2069
+ "Zapatillas",
2070
+ "Zapatos",
2071
+ "Botas",
2072
+ "Sandalias",
2073
+ "Cinturones",
2074
+ "Gorras",
2075
+ "Sombreros",
2076
+ "Bufandas",
2077
+ "Guantes",
2078
+ "Bolsos",
2079
+ "Mochilas",
2080
+ "Gafas de Sol",
2081
+ "Pañuelos",
2082
+ "Relojes",
2083
+ "Joyas",
2084
+ "Pijamas",
2085
+ "Batas",
2086
+ "Bañadores",
2087
+ "Bikinis"
2088
+ ],
2089
+ "description": "Tipo de Prenda"
2090
+ },
2091
+ "slot": {
2092
+ "type": "string",
2093
+ "enum": [
2094
+ "Superior",
2095
+ "Inferior",
2096
+ "Cuerpo Completo",
2097
+ "Exterior",
2098
+ "Calzado",
2099
+ "Accesorios"
2100
+ ],
2101
+ "description": "Parte del outfit"
2102
+ },
2103
+ "variants": {
2104
+ "description": "Detalles Estructurales",
2105
+ "type": "array",
2106
+ "items": {
2107
+ "type": "string",
2108
+ "enum": [
2109
+ "Sin Mangas",
2110
+ "Mangas Cortas",
2111
+ "Mangas Largas",
2112
+ "Cuello Redondo",
2113
+ "Cuello Pico",
2114
+ "Cuello Alto",
2115
+ "Cuello Camisa",
2116
+ "Cuello Polo",
2117
+ "Cuello Panadero",
2118
+ "Cuello Mao",
2119
+ "Cuello Chimenea",
2120
+ "Capucha",
2121
+ "Overshirt",
2122
+ "Cropped",
2123
+ "Larga",
2124
+ "Pierna Recta",
2125
+ "Pitillo",
2126
+ "Ancha",
2127
+ "Cargo",
2128
+ "Acampanado",
2129
+ "Trench",
2130
+ "Plumífero",
2131
+ "Doble botonadura",
2132
+ "Botones",
2133
+ "Cremallera",
2134
+ "Velcro",
2135
+ "Cordones",
2136
+ "Broches",
2137
+ "Bolsillos",
2138
+ "Sin Bolsillos",
2139
+ "Reversible"
2140
+ ]
2141
+ }
2142
+ },
2143
+ "fit": {
2144
+ "description": "Ajuste",
2145
+ "type": "string",
2146
+ "enum": [
2147
+ "Entallado",
2148
+ "Ajustado",
2149
+ "Regular",
2150
+ "Relajado",
2151
+ "Holgado",
2152
+ "Extragrande"
2153
+ ]
2154
+ },
2155
+ "primary_color": {
2156
+ "type": "string",
2157
+ "enum": [
2158
+ "Blanco",
2159
+ "Negro",
2160
+ "Gris",
2161
+ "Beige",
2162
+ "Marrón",
2163
+ "Azul",
2164
+ "Verde",
2165
+ "Rojo",
2166
+ "Burdeos",
2167
+ "Rosa",
2168
+ "Amarillo",
2169
+ "Naranja",
2170
+ "Morado",
2171
+ "Camel",
2172
+ "Caqui",
2173
+ "Marino",
2174
+ "Crema",
2175
+ "Oro",
2176
+ "Plata",
2177
+ "Bronce"
2178
+ ],
2179
+ "description": "Color principal"
2180
+ },
2181
+ "secondary_color": {
2182
+ "description": "Color secundario",
2183
+ "type": "string",
2184
+ "enum": [
2185
+ "Blanco",
2186
+ "Negro",
2187
+ "Gris",
2188
+ "Beige",
2189
+ "Marrón",
2190
+ "Azul",
2191
+ "Verde",
2192
+ "Rojo",
2193
+ "Burdeos",
2194
+ "Rosa",
2195
+ "Amarillo",
2196
+ "Naranja",
2197
+ "Morado",
2198
+ "Camel",
2199
+ "Caqui",
2200
+ "Marino",
2201
+ "Crema",
2202
+ "Oro",
2203
+ "Plata",
2204
+ "Bronce"
2205
+ ]
2206
+ },
2207
+ "pattern": {
2208
+ "description": "Estampado",
2209
+ "type": "string",
2210
+ "enum": [
2211
+ "Liso",
2212
+ "Rayas",
2213
+ "Cuadros",
2214
+ "Lunares",
2215
+ "Animal Print",
2216
+ "Floral",
2217
+ "Geométrico",
2218
+ "Camuflaje",
2219
+ "EstampadoGráfico",
2220
+ "Degradado"
2221
+ ]
2222
+ },
2223
+ "materials": {
2224
+ "description": "Materiales",
2225
+ "type": "array",
2226
+ "items": {
2227
+ "type": "string",
2228
+ "enum": [
2229
+ "Algodón",
2230
+ "Lino",
2231
+ "Lana",
2232
+ "Seda",
2233
+ "Cuero",
2234
+ "Cachemir",
2235
+ "Ante",
2236
+ "Poliéster",
2237
+ "Nylon",
2238
+ "Elastano",
2239
+ "Viscosa",
2240
+ "Piel Sintética",
2241
+ "Gore-Tex",
2242
+ "Denim",
2243
+ "Punto",
2244
+ "Felpa",
2245
+ "Tweed",
2246
+ "Satén",
2247
+ "Terciopelo",
2248
+ "Jacquard",
2249
+ "Franela",
2250
+ "Gabardina"
2251
+ ]
2252
+ }
2253
+ },
2254
+ "layer": {
2255
+ "type": "string",
2256
+ "enum": [
2257
+ "Base",
2258
+ "Intermedia",
2259
+ "Exterior"
2260
+ ],
2261
+ "description": "Capa Térmica"
2262
+ },
2263
+ "season": {
2264
+ "description": "Estaciones",
2265
+ "type": "string",
2266
+ "enum": [
2267
+ "Invierno",
2268
+ "Verano",
2269
+ "Entretiempo",
2270
+ "Todo el año"
2271
+ ]
2272
+ },
2273
+ "use_case": {
2274
+ "description": "Casos de uso",
2275
+ "type": "array",
2276
+ "items": {
2277
+ "type": "string",
2278
+ "enum": [
2279
+ "Capsula",
2280
+ "Favorita",
2281
+ "Básico",
2282
+ "Deporte",
2283
+ "Trabajo",
2284
+ "Evento",
2285
+ "Viaje",
2286
+ "Casa",
2287
+ "Fiesta",
2288
+ "Playa",
2289
+ "Lluvia",
2290
+ "Frío Extremo"
2291
+ ]
2292
+ }
2293
+ },
2294
+ "formality": {
2295
+ "description": "Formalidad",
2296
+ "type": "string",
2297
+ "enum": [
2298
+ "Muy Informal",
2299
+ "Casual",
2300
+ "Arreglado",
2301
+ "Formal",
2302
+ "Etiqueta"
2303
+ ]
2304
+ },
2305
+ "brand": {
2306
+ "description": "The brand of the clothing",
2307
+ "type": "string"
2308
+ },
2309
+ "cares": {
2310
+ "description": "Cuidados",
2311
+ "type": "array",
2312
+ "items": {
2313
+ "type": "string",
2314
+ "enum": [
2315
+ "Lavado a mano",
2316
+ "Lavado a máquina",
2317
+ "Lavado en seco",
2318
+ "Frio",
2319
+ "Caliente",
2320
+ "Planchado",
2321
+ "Planchado a vapor"
2322
+ ]
2323
+ }
2324
+ },
2325
+ "status": {
2326
+ "default": "Bien",
2327
+ "description": "Estado",
2328
+ "type": "string",
2329
+ "enum": [
2330
+ "Nuevo",
2331
+ "Bien",
2332
+ "Gastado",
2333
+ "Dañado",
2334
+ "Retirar"
2335
+ ]
2336
+ },
2337
+ "size": {
2338
+ "type": "string",
2339
+ "enum": [
2340
+ "28",
2341
+ "30",
2342
+ "32",
2343
+ "34",
2344
+ "36",
2345
+ "37",
2346
+ "38",
2347
+ "39",
2348
+ "40",
2349
+ "41",
2350
+ "42",
2351
+ "43",
2352
+ "44",
2353
+ "45",
2354
+ "46",
2355
+ "48",
2356
+ "XS",
2357
+ "S",
2358
+ "M",
2359
+ "L",
2360
+ "XL",
2361
+ "XXL",
2362
+ "XXXL"
2363
+ ]
2364
+ },
2365
+ "measurements": {
2366
+ "description": "Medidas",
2367
+ "type": "array",
2368
+ "items": {
2369
+ "type": "number"
2370
+ }
2371
+ },
2372
+ "type": {
2373
+ "type": "string",
2374
+ "const": "[[Recursos]]"
2375
+ },
2376
+ "subtype": {
2377
+ "type": "string",
2378
+ "const": "[[Prendas]]"
2379
+ },
2380
+ "areas": {
2381
+ "default": [
2382
+ "[[Hogar]]"
2383
+ ],
2384
+ "type": "array",
2385
+ "items": {
2386
+ "type": "string",
2387
+ "enum": [
2388
+ "[[Alimentación]]",
2389
+ "[[Salud]]",
2390
+ "[[Conocimiento]]",
2391
+ "[[Pensamiento Estructurado]]",
2392
+ "[[Hogar]]",
2393
+ "[[Productividad]]",
2394
+ "[[Exploración]]",
2395
+ "[[Vínculos]]",
2396
+ "[[Ejercicio]]",
2397
+ "[[Energía Vital]]",
2398
+ "[[Trabajo]]",
2399
+ "[[Finanzas]]",
2400
+ "[[Salud Mental]]",
2401
+ "[[Creatividad]]"
2402
+ ],
2403
+ "description": "Área"
2404
+ },
2405
+ "description": "Áreas"
2406
+ },
2407
+ "color": {
2408
+ "default": "#CB6120",
2409
+ "description": "Color de la nota.",
2410
+ "type": "string"
2411
+ },
2412
+ "icon": {
2413
+ "default": "shirt",
2414
+ "description": "Icono de Lucide.",
2415
+ "type": "string"
2416
+ },
2417
+ "cover": {
2418
+ "description": "Foto de la prenda de ropa.",
2419
+ "type": "string"
2420
+ }
2421
+ },
2422
+ "required": [
2423
+ "name",
2424
+ "garment",
2425
+ "slot",
2426
+ "primary_color",
2427
+ "layer",
2428
+ "size",
2429
+ "type",
2430
+ "subtype"
2431
+ ],
2432
+ "description": "Prenda de ropa"
2433
+ },
2434
+ {
2435
+ "type": "object",
2436
+ "properties": {
2437
+ "title": {
2438
+ "type": "string",
2439
+ "description": "Título de la película"
2440
+ },
2441
+ "description": {
2442
+ "description": "Descripción de la película",
2443
+ "type": "string"
2444
+ },
2445
+ "author": {
2446
+ "description": "Autores. Guionistas, directores, productores, etc.",
2447
+ "type": "array",
2448
+ "items": {
2449
+ "type": "string"
2450
+ }
2451
+ },
2452
+ "actors": {
2453
+ "description": "Actores",
2454
+ "type": "array",
2455
+ "items": {
2456
+ "type": "string"
2457
+ }
2458
+ },
2459
+ "published": {
2460
+ "description": "Año de publicación",
2461
+ "anyOf": [
2462
+ {
2463
+ "type": "string"
2464
+ },
2465
+ {
2466
+ "type": "number"
2467
+ }
2468
+ ]
2469
+ },
2470
+ "genres": {
2471
+ "description": "Géneros",
2472
+ "type": "array",
2473
+ "items": {
2474
+ "type": "string"
2475
+ }
2476
+ },
2477
+ "status": {
2478
+ "type": "string",
2479
+ "enum": [
2480
+ "Pendiente",
2481
+ "En progreso",
2482
+ "Visto"
2483
+ ],
2484
+ "description": "Estado de visualización"
2485
+ },
2486
+ "topics": {
2487
+ "description": "Temas",
2488
+ "anyOf": [
2489
+ {
2490
+ "type": "array",
2491
+ "items": {
2492
+ "type": "string"
2493
+ }
2494
+ },
2495
+ {
2496
+ "type": "null"
2497
+ }
2498
+ ]
2499
+ },
2500
+ "rating": {
2501
+ "description": "Puntuación de la película",
2502
+ "type": "number"
2503
+ },
2504
+ "online_rating": {
2505
+ "description": "Puntuación en línea",
2506
+ "type": "number"
2507
+ },
2508
+ "last_time_watched": {
2509
+ "description": "Última vez vista",
2510
+ "type": "string"
2511
+ },
2512
+ "times_watched": {
2513
+ "description": "Veces vista",
2514
+ "type": "number"
2515
+ },
2516
+ "type": {
2517
+ "type": "string",
2518
+ "const": "[[Fuentes]]"
2519
+ },
2520
+ "format": {
2521
+ "type": "string",
2522
+ "const": "[[Películas]]"
2523
+ },
2524
+ "areas": {
2525
+ "default": [
2526
+ "[[Creatividad]]"
2527
+ ],
2528
+ "type": "array",
2529
+ "items": {
2530
+ "type": "string",
2531
+ "enum": [
2532
+ "[[Alimentación]]",
2533
+ "[[Salud]]",
2534
+ "[[Conocimiento]]",
2535
+ "[[Pensamiento Estructurado]]",
2536
+ "[[Hogar]]",
2537
+ "[[Productividad]]",
2538
+ "[[Exploración]]",
2539
+ "[[Vínculos]]",
2540
+ "[[Ejercicio]]",
2541
+ "[[Energía Vital]]",
2542
+ "[[Trabajo]]",
2543
+ "[[Finanzas]]",
2544
+ "[[Salud Mental]]",
2545
+ "[[Creatividad]]"
2546
+ ],
2547
+ "description": "Área"
2548
+ },
2549
+ "description": "Áreas"
2550
+ },
2551
+ "color": {
2552
+ "default": "#BE9207",
2553
+ "description": "Color de la nota.",
2554
+ "type": "string"
2555
+ },
2556
+ "icon": {
2557
+ "default": "movie",
2558
+ "description": "Icono de Lucide.",
2559
+ "type": "string"
2560
+ },
2561
+ "cover": {
2562
+ "description": "Portada de la película.",
2563
+ "type": "string"
2564
+ },
2565
+ "url": {
2566
+ "type": "string",
2567
+ "description": "URL de la película en IMDB o similar"
2568
+ },
2569
+ "watch_url": {
2570
+ "description": "URL de la película en streaming",
2571
+ "type": "string"
2572
+ }
2573
+ },
2574
+ "required": [
2575
+ "title",
2576
+ "status",
2577
+ "type",
2578
+ "format",
2579
+ "url"
2580
+ ],
2581
+ "description": "Película"
2582
+ },
2583
+ {
2584
+ "type": "object",
2585
+ "properties": {
2586
+ "title": {
2587
+ "description": "Título de la pintura",
2588
+ "type": "string"
2589
+ },
2590
+ "description": {
2591
+ "description": "Descripción",
2592
+ "type": "string"
2593
+ },
2594
+ "author": {
2595
+ "description": "Autores",
2596
+ "type": "array",
2597
+ "items": {
2598
+ "type": "string"
2599
+ }
2600
+ },
2601
+ "published": {
2602
+ "description": "Año de publicación",
2603
+ "type": "string"
2604
+ },
2605
+ "collection": {
2606
+ "description": "Colección",
2607
+ "type": "string"
2608
+ },
2609
+ "position": {
2610
+ "description": "Posición en la colección",
2611
+ "type": "string"
2612
+ },
2613
+ "projects": {
2614
+ "description": "Proyectos",
2615
+ "type": "array",
2616
+ "items": {
2617
+ "type": "string"
2618
+ }
2619
+ },
2620
+ "topics": {
2621
+ "description": "Temas",
2622
+ "type": "array",
2623
+ "items": {
2624
+ "type": "string"
2625
+ }
2626
+ },
2627
+ "rating": {
2628
+ "description": "Puntuación del artículo",
2629
+ "type": "number"
2630
+ },
2631
+ "type": {
2632
+ "type": "string",
2633
+ "const": "[[Fuentes]]"
2634
+ },
2635
+ "format": {
2636
+ "type": "string",
2637
+ "const": "[[Pinturas]]"
2638
+ },
2639
+ "areas": {
2640
+ "default": [
2641
+ "[[Creatividad]]"
2642
+ ],
2643
+ "type": "array",
2644
+ "items": {
2645
+ "type": "string",
2646
+ "enum": [
2647
+ "[[Alimentación]]",
2648
+ "[[Salud]]",
2649
+ "[[Conocimiento]]",
2650
+ "[[Pensamiento Estructurado]]",
2651
+ "[[Hogar]]",
2652
+ "[[Productividad]]",
2653
+ "[[Exploración]]",
2654
+ "[[Vínculos]]",
2655
+ "[[Ejercicio]]",
2656
+ "[[Energía Vital]]",
2657
+ "[[Trabajo]]",
2658
+ "[[Finanzas]]",
2659
+ "[[Salud Mental]]",
2660
+ "[[Creatividad]]"
2661
+ ],
2662
+ "description": "Área"
2663
+ },
2664
+ "description": "Áreas"
2665
+ },
2666
+ "color": {
2667
+ "default": "#BE9207",
2668
+ "description": "Color de la nota.",
2669
+ "type": "string"
2670
+ },
2671
+ "icon": {
2672
+ "default": "frame",
2673
+ "description": "Icono de Lucide.",
2674
+ "type": "string"
2675
+ },
2676
+ "cover": {
2677
+ "type": "string",
2678
+ "description": "Imagen de la pintura."
2679
+ }
2680
+ },
2681
+ "required": [
2682
+ "type",
2683
+ "format",
2684
+ "cover"
2685
+ ],
2686
+ "description": "Pintura"
2687
+ },
2688
+ {
2689
+ "type": "object",
2690
+ "properties": {
2691
+ "title": {
2692
+ "type": "string",
2693
+ "description": "Título de la entrada de Wikipedia"
2694
+ },
2695
+ "description": {
2696
+ "description": "Descripción",
2697
+ "anyOf": [
2698
+ {
2699
+ "type": "string"
2700
+ },
2701
+ {
2702
+ "type": "null"
2703
+ }
2704
+ ]
2705
+ },
2706
+ "excerpt": {
2707
+ "description": "Extracto del artículo",
2708
+ "type": "string"
2709
+ },
2710
+ "author": {
2711
+ "description": "Autores",
2712
+ "type": "array",
2713
+ "items": {
2714
+ "type": "string"
2715
+ }
2716
+ },
2717
+ "published": {
2718
+ "description": "Año de publicación",
2719
+ "anyOf": [
2720
+ {
2721
+ "type": "string"
2722
+ },
2723
+ {
2724
+ "type": "number"
2725
+ }
2726
+ ]
2727
+ },
2728
+ "status": {
2729
+ "type": "string",
2730
+ "enum": [
2731
+ "Pendiente",
2732
+ "En Proceso",
2733
+ "Leído",
2734
+ "Consolidado"
2735
+ ],
2736
+ "description": "Estado de lectura"
2737
+ },
2738
+ "projects": {
2739
+ "description": "Proyectos",
2740
+ "type": "array",
2741
+ "items": {
2742
+ "type": "string"
2743
+ }
2744
+ },
2745
+ "topics": {
2746
+ "description": "Temas",
2747
+ "type": "array",
2748
+ "items": {
2749
+ "type": "string"
2750
+ }
2751
+ },
2752
+ "rating": {
2753
+ "description": "Puntuación del artículo",
2754
+ "type": "number"
2755
+ },
2756
+ "type": {
2757
+ "type": "string",
2758
+ "const": "[[Fuentes]]"
2759
+ },
2760
+ "format": {
2761
+ "type": "string",
2762
+ "const": "[[Entradas de Enciclopedia]]"
2763
+ },
2764
+ "areas": {
2765
+ "default": [
2766
+ "[[Conocimiento]]"
2767
+ ],
2768
+ "type": "array",
2769
+ "items": {
2770
+ "type": "string",
2771
+ "enum": [
2772
+ "[[Alimentación]]",
2773
+ "[[Salud]]",
2774
+ "[[Conocimiento]]",
2775
+ "[[Pensamiento Estructurado]]",
2776
+ "[[Hogar]]",
2777
+ "[[Productividad]]",
2778
+ "[[Exploración]]",
2779
+ "[[Vínculos]]",
2780
+ "[[Ejercicio]]",
2781
+ "[[Energía Vital]]",
2782
+ "[[Trabajo]]",
2783
+ "[[Finanzas]]",
2784
+ "[[Salud Mental]]",
2785
+ "[[Creatividad]]"
2786
+ ],
2787
+ "description": "Área"
2788
+ },
2789
+ "description": "Áreas"
2790
+ },
2791
+ "color": {
2792
+ "default": "#3171B2",
2793
+ "description": "Color de la nota.",
2794
+ "type": "string"
2795
+ },
2796
+ "icon": {
2797
+ "default": "wikipedia",
2798
+ "description": "Icono de Lucide.",
2799
+ "type": "string"
2800
+ },
2801
+ "banner": {
2802
+ "description": "Banner de la nota.",
2803
+ "anyOf": [
2804
+ {
2805
+ "type": "string"
2806
+ },
2807
+ {
2808
+ "type": "null"
2809
+ }
2810
+ ]
2811
+ },
2812
+ "url": {
2813
+ "description": "URL del artículo",
2814
+ "type": "string"
2815
+ },
2816
+ "platform": {
2817
+ "type": "string",
2818
+ "const": "Wikipedia"
2819
+ }
2820
+ },
2821
+ "required": [
2822
+ "title",
2823
+ "status",
2824
+ "type",
2825
+ "format",
2826
+ "platform"
2827
+ ],
2828
+ "description": "Entrada de Wikipedia"
2829
+ },
2830
+ {
2831
+ "type": "object",
2832
+ "properties": {
2833
+ "title": {
2834
+ "type": "string",
2835
+ "description": "Título del vídeo de YouTube"
2836
+ },
2837
+ "description": {
2838
+ "description": "Descripción",
2839
+ "anyOf": [
2840
+ {
2841
+ "type": "string"
2842
+ },
2843
+ {
2844
+ "type": "null"
2845
+ }
2846
+ ]
2847
+ },
2848
+ "excerpt": {
2849
+ "description": "Extracto del artículo",
2850
+ "type": "string"
2851
+ },
2852
+ "author": {
2853
+ "description": "Autores",
2854
+ "type": "array",
2855
+ "items": {
2856
+ "type": "string"
2857
+ }
2858
+ },
2859
+ "published": {
2860
+ "description": "Año de publicación",
2861
+ "anyOf": [
2862
+ {
2863
+ "type": "string"
2864
+ },
2865
+ {
2866
+ "type": "number"
2867
+ }
2868
+ ]
2869
+ },
2870
+ "status": {
2871
+ "type": "string",
2872
+ "enum": [
2873
+ "Pendiente",
2874
+ "En progreso",
2875
+ "Visto"
2876
+ ],
2877
+ "description": "Estado de visualización"
2878
+ },
2879
+ "projects": {
2880
+ "description": "Proyectos",
2881
+ "type": "array",
2882
+ "items": {
2883
+ "type": "string"
2884
+ }
2885
+ },
2886
+ "topics": {
2887
+ "description": "Temas",
2888
+ "type": "array",
2889
+ "items": {
2890
+ "type": "string"
2891
+ }
2892
+ },
2893
+ "rating": {
2894
+ "description": "Puntuación del artículo",
2895
+ "type": "number"
2896
+ },
2897
+ "type": {
2898
+ "type": "string",
2899
+ "const": "[[Fuentes]]"
2900
+ },
2901
+ "format": {
2902
+ "type": "string",
2903
+ "const": "[[Vídeos]]"
2904
+ },
2905
+ "areas": {
2906
+ "default": [
2907
+ "[[Conocimiento]]"
2908
+ ],
2909
+ "type": "array",
2910
+ "items": {
2911
+ "type": "string",
2912
+ "enum": [
2913
+ "[[Alimentación]]",
2914
+ "[[Salud]]",
2915
+ "[[Conocimiento]]",
2916
+ "[[Pensamiento Estructurado]]",
2917
+ "[[Hogar]]",
2918
+ "[[Productividad]]",
2919
+ "[[Exploración]]",
2920
+ "[[Vínculos]]",
2921
+ "[[Ejercicio]]",
2922
+ "[[Energía Vital]]",
2923
+ "[[Trabajo]]",
2924
+ "[[Finanzas]]",
2925
+ "[[Salud Mental]]",
2926
+ "[[Creatividad]]"
2927
+ ],
2928
+ "description": "Área"
2929
+ },
2930
+ "description": "Áreas"
2931
+ },
2932
+ "color": {
2933
+ "default": "#3171B2",
2934
+ "description": "Color de la nota.",
2935
+ "type": "string"
2936
+ },
2937
+ "icon": {
2938
+ "default": "youtube",
2939
+ "description": "Icono de Lucide.",
2940
+ "type": "string"
2941
+ },
2942
+ "banner": {
2943
+ "description": "Banner de la nota.",
2944
+ "anyOf": [
2945
+ {
2946
+ "type": "string"
2947
+ },
2948
+ {
2949
+ "type": "null"
2950
+ }
2951
+ ]
2952
+ },
2953
+ "url": {
2954
+ "description": "URL del artículo",
2955
+ "type": "string"
2956
+ },
2957
+ "platform": {
2958
+ "type": "string",
2959
+ "const": "YouTube"
2960
+ }
2961
+ },
2962
+ "required": [
2963
+ "title",
2964
+ "status",
2965
+ "type",
2966
+ "format",
2967
+ "platform"
2968
+ ],
2969
+ "description": "Vídeo de YouTube"
2970
+ }
2971
+ ],
2972
+ "description": "Nota: Unión de todos los tipos de notas"
2973
+ },
2974
+ "ArticleSchema": {
2975
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2976
+ "type": "object",
2977
+ "properties": {
2978
+ "title": {
2979
+ "type": "string",
2980
+ "description": "Título del artículo"
2981
+ },
2982
+ "description": {
2983
+ "description": "Descripción",
2984
+ "anyOf": [
2985
+ {
2986
+ "type": "string"
2987
+ },
2988
+ {
2989
+ "type": "null"
2990
+ }
2991
+ ]
2992
+ },
2993
+ "excerpt": {
2994
+ "description": "Extracto del artículo",
2995
+ "type": "string"
2996
+ },
2997
+ "author": {
2998
+ "description": "Autores",
2999
+ "type": "array",
3000
+ "items": {
3001
+ "type": "string"
3002
+ }
3003
+ },
3004
+ "published": {
3005
+ "description": "Año de publicación",
3006
+ "anyOf": [
3007
+ {
3008
+ "type": "string"
3009
+ },
3010
+ {
3011
+ "type": "number"
3012
+ }
3013
+ ]
3014
+ },
3015
+ "status": {
3016
+ "type": "string",
3017
+ "enum": [
3018
+ "Pendiente",
3019
+ "En Proceso",
3020
+ "Leído",
3021
+ "Consolidado"
3022
+ ],
3023
+ "description": "Estado de lectura"
3024
+ },
3025
+ "projects": {
3026
+ "description": "Proyectos",
3027
+ "type": "array",
3028
+ "items": {
3029
+ "type": "string"
3030
+ }
3031
+ },
3032
+ "topics": {
3033
+ "description": "Temas",
3034
+ "type": "array",
3035
+ "items": {
3036
+ "type": "string"
3037
+ }
3038
+ },
3039
+ "rating": {
3040
+ "description": "Puntuación del artículo",
3041
+ "type": "number"
3042
+ },
3043
+ "type": {
3044
+ "type": "string",
3045
+ "const": "[[Fuentes]]"
3046
+ },
3047
+ "format": {
3048
+ "type": "string",
3049
+ "const": "[[Artículos]]"
3050
+ },
3051
+ "areas": {
3052
+ "default": [
3053
+ "[[Conocimiento]]"
3054
+ ],
3055
+ "type": "array",
3056
+ "items": {
3057
+ "type": "string",
3058
+ "enum": [
3059
+ "[[Alimentación]]",
3060
+ "[[Salud]]",
3061
+ "[[Conocimiento]]",
3062
+ "[[Pensamiento Estructurado]]",
3063
+ "[[Hogar]]",
3064
+ "[[Productividad]]",
3065
+ "[[Exploración]]",
3066
+ "[[Vínculos]]",
3067
+ "[[Ejercicio]]",
3068
+ "[[Energía Vital]]",
3069
+ "[[Trabajo]]",
3070
+ "[[Finanzas]]",
3071
+ "[[Salud Mental]]",
3072
+ "[[Creatividad]]"
3073
+ ],
3074
+ "description": "Área"
3075
+ },
3076
+ "description": "Áreas"
3077
+ },
3078
+ "color": {
3079
+ "default": "#3171B2",
3080
+ "description": "Color de la nota.",
3081
+ "type": "string"
3082
+ },
3083
+ "icon": {
3084
+ "default": "newspaper",
3085
+ "description": "Icono de Lucide.",
3086
+ "type": "string"
3087
+ },
3088
+ "banner": {
3089
+ "description": "Banner de la nota.",
3090
+ "anyOf": [
3091
+ {
3092
+ "type": "string"
3093
+ },
3094
+ {
3095
+ "type": "null"
3096
+ }
3097
+ ]
3098
+ },
3099
+ "url": {
3100
+ "description": "URL del artículo",
3101
+ "type": "string"
3102
+ }
3103
+ },
3104
+ "required": [
3105
+ "title",
3106
+ "status",
3107
+ "type",
3108
+ "format"
3109
+ ],
3110
+ "description": "Artículo"
3111
+ },
3112
+ "BookSchema": {
3113
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3114
+ "type": "object",
3115
+ "properties": {
3116
+ "title": {
3117
+ "type": "string",
3118
+ "description": "Título del libro"
3119
+ },
3120
+ "subtitle": {
3121
+ "description": "Subtítulo del libro",
3122
+ "type": "string"
3123
+ },
3124
+ "description": {
3125
+ "description": "Descripción del libro",
3126
+ "type": "string"
3127
+ },
3128
+ "author": {
3129
+ "type": "array",
3130
+ "items": {
3131
+ "type": "string"
3132
+ },
3133
+ "description": "Autores"
3134
+ },
3135
+ "published": {
3136
+ "description": "Año de publicación",
3137
+ "anyOf": [
3138
+ {
3139
+ "type": "string"
3140
+ },
3141
+ {
3142
+ "type": "number"
3143
+ }
3144
+ ]
3145
+ },
3146
+ "categories": {
3147
+ "description": "Géneros",
3148
+ "type": "array",
3149
+ "items": {
3150
+ "type": "string"
3151
+ }
3152
+ },
3153
+ "status": {
3154
+ "type": "string",
3155
+ "enum": [
3156
+ "Pendiente",
3157
+ "En Proceso",
3158
+ "Leído",
3159
+ "Consolidado"
3160
+ ],
3161
+ "description": "Estado de lectura"
3162
+ },
3163
+ "topics": {
3164
+ "description": "Temas",
3165
+ "type": "array",
3166
+ "items": {
3167
+ "type": "string"
3168
+ }
3169
+ },
3170
+ "rating": {
3171
+ "description": "Puntuación del libro",
3172
+ "type": "number"
3173
+ },
3174
+ "online_rating": {
3175
+ "description": "Puntuación en línea",
3176
+ "type": "number"
3177
+ },
3178
+ "last_time_read": {
3179
+ "description": "Última vez leído",
3180
+ "type": "string"
3181
+ },
3182
+ "times_read": {
3183
+ "description": "Veces leído",
3184
+ "type": "number"
3185
+ },
3186
+ "type": {
3187
+ "type": "string",
3188
+ "const": "[[Fuentes]]"
3189
+ },
3190
+ "format": {
3191
+ "type": "string",
3192
+ "const": "[[Libros]]"
3193
+ },
3194
+ "areas": {
3195
+ "default": [
3196
+ "[[Conocimiento]]"
3197
+ ],
3198
+ "type": "array",
3199
+ "items": {
3200
+ "type": "string",
3201
+ "enum": [
3202
+ "[[Alimentación]]",
3203
+ "[[Salud]]",
3204
+ "[[Conocimiento]]",
3205
+ "[[Pensamiento Estructurado]]",
3206
+ "[[Hogar]]",
3207
+ "[[Productividad]]",
3208
+ "[[Exploración]]",
3209
+ "[[Vínculos]]",
3210
+ "[[Ejercicio]]",
3211
+ "[[Energía Vital]]",
3212
+ "[[Trabajo]]",
3213
+ "[[Finanzas]]",
3214
+ "[[Salud Mental]]",
3215
+ "[[Creatividad]]"
3216
+ ],
3217
+ "description": "Área"
3218
+ },
3219
+ "description": "Áreas"
3220
+ },
3221
+ "color": {
3222
+ "default": "#3171B2",
3223
+ "description": "Color de la nota.",
3224
+ "type": "string"
3225
+ },
3226
+ "icon": {
3227
+ "default": "book",
3228
+ "description": "Icono de Lucide.",
3229
+ "type": "string"
3230
+ },
3231
+ "cover": {
3232
+ "description": "Portada del libro.",
3233
+ "type": "string"
3234
+ },
3235
+ "url": {
3236
+ "description": "URL del libro en Amazon o similar",
3237
+ "type": "string"
3238
+ },
3239
+ "read_url": {
3240
+ "description": "URL de la lectura del libro",
3241
+ "type": "string"
3242
+ }
3243
+ },
3244
+ "required": [
3245
+ "title",
3246
+ "author",
3247
+ "status",
3248
+ "type",
3249
+ "format"
3250
+ ],
3251
+ "description": "Libro"
3252
+ },
3253
+ "CatalogArticleSchema": {
3254
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3255
+ "type": "object",
3256
+ "properties": {
3257
+ "title": {
3258
+ "type": "string",
3259
+ "description": "Título del artículo"
3260
+ },
3261
+ "description": {
3262
+ "description": "Descripción",
3263
+ "anyOf": [
3264
+ {
3265
+ "type": "string"
3266
+ },
3267
+ {
3268
+ "type": "null"
3269
+ }
3270
+ ]
3271
+ },
3272
+ "excerpt": {
3273
+ "description": "Extracto del artículo",
3274
+ "type": "string"
3275
+ },
3276
+ "author": {
3277
+ "description": "Autores",
3278
+ "type": "array",
3279
+ "items": {
3280
+ "type": "string"
3281
+ }
3282
+ },
3283
+ "published": {
3284
+ "description": "Año de publicación",
3285
+ "anyOf": [
3286
+ {
3287
+ "type": "string"
3288
+ },
3289
+ {
3290
+ "type": "number"
3291
+ }
3292
+ ]
3293
+ }
3294
+ },
3295
+ "required": [
3296
+ "title"
3297
+ ],
3298
+ "description": "Artículo: Datos obtenibles de catalogación"
3299
+ },
3300
+ "CatalogBookSchema": {
3301
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3302
+ "type": "object",
3303
+ "properties": {
3304
+ "title": {
3305
+ "type": "string",
3306
+ "description": "Título del libro"
3307
+ },
3308
+ "subtitle": {
3309
+ "description": "Subtítulo del libro",
3310
+ "type": "string"
3311
+ },
3312
+ "description": {
3313
+ "description": "Descripción del libro",
3314
+ "type": "string"
3315
+ },
3316
+ "author": {
3317
+ "type": "array",
3318
+ "items": {
3319
+ "type": "string"
3320
+ },
3321
+ "description": "Autores"
3322
+ },
3323
+ "published": {
3324
+ "description": "Año de publicación",
3325
+ "anyOf": [
3326
+ {
3327
+ "type": "string"
3328
+ },
3329
+ {
3330
+ "type": "number"
3331
+ }
3332
+ ]
3333
+ },
3334
+ "categories": {
3335
+ "description": "Géneros",
3336
+ "type": "array",
3337
+ "items": {
3338
+ "type": "string"
3339
+ }
3340
+ }
3341
+ },
3342
+ "required": [
3343
+ "title",
3344
+ "author"
3345
+ ],
3346
+ "description": "Libro: Datos obtenibles de catalogación"
3347
+ },
6
3348
  "CatalogClothingSchema": {
7
3349
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8
3350
  "type": "object",
@@ -293,79 +3635,248 @@
293
3635
  "primary_color",
294
3636
  "layer"
295
3637
  ],
296
- "additionalProperties": false,
297
3638
  "description": "Prenda de ropa: Datos obtenibles de catalogación"
298
3639
  },
299
- "ClothingSchema": {
3640
+ "CatalogMovieSchema": {
300
3641
  "$schema": "https://json-schema.org/draft/2020-12/schema",
301
3642
  "type": "object",
302
3643
  "properties": {
303
- "name": {
3644
+ "title": {
304
3645
  "type": "string",
305
- "description": "Nombre descriptivo de la prenda de ropa"
3646
+ "description": "Título de la película"
306
3647
  },
307
- "garment": {
308
- "type": "string",
309
- "enum": [
310
- "Camisetas Interiores",
311
- "Calzoncillos",
312
- "Bragas",
313
- "Sujetadores",
314
- "Calcetines",
315
- "Camisetas",
316
- "Polos",
317
- "Camisas",
318
- "Blusas",
319
- "Tops",
320
- "Jerseys",
321
- "Sudaderas",
322
- "Cárdigans",
323
- "Chaquetas",
324
- "Pantalones",
325
- "Vaqueros",
326
- "Chinos",
327
- "Faldas",
328
- "Shorts",
329
- "Americanas",
330
- "Abrigos",
331
- "Gabardinas",
332
- "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",
359
- "Bikinis"
360
- ],
361
- "description": "Tipo de Prenda"
3648
+ "description": {
3649
+ "description": "Descripción de la película",
3650
+ "type": "string"
362
3651
  },
363
- "slot": {
364
- "type": "string",
365
- "enum": [
366
- "Superior",
367
- "Inferior",
368
- "Cuerpo Completo",
3652
+ "author": {
3653
+ "description": "Autores. Guionistas, directores, productores, etc.",
3654
+ "type": "array",
3655
+ "items": {
3656
+ "type": "string"
3657
+ }
3658
+ },
3659
+ "actors": {
3660
+ "description": "Actores",
3661
+ "type": "array",
3662
+ "items": {
3663
+ "type": "string"
3664
+ }
3665
+ },
3666
+ "published": {
3667
+ "description": "Año de publicación",
3668
+ "anyOf": [
3669
+ {
3670
+ "type": "string"
3671
+ },
3672
+ {
3673
+ "type": "number"
3674
+ }
3675
+ ]
3676
+ },
3677
+ "genres": {
3678
+ "description": "Géneros",
3679
+ "type": "array",
3680
+ "items": {
3681
+ "type": "string"
3682
+ }
3683
+ }
3684
+ },
3685
+ "required": [
3686
+ "title"
3687
+ ],
3688
+ "description": "Película: Datos obtenibles de catalogación"
3689
+ },
3690
+ "CatalogPaintingSchema": {
3691
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3692
+ "type": "object",
3693
+ "properties": {
3694
+ "title": {
3695
+ "description": "Título de la pintura",
3696
+ "type": "string"
3697
+ },
3698
+ "description": {
3699
+ "description": "Descripción",
3700
+ "type": "string"
3701
+ },
3702
+ "author": {
3703
+ "description": "Autores",
3704
+ "type": "array",
3705
+ "items": {
3706
+ "type": "string"
3707
+ }
3708
+ },
3709
+ "published": {
3710
+ "description": "Año de publicación",
3711
+ "type": "string"
3712
+ }
3713
+ },
3714
+ "description": "Pintura: Datos obtenibles de catalogación"
3715
+ },
3716
+ "CatalogWikipediaSchema": {
3717
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3718
+ "type": "object",
3719
+ "properties": {
3720
+ "title": {
3721
+ "type": "string",
3722
+ "description": "Título de la entrada de Wikipedia"
3723
+ },
3724
+ "description": {
3725
+ "description": "Descripción",
3726
+ "anyOf": [
3727
+ {
3728
+ "type": "string"
3729
+ },
3730
+ {
3731
+ "type": "null"
3732
+ }
3733
+ ]
3734
+ },
3735
+ "excerpt": {
3736
+ "description": "Extracto del artículo",
3737
+ "type": "string"
3738
+ },
3739
+ "author": {
3740
+ "description": "Autores",
3741
+ "type": "array",
3742
+ "items": {
3743
+ "type": "string"
3744
+ }
3745
+ },
3746
+ "published": {
3747
+ "description": "Año de publicación",
3748
+ "anyOf": [
3749
+ {
3750
+ "type": "string"
3751
+ },
3752
+ {
3753
+ "type": "number"
3754
+ }
3755
+ ]
3756
+ }
3757
+ },
3758
+ "required": [
3759
+ "title"
3760
+ ],
3761
+ "description": "Entrada de Wikipedia: Datos obtenibles de catalogación"
3762
+ },
3763
+ "CatalogYoutubeSchema": {
3764
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3765
+ "type": "object",
3766
+ "properties": {
3767
+ "title": {
3768
+ "type": "string",
3769
+ "description": "Título del vídeo de YouTube"
3770
+ },
3771
+ "description": {
3772
+ "description": "Descripción",
3773
+ "anyOf": [
3774
+ {
3775
+ "type": "string"
3776
+ },
3777
+ {
3778
+ "type": "null"
3779
+ }
3780
+ ]
3781
+ },
3782
+ "excerpt": {
3783
+ "description": "Extracto del artículo",
3784
+ "type": "string"
3785
+ },
3786
+ "author": {
3787
+ "description": "Autores",
3788
+ "type": "array",
3789
+ "items": {
3790
+ "type": "string"
3791
+ }
3792
+ },
3793
+ "published": {
3794
+ "description": "Año de publicación",
3795
+ "anyOf": [
3796
+ {
3797
+ "type": "string"
3798
+ },
3799
+ {
3800
+ "type": "number"
3801
+ }
3802
+ ]
3803
+ }
3804
+ },
3805
+ "required": [
3806
+ "title"
3807
+ ],
3808
+ "description": "Vídeo de YouTube: Datos obtenibles de catalogación"
3809
+ },
3810
+ "ClothingSchema": {
3811
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3812
+ "type": "object",
3813
+ "properties": {
3814
+ "name": {
3815
+ "type": "string",
3816
+ "description": "Nombre descriptivo de la prenda de ropa"
3817
+ },
3818
+ "garment": {
3819
+ "type": "string",
3820
+ "enum": [
3821
+ "Camisetas Interiores",
3822
+ "Calzoncillos",
3823
+ "Bragas",
3824
+ "Sujetadores",
3825
+ "Calcetines",
3826
+ "Camisetas",
3827
+ "Polos",
3828
+ "Camisas",
3829
+ "Blusas",
3830
+ "Tops",
3831
+ "Jerseys",
3832
+ "Sudaderas",
3833
+ "Cárdigans",
3834
+ "Chaquetas",
3835
+ "Pantalones",
3836
+ "Vaqueros",
3837
+ "Chinos",
3838
+ "Faldas",
3839
+ "Shorts",
3840
+ "Americanas",
3841
+ "Abrigos",
3842
+ "Gabardinas",
3843
+ "Parkas",
3844
+ "Cazadoras",
3845
+ "Chalecos",
3846
+ "Mallas",
3847
+ "Ropa Técnica",
3848
+ "Shorts Deportivos",
3849
+ "Camisetas Técnicas",
3850
+ "Vestidos",
3851
+ "Monos",
3852
+ "Zapatillas",
3853
+ "Zapatos",
3854
+ "Botas",
3855
+ "Sandalias",
3856
+ "Cinturones",
3857
+ "Gorras",
3858
+ "Sombreros",
3859
+ "Bufandas",
3860
+ "Guantes",
3861
+ "Bolsos",
3862
+ "Mochilas",
3863
+ "Gafas de Sol",
3864
+ "Pañuelos",
3865
+ "Relojes",
3866
+ "Joyas",
3867
+ "Pijamas",
3868
+ "Batas",
3869
+ "Bañadores",
3870
+ "Bikinis"
3871
+ ],
3872
+ "description": "Tipo de Prenda"
3873
+ },
3874
+ "slot": {
3875
+ "type": "string",
3876
+ "enum": [
3877
+ "Superior",
3878
+ "Inferior",
3879
+ "Cuerpo Completo",
369
3880
  "Exterior",
370
3881
  "Calzado",
371
3882
  "Accesorios"
@@ -650,21 +4161,44 @@
650
4161
  "const": "[[Prendas]]"
651
4162
  },
652
4163
  "areas": {
4164
+ "default": [
4165
+ "[[Hogar]]"
4166
+ ],
653
4167
  "type": "array",
654
4168
  "items": {
655
4169
  "type": "string",
656
- "const": "[[Hogar]]"
657
- }
4170
+ "enum": [
4171
+ "[[Alimentación]]",
4172
+ "[[Salud]]",
4173
+ "[[Conocimiento]]",
4174
+ "[[Pensamiento Estructurado]]",
4175
+ "[[Hogar]]",
4176
+ "[[Productividad]]",
4177
+ "[[Exploración]]",
4178
+ "[[Vínculos]]",
4179
+ "[[Ejercicio]]",
4180
+ "[[Energía Vital]]",
4181
+ "[[Trabajo]]",
4182
+ "[[Finanzas]]",
4183
+ "[[Salud Mental]]",
4184
+ "[[Creatividad]]"
4185
+ ],
4186
+ "description": "Área"
4187
+ },
4188
+ "description": "Áreas"
658
4189
  },
659
4190
  "color": {
660
- "type": "string",
661
- "const": "#CB6120"
4191
+ "default": "#CB6120",
4192
+ "description": "Color de la nota.",
4193
+ "type": "string"
662
4194
  },
663
4195
  "icon": {
664
- "type": "string",
665
- "const": "shirt"
4196
+ "default": "shirt",
4197
+ "description": "Icono de Lucide.",
4198
+ "type": "string"
666
4199
  },
667
4200
  "cover": {
4201
+ "description": "Foto de la prenda de ropa.",
668
4202
  "type": "string"
669
4203
  }
670
4204
  },
@@ -674,17 +4208,93 @@
674
4208
  "slot",
675
4209
  "primary_color",
676
4210
  "layer",
677
- "status",
678
4211
  "size",
679
4212
  "type",
680
- "subtype",
681
- "areas",
682
- "color",
683
- "icon"
4213
+ "subtype"
684
4214
  ],
685
- "additionalProperties": false,
686
4215
  "description": "Prenda de ropa"
687
4216
  },
4217
+ "DetailedArticleSchema": {
4218
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4219
+ "type": "object",
4220
+ "properties": {
4221
+ "status": {
4222
+ "type": "string",
4223
+ "enum": [
4224
+ "Pendiente",
4225
+ "En Proceso",
4226
+ "Leído",
4227
+ "Consolidado"
4228
+ ],
4229
+ "description": "Estado de lectura"
4230
+ },
4231
+ "projects": {
4232
+ "description": "Proyectos",
4233
+ "type": "array",
4234
+ "items": {
4235
+ "type": "string"
4236
+ }
4237
+ },
4238
+ "topics": {
4239
+ "description": "Temas",
4240
+ "type": "array",
4241
+ "items": {
4242
+ "type": "string"
4243
+ }
4244
+ },
4245
+ "rating": {
4246
+ "description": "Puntuación del artículo",
4247
+ "type": "number"
4248
+ }
4249
+ },
4250
+ "required": [
4251
+ "status"
4252
+ ],
4253
+ "description": "Artículo: Datos adicionales"
4254
+ },
4255
+ "DetailedBookSchema": {
4256
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4257
+ "type": "object",
4258
+ "properties": {
4259
+ "status": {
4260
+ "type": "string",
4261
+ "enum": [
4262
+ "Pendiente",
4263
+ "En Proceso",
4264
+ "Leído",
4265
+ "Consolidado"
4266
+ ],
4267
+ "description": "Estado de lectura"
4268
+ },
4269
+ "topics": {
4270
+ "description": "Temas",
4271
+ "type": "array",
4272
+ "items": {
4273
+ "type": "string"
4274
+ }
4275
+ },
4276
+ "rating": {
4277
+ "description": "Puntuación del libro",
4278
+ "type": "number"
4279
+ },
4280
+ "online_rating": {
4281
+ "description": "Puntuación en línea",
4282
+ "type": "number"
4283
+ },
4284
+ "last_time_read": {
4285
+ "description": "Última vez leído",
4286
+ "type": "string"
4287
+ },
4288
+ "times_read": {
4289
+ "description": "Veces leído",
4290
+ "type": "number"
4291
+ }
4292
+ },
4293
+ "required": [
4294
+ "status"
4295
+ ],
4296
+ "description": "Libro: Datos adicionales"
4297
+ },
688
4298
  "DetailedClothingSchema": {
689
4299
  "$schema": "https://json-schema.org/draft/2020-12/schema",
690
4300
  "type": "object",
@@ -754,52 +4364,1188 @@
754
4364
  }
755
4365
  },
756
4366
  "required": [
757
- "status",
758
4367
  "size"
759
4368
  ],
760
- "additionalProperties": false,
761
- "description": "Prenda de ropa: Datos adicionales de dificil obtención"
4369
+ "description": "Prenda de ropa: Datos adicionales"
762
4370
  },
763
- "MetaClothingSchema": {
4371
+ "DetailedMovieSchema": {
764
4372
  "$schema": "https://json-schema.org/draft/2020-12/schema",
765
4373
  "type": "object",
766
4374
  "properties": {
767
- "type": {
4375
+ "status": {
768
4376
  "type": "string",
769
- "const": "[[Recursos]]"
4377
+ "enum": [
4378
+ "Pendiente",
4379
+ "En progreso",
4380
+ "Visto"
4381
+ ],
4382
+ "description": "Estado de visualización"
770
4383
  },
771
- "subtype": {
772
- "type": "string",
773
- "const": "[[Prendas]]"
4384
+ "topics": {
4385
+ "description": "Temas",
4386
+ "anyOf": [
4387
+ {
4388
+ "type": "array",
4389
+ "items": {
4390
+ "type": "string"
4391
+ }
4392
+ },
4393
+ {
4394
+ "type": "null"
4395
+ }
4396
+ ]
774
4397
  },
775
- "areas": {
4398
+ "rating": {
4399
+ "description": "Puntuación de la película",
4400
+ "type": "number"
4401
+ },
4402
+ "online_rating": {
4403
+ "description": "Puntuación en línea",
4404
+ "type": "number"
4405
+ },
4406
+ "last_time_watched": {
4407
+ "description": "Última vez vista",
4408
+ "type": "string"
4409
+ },
4410
+ "times_watched": {
4411
+ "description": "Veces vista",
4412
+ "type": "number"
4413
+ }
4414
+ },
4415
+ "required": [
4416
+ "status"
4417
+ ],
4418
+ "description": "Película: Datos adicionales"
4419
+ },
4420
+ "DetailedPaintingSchema": {
4421
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4422
+ "type": "object",
4423
+ "properties": {
4424
+ "collection": {
4425
+ "description": "Colección",
4426
+ "type": "string"
4427
+ },
4428
+ "position": {
4429
+ "description": "Posición en la colección",
4430
+ "type": "string"
4431
+ },
4432
+ "projects": {
4433
+ "description": "Proyectos",
776
4434
  "type": "array",
777
4435
  "items": {
778
- "type": "string",
779
- "const": "[[Hogar]]"
4436
+ "type": "string"
780
4437
  }
781
4438
  },
782
- "color": {
783
- "type": "string",
784
- "const": "#CB6120"
4439
+ "topics": {
4440
+ "description": "Temas",
4441
+ "type": "array",
4442
+ "items": {
4443
+ "type": "string"
4444
+ }
785
4445
  },
786
- "icon": {
4446
+ "rating": {
4447
+ "description": "Puntuación del artículo",
4448
+ "type": "number"
4449
+ }
4450
+ },
4451
+ "description": "Pintura: Datos adicionales"
4452
+ },
4453
+ "DetailedWikipediaSchema": {
4454
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4455
+ "type": "object",
4456
+ "properties": {
4457
+ "status": {
787
4458
  "type": "string",
788
- "const": "shirt"
4459
+ "enum": [
4460
+ "Pendiente",
4461
+ "En Proceso",
4462
+ "Leído",
4463
+ "Consolidado"
4464
+ ],
4465
+ "description": "Estado de lectura"
789
4466
  },
790
- "cover": {
791
- "type": "string"
4467
+ "projects": {
4468
+ "description": "Proyectos",
4469
+ "type": "array",
4470
+ "items": {
4471
+ "type": "string"
4472
+ }
4473
+ },
4474
+ "topics": {
4475
+ "description": "Temas",
4476
+ "type": "array",
4477
+ "items": {
4478
+ "type": "string"
4479
+ }
4480
+ },
4481
+ "rating": {
4482
+ "description": "Puntuación del artículo",
4483
+ "type": "number"
792
4484
  }
793
4485
  },
794
4486
  "required": [
795
- "type",
796
- "subtype",
797
- "areas",
798
- "color",
799
- "icon"
4487
+ "status"
800
4488
  ],
801
- "additionalProperties": false,
802
- "description": "Prenda de ropa: Metadatos de Nota"
4489
+ "description": "Entrada de Wikipedia: Datos adicionales"
4490
+ },
4491
+ "DetailedYoutubeSchema": {
4492
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4493
+ "type": "object",
4494
+ "properties": {
4495
+ "status": {
4496
+ "type": "string",
4497
+ "enum": [
4498
+ "Pendiente",
4499
+ "En progreso",
4500
+ "Visto"
4501
+ ],
4502
+ "description": "Estado de visualización"
4503
+ },
4504
+ "projects": {
4505
+ "description": "Proyectos",
4506
+ "type": "array",
4507
+ "items": {
4508
+ "type": "string"
4509
+ }
4510
+ },
4511
+ "topics": {
4512
+ "description": "Temas",
4513
+ "type": "array",
4514
+ "items": {
4515
+ "type": "string"
4516
+ }
4517
+ },
4518
+ "rating": {
4519
+ "description": "Puntuación del artículo",
4520
+ "type": "number"
4521
+ }
4522
+ },
4523
+ "required": [
4524
+ "status"
4525
+ ],
4526
+ "description": "Vídeo de YouTube: Datos adicionales"
4527
+ },
4528
+ "MetaArticleSchema": {
4529
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4530
+ "type": "object",
4531
+ "properties": {
4532
+ "type": {
4533
+ "type": "string",
4534
+ "const": "[[Fuentes]]"
4535
+ },
4536
+ "format": {
4537
+ "type": "string",
4538
+ "const": "[[Artículos]]"
4539
+ },
4540
+ "areas": {
4541
+ "default": [
4542
+ "[[Conocimiento]]"
4543
+ ],
4544
+ "type": "array",
4545
+ "items": {
4546
+ "type": "string",
4547
+ "enum": [
4548
+ "[[Alimentación]]",
4549
+ "[[Salud]]",
4550
+ "[[Conocimiento]]",
4551
+ "[[Pensamiento Estructurado]]",
4552
+ "[[Hogar]]",
4553
+ "[[Productividad]]",
4554
+ "[[Exploración]]",
4555
+ "[[Vínculos]]",
4556
+ "[[Ejercicio]]",
4557
+ "[[Energía Vital]]",
4558
+ "[[Trabajo]]",
4559
+ "[[Finanzas]]",
4560
+ "[[Salud Mental]]",
4561
+ "[[Creatividad]]"
4562
+ ],
4563
+ "description": "Área"
4564
+ },
4565
+ "description": "Áreas"
4566
+ },
4567
+ "color": {
4568
+ "default": "#3171B2",
4569
+ "description": "Color de la nota.",
4570
+ "type": "string"
4571
+ },
4572
+ "icon": {
4573
+ "default": "newspaper",
4574
+ "description": "Icono de Lucide.",
4575
+ "type": "string"
4576
+ },
4577
+ "banner": {
4578
+ "description": "Banner de la nota.",
4579
+ "anyOf": [
4580
+ {
4581
+ "type": "string"
4582
+ },
4583
+ {
4584
+ "type": "null"
4585
+ }
4586
+ ]
4587
+ },
4588
+ "url": {
4589
+ "description": "URL del artículo",
4590
+ "type": "string"
4591
+ }
4592
+ },
4593
+ "required": [
4594
+ "type",
4595
+ "format"
4596
+ ],
4597
+ "description": "Artículo: Metadatos de Nota"
4598
+ },
4599
+ "MetaBookSchema": {
4600
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4601
+ "type": "object",
4602
+ "properties": {
4603
+ "type": {
4604
+ "type": "string",
4605
+ "const": "[[Fuentes]]"
4606
+ },
4607
+ "format": {
4608
+ "type": "string",
4609
+ "const": "[[Libros]]"
4610
+ },
4611
+ "areas": {
4612
+ "default": [
4613
+ "[[Conocimiento]]"
4614
+ ],
4615
+ "type": "array",
4616
+ "items": {
4617
+ "type": "string",
4618
+ "enum": [
4619
+ "[[Alimentación]]",
4620
+ "[[Salud]]",
4621
+ "[[Conocimiento]]",
4622
+ "[[Pensamiento Estructurado]]",
4623
+ "[[Hogar]]",
4624
+ "[[Productividad]]",
4625
+ "[[Exploración]]",
4626
+ "[[Vínculos]]",
4627
+ "[[Ejercicio]]",
4628
+ "[[Energía Vital]]",
4629
+ "[[Trabajo]]",
4630
+ "[[Finanzas]]",
4631
+ "[[Salud Mental]]",
4632
+ "[[Creatividad]]"
4633
+ ],
4634
+ "description": "Área"
4635
+ },
4636
+ "description": "Áreas"
4637
+ },
4638
+ "color": {
4639
+ "default": "#3171B2",
4640
+ "description": "Color de la nota.",
4641
+ "type": "string"
4642
+ },
4643
+ "icon": {
4644
+ "default": "book",
4645
+ "description": "Icono de Lucide.",
4646
+ "type": "string"
4647
+ },
4648
+ "cover": {
4649
+ "description": "Portada del libro.",
4650
+ "type": "string"
4651
+ },
4652
+ "url": {
4653
+ "description": "URL del libro en Amazon o similar",
4654
+ "type": "string"
4655
+ },
4656
+ "read_url": {
4657
+ "description": "URL de la lectura del libro",
4658
+ "type": "string"
4659
+ }
4660
+ },
4661
+ "required": [
4662
+ "type",
4663
+ "format"
4664
+ ],
4665
+ "description": "Libro: Metadatos de Nota"
4666
+ },
4667
+ "MetaClothingSchema": {
4668
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4669
+ "type": "object",
4670
+ "properties": {
4671
+ "type": {
4672
+ "type": "string",
4673
+ "const": "[[Recursos]]"
4674
+ },
4675
+ "subtype": {
4676
+ "type": "string",
4677
+ "const": "[[Prendas]]"
4678
+ },
4679
+ "areas": {
4680
+ "default": [
4681
+ "[[Hogar]]"
4682
+ ],
4683
+ "type": "array",
4684
+ "items": {
4685
+ "type": "string",
4686
+ "enum": [
4687
+ "[[Alimentación]]",
4688
+ "[[Salud]]",
4689
+ "[[Conocimiento]]",
4690
+ "[[Pensamiento Estructurado]]",
4691
+ "[[Hogar]]",
4692
+ "[[Productividad]]",
4693
+ "[[Exploración]]",
4694
+ "[[Vínculos]]",
4695
+ "[[Ejercicio]]",
4696
+ "[[Energía Vital]]",
4697
+ "[[Trabajo]]",
4698
+ "[[Finanzas]]",
4699
+ "[[Salud Mental]]",
4700
+ "[[Creatividad]]"
4701
+ ],
4702
+ "description": "Área"
4703
+ },
4704
+ "description": "Áreas"
4705
+ },
4706
+ "color": {
4707
+ "default": "#CB6120",
4708
+ "description": "Color de la nota.",
4709
+ "type": "string"
4710
+ },
4711
+ "icon": {
4712
+ "default": "shirt",
4713
+ "description": "Icono de Lucide.",
4714
+ "type": "string"
4715
+ },
4716
+ "cover": {
4717
+ "description": "Foto de la prenda de ropa.",
4718
+ "type": "string"
4719
+ }
4720
+ },
4721
+ "required": [
4722
+ "type",
4723
+ "subtype"
4724
+ ],
4725
+ "description": "Prenda de ropa: Metadatos de Nota"
4726
+ },
4727
+ "MetaMovieSchema": {
4728
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4729
+ "type": "object",
4730
+ "properties": {
4731
+ "type": {
4732
+ "type": "string",
4733
+ "const": "[[Fuentes]]"
4734
+ },
4735
+ "format": {
4736
+ "type": "string",
4737
+ "const": "[[Películas]]"
4738
+ },
4739
+ "areas": {
4740
+ "default": [
4741
+ "[[Creatividad]]"
4742
+ ],
4743
+ "type": "array",
4744
+ "items": {
4745
+ "type": "string",
4746
+ "enum": [
4747
+ "[[Alimentación]]",
4748
+ "[[Salud]]",
4749
+ "[[Conocimiento]]",
4750
+ "[[Pensamiento Estructurado]]",
4751
+ "[[Hogar]]",
4752
+ "[[Productividad]]",
4753
+ "[[Exploración]]",
4754
+ "[[Vínculos]]",
4755
+ "[[Ejercicio]]",
4756
+ "[[Energía Vital]]",
4757
+ "[[Trabajo]]",
4758
+ "[[Finanzas]]",
4759
+ "[[Salud Mental]]",
4760
+ "[[Creatividad]]"
4761
+ ],
4762
+ "description": "Área"
4763
+ },
4764
+ "description": "Áreas"
4765
+ },
4766
+ "color": {
4767
+ "default": "#BE9207",
4768
+ "description": "Color de la nota.",
4769
+ "type": "string"
4770
+ },
4771
+ "icon": {
4772
+ "default": "movie",
4773
+ "description": "Icono de Lucide.",
4774
+ "type": "string"
4775
+ },
4776
+ "cover": {
4777
+ "description": "Portada de la película.",
4778
+ "type": "string"
4779
+ },
4780
+ "url": {
4781
+ "type": "string",
4782
+ "description": "URL de la película en IMDB o similar"
4783
+ },
4784
+ "watch_url": {
4785
+ "description": "URL de la película en streaming",
4786
+ "type": "string"
4787
+ }
4788
+ },
4789
+ "required": [
4790
+ "type",
4791
+ "format",
4792
+ "url"
4793
+ ],
4794
+ "description": "Película: Metadatos de Nota"
4795
+ },
4796
+ "MetaPaintingSchema": {
4797
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4798
+ "type": "object",
4799
+ "properties": {
4800
+ "type": {
4801
+ "type": "string",
4802
+ "const": "[[Fuentes]]"
4803
+ },
4804
+ "format": {
4805
+ "type": "string",
4806
+ "const": "[[Pinturas]]"
4807
+ },
4808
+ "areas": {
4809
+ "default": [
4810
+ "[[Creatividad]]"
4811
+ ],
4812
+ "type": "array",
4813
+ "items": {
4814
+ "type": "string",
4815
+ "enum": [
4816
+ "[[Alimentación]]",
4817
+ "[[Salud]]",
4818
+ "[[Conocimiento]]",
4819
+ "[[Pensamiento Estructurado]]",
4820
+ "[[Hogar]]",
4821
+ "[[Productividad]]",
4822
+ "[[Exploración]]",
4823
+ "[[Vínculos]]",
4824
+ "[[Ejercicio]]",
4825
+ "[[Energía Vital]]",
4826
+ "[[Trabajo]]",
4827
+ "[[Finanzas]]",
4828
+ "[[Salud Mental]]",
4829
+ "[[Creatividad]]"
4830
+ ],
4831
+ "description": "Área"
4832
+ },
4833
+ "description": "Áreas"
4834
+ },
4835
+ "color": {
4836
+ "default": "#BE9207",
4837
+ "description": "Color de la nota.",
4838
+ "type": "string"
4839
+ },
4840
+ "icon": {
4841
+ "default": "frame",
4842
+ "description": "Icono de Lucide.",
4843
+ "type": "string"
4844
+ },
4845
+ "cover": {
4846
+ "type": "string",
4847
+ "description": "Imagen de la pintura."
4848
+ }
4849
+ },
4850
+ "required": [
4851
+ "type",
4852
+ "format",
4853
+ "cover"
4854
+ ],
4855
+ "description": "Pintura: Metadatos de Nota"
4856
+ },
4857
+ "MetaWikipediaSchema": {
4858
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4859
+ "type": "object",
4860
+ "properties": {
4861
+ "type": {
4862
+ "type": "string",
4863
+ "const": "[[Fuentes]]"
4864
+ },
4865
+ "format": {
4866
+ "type": "string",
4867
+ "const": "[[Entradas de Enciclopedia]]"
4868
+ },
4869
+ "areas": {
4870
+ "default": [
4871
+ "[[Conocimiento]]"
4872
+ ],
4873
+ "type": "array",
4874
+ "items": {
4875
+ "type": "string",
4876
+ "enum": [
4877
+ "[[Alimentación]]",
4878
+ "[[Salud]]",
4879
+ "[[Conocimiento]]",
4880
+ "[[Pensamiento Estructurado]]",
4881
+ "[[Hogar]]",
4882
+ "[[Productividad]]",
4883
+ "[[Exploración]]",
4884
+ "[[Vínculos]]",
4885
+ "[[Ejercicio]]",
4886
+ "[[Energía Vital]]",
4887
+ "[[Trabajo]]",
4888
+ "[[Finanzas]]",
4889
+ "[[Salud Mental]]",
4890
+ "[[Creatividad]]"
4891
+ ],
4892
+ "description": "Área"
4893
+ },
4894
+ "description": "Áreas"
4895
+ },
4896
+ "color": {
4897
+ "default": "#3171B2",
4898
+ "description": "Color de la nota.",
4899
+ "type": "string"
4900
+ },
4901
+ "icon": {
4902
+ "default": "wikipedia",
4903
+ "description": "Icono de Lucide.",
4904
+ "type": "string"
4905
+ },
4906
+ "banner": {
4907
+ "description": "Banner de la nota.",
4908
+ "anyOf": [
4909
+ {
4910
+ "type": "string"
4911
+ },
4912
+ {
4913
+ "type": "null"
4914
+ }
4915
+ ]
4916
+ },
4917
+ "url": {
4918
+ "description": "URL del artículo",
4919
+ "type": "string"
4920
+ },
4921
+ "platform": {
4922
+ "type": "string",
4923
+ "const": "Wikipedia"
4924
+ }
4925
+ },
4926
+ "required": [
4927
+ "type",
4928
+ "format",
4929
+ "platform"
4930
+ ],
4931
+ "description": "Entrada de Wikipedia: Metadatos de Nota"
4932
+ },
4933
+ "MetaYoutubeSchema": {
4934
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4935
+ "type": "object",
4936
+ "properties": {
4937
+ "type": {
4938
+ "type": "string",
4939
+ "const": "[[Fuentes]]"
4940
+ },
4941
+ "format": {
4942
+ "type": "string",
4943
+ "const": "[[Vídeos]]"
4944
+ },
4945
+ "areas": {
4946
+ "default": [
4947
+ "[[Conocimiento]]"
4948
+ ],
4949
+ "type": "array",
4950
+ "items": {
4951
+ "type": "string",
4952
+ "enum": [
4953
+ "[[Alimentación]]",
4954
+ "[[Salud]]",
4955
+ "[[Conocimiento]]",
4956
+ "[[Pensamiento Estructurado]]",
4957
+ "[[Hogar]]",
4958
+ "[[Productividad]]",
4959
+ "[[Exploración]]",
4960
+ "[[Vínculos]]",
4961
+ "[[Ejercicio]]",
4962
+ "[[Energía Vital]]",
4963
+ "[[Trabajo]]",
4964
+ "[[Finanzas]]",
4965
+ "[[Salud Mental]]",
4966
+ "[[Creatividad]]"
4967
+ ],
4968
+ "description": "Área"
4969
+ },
4970
+ "description": "Áreas"
4971
+ },
4972
+ "color": {
4973
+ "default": "#3171B2",
4974
+ "description": "Color de la nota.",
4975
+ "type": "string"
4976
+ },
4977
+ "icon": {
4978
+ "default": "youtube",
4979
+ "description": "Icono de Lucide.",
4980
+ "type": "string"
4981
+ },
4982
+ "banner": {
4983
+ "description": "Banner de la nota.",
4984
+ "anyOf": [
4985
+ {
4986
+ "type": "string"
4987
+ },
4988
+ {
4989
+ "type": "null"
4990
+ }
4991
+ ]
4992
+ },
4993
+ "url": {
4994
+ "description": "URL del artículo",
4995
+ "type": "string"
4996
+ },
4997
+ "platform": {
4998
+ "type": "string",
4999
+ "const": "YouTube"
5000
+ }
5001
+ },
5002
+ "required": [
5003
+ "type",
5004
+ "format",
5005
+ "platform"
5006
+ ],
5007
+ "description": "Vídeo de YouTube: Metadatos de Nota"
5008
+ },
5009
+ "MovieSchema": {
5010
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5011
+ "type": "object",
5012
+ "properties": {
5013
+ "title": {
5014
+ "type": "string",
5015
+ "description": "Título de la película"
5016
+ },
5017
+ "description": {
5018
+ "description": "Descripción de la película",
5019
+ "type": "string"
5020
+ },
5021
+ "author": {
5022
+ "description": "Autores. Guionistas, directores, productores, etc.",
5023
+ "type": "array",
5024
+ "items": {
5025
+ "type": "string"
5026
+ }
5027
+ },
5028
+ "actors": {
5029
+ "description": "Actores",
5030
+ "type": "array",
5031
+ "items": {
5032
+ "type": "string"
5033
+ }
5034
+ },
5035
+ "published": {
5036
+ "description": "Año de publicación",
5037
+ "anyOf": [
5038
+ {
5039
+ "type": "string"
5040
+ },
5041
+ {
5042
+ "type": "number"
5043
+ }
5044
+ ]
5045
+ },
5046
+ "genres": {
5047
+ "description": "Géneros",
5048
+ "type": "array",
5049
+ "items": {
5050
+ "type": "string"
5051
+ }
5052
+ },
5053
+ "status": {
5054
+ "type": "string",
5055
+ "enum": [
5056
+ "Pendiente",
5057
+ "En progreso",
5058
+ "Visto"
5059
+ ],
5060
+ "description": "Estado de visualización"
5061
+ },
5062
+ "topics": {
5063
+ "description": "Temas",
5064
+ "anyOf": [
5065
+ {
5066
+ "type": "array",
5067
+ "items": {
5068
+ "type": "string"
5069
+ }
5070
+ },
5071
+ {
5072
+ "type": "null"
5073
+ }
5074
+ ]
5075
+ },
5076
+ "rating": {
5077
+ "description": "Puntuación de la película",
5078
+ "type": "number"
5079
+ },
5080
+ "online_rating": {
5081
+ "description": "Puntuación en línea",
5082
+ "type": "number"
5083
+ },
5084
+ "last_time_watched": {
5085
+ "description": "Última vez vista",
5086
+ "type": "string"
5087
+ },
5088
+ "times_watched": {
5089
+ "description": "Veces vista",
5090
+ "type": "number"
5091
+ },
5092
+ "type": {
5093
+ "type": "string",
5094
+ "const": "[[Fuentes]]"
5095
+ },
5096
+ "format": {
5097
+ "type": "string",
5098
+ "const": "[[Películas]]"
5099
+ },
5100
+ "areas": {
5101
+ "default": [
5102
+ "[[Creatividad]]"
5103
+ ],
5104
+ "type": "array",
5105
+ "items": {
5106
+ "type": "string",
5107
+ "enum": [
5108
+ "[[Alimentación]]",
5109
+ "[[Salud]]",
5110
+ "[[Conocimiento]]",
5111
+ "[[Pensamiento Estructurado]]",
5112
+ "[[Hogar]]",
5113
+ "[[Productividad]]",
5114
+ "[[Exploración]]",
5115
+ "[[Vínculos]]",
5116
+ "[[Ejercicio]]",
5117
+ "[[Energía Vital]]",
5118
+ "[[Trabajo]]",
5119
+ "[[Finanzas]]",
5120
+ "[[Salud Mental]]",
5121
+ "[[Creatividad]]"
5122
+ ],
5123
+ "description": "Área"
5124
+ },
5125
+ "description": "Áreas"
5126
+ },
5127
+ "color": {
5128
+ "default": "#BE9207",
5129
+ "description": "Color de la nota.",
5130
+ "type": "string"
5131
+ },
5132
+ "icon": {
5133
+ "default": "movie",
5134
+ "description": "Icono de Lucide.",
5135
+ "type": "string"
5136
+ },
5137
+ "cover": {
5138
+ "description": "Portada de la película.",
5139
+ "type": "string"
5140
+ },
5141
+ "url": {
5142
+ "type": "string",
5143
+ "description": "URL de la película en IMDB o similar"
5144
+ },
5145
+ "watch_url": {
5146
+ "description": "URL de la película en streaming",
5147
+ "type": "string"
5148
+ }
5149
+ },
5150
+ "required": [
5151
+ "title",
5152
+ "status",
5153
+ "type",
5154
+ "format",
5155
+ "url"
5156
+ ],
5157
+ "description": "Película"
5158
+ },
5159
+ "PaintingSchema": {
5160
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5161
+ "type": "object",
5162
+ "properties": {
5163
+ "title": {
5164
+ "description": "Título de la pintura",
5165
+ "type": "string"
5166
+ },
5167
+ "description": {
5168
+ "description": "Descripción",
5169
+ "type": "string"
5170
+ },
5171
+ "author": {
5172
+ "description": "Autores",
5173
+ "type": "array",
5174
+ "items": {
5175
+ "type": "string"
5176
+ }
5177
+ },
5178
+ "published": {
5179
+ "description": "Año de publicación",
5180
+ "type": "string"
5181
+ },
5182
+ "collection": {
5183
+ "description": "Colección",
5184
+ "type": "string"
5185
+ },
5186
+ "position": {
5187
+ "description": "Posición en la colección",
5188
+ "type": "string"
5189
+ },
5190
+ "projects": {
5191
+ "description": "Proyectos",
5192
+ "type": "array",
5193
+ "items": {
5194
+ "type": "string"
5195
+ }
5196
+ },
5197
+ "topics": {
5198
+ "description": "Temas",
5199
+ "type": "array",
5200
+ "items": {
5201
+ "type": "string"
5202
+ }
5203
+ },
5204
+ "rating": {
5205
+ "description": "Puntuación del artículo",
5206
+ "type": "number"
5207
+ },
5208
+ "type": {
5209
+ "type": "string",
5210
+ "const": "[[Fuentes]]"
5211
+ },
5212
+ "format": {
5213
+ "type": "string",
5214
+ "const": "[[Pinturas]]"
5215
+ },
5216
+ "areas": {
5217
+ "default": [
5218
+ "[[Creatividad]]"
5219
+ ],
5220
+ "type": "array",
5221
+ "items": {
5222
+ "type": "string",
5223
+ "enum": [
5224
+ "[[Alimentación]]",
5225
+ "[[Salud]]",
5226
+ "[[Conocimiento]]",
5227
+ "[[Pensamiento Estructurado]]",
5228
+ "[[Hogar]]",
5229
+ "[[Productividad]]",
5230
+ "[[Exploración]]",
5231
+ "[[Vínculos]]",
5232
+ "[[Ejercicio]]",
5233
+ "[[Energía Vital]]",
5234
+ "[[Trabajo]]",
5235
+ "[[Finanzas]]",
5236
+ "[[Salud Mental]]",
5237
+ "[[Creatividad]]"
5238
+ ],
5239
+ "description": "Área"
5240
+ },
5241
+ "description": "Áreas"
5242
+ },
5243
+ "color": {
5244
+ "default": "#BE9207",
5245
+ "description": "Color de la nota.",
5246
+ "type": "string"
5247
+ },
5248
+ "icon": {
5249
+ "default": "frame",
5250
+ "description": "Icono de Lucide.",
5251
+ "type": "string"
5252
+ },
5253
+ "cover": {
5254
+ "type": "string",
5255
+ "description": "Imagen de la pintura."
5256
+ }
5257
+ },
5258
+ "required": [
5259
+ "type",
5260
+ "format",
5261
+ "cover"
5262
+ ],
5263
+ "description": "Pintura"
5264
+ },
5265
+ "WikipediaSchema": {
5266
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5267
+ "type": "object",
5268
+ "properties": {
5269
+ "title": {
5270
+ "type": "string",
5271
+ "description": "Título de la entrada de Wikipedia"
5272
+ },
5273
+ "description": {
5274
+ "description": "Descripción",
5275
+ "anyOf": [
5276
+ {
5277
+ "type": "string"
5278
+ },
5279
+ {
5280
+ "type": "null"
5281
+ }
5282
+ ]
5283
+ },
5284
+ "excerpt": {
5285
+ "description": "Extracto del artículo",
5286
+ "type": "string"
5287
+ },
5288
+ "author": {
5289
+ "description": "Autores",
5290
+ "type": "array",
5291
+ "items": {
5292
+ "type": "string"
5293
+ }
5294
+ },
5295
+ "published": {
5296
+ "description": "Año de publicación",
5297
+ "anyOf": [
5298
+ {
5299
+ "type": "string"
5300
+ },
5301
+ {
5302
+ "type": "number"
5303
+ }
5304
+ ]
5305
+ },
5306
+ "status": {
5307
+ "type": "string",
5308
+ "enum": [
5309
+ "Pendiente",
5310
+ "En Proceso",
5311
+ "Leído",
5312
+ "Consolidado"
5313
+ ],
5314
+ "description": "Estado de lectura"
5315
+ },
5316
+ "projects": {
5317
+ "description": "Proyectos",
5318
+ "type": "array",
5319
+ "items": {
5320
+ "type": "string"
5321
+ }
5322
+ },
5323
+ "topics": {
5324
+ "description": "Temas",
5325
+ "type": "array",
5326
+ "items": {
5327
+ "type": "string"
5328
+ }
5329
+ },
5330
+ "rating": {
5331
+ "description": "Puntuación del artículo",
5332
+ "type": "number"
5333
+ },
5334
+ "type": {
5335
+ "type": "string",
5336
+ "const": "[[Fuentes]]"
5337
+ },
5338
+ "format": {
5339
+ "type": "string",
5340
+ "const": "[[Entradas de Enciclopedia]]"
5341
+ },
5342
+ "areas": {
5343
+ "default": [
5344
+ "[[Conocimiento]]"
5345
+ ],
5346
+ "type": "array",
5347
+ "items": {
5348
+ "type": "string",
5349
+ "enum": [
5350
+ "[[Alimentación]]",
5351
+ "[[Salud]]",
5352
+ "[[Conocimiento]]",
5353
+ "[[Pensamiento Estructurado]]",
5354
+ "[[Hogar]]",
5355
+ "[[Productividad]]",
5356
+ "[[Exploración]]",
5357
+ "[[Vínculos]]",
5358
+ "[[Ejercicio]]",
5359
+ "[[Energía Vital]]",
5360
+ "[[Trabajo]]",
5361
+ "[[Finanzas]]",
5362
+ "[[Salud Mental]]",
5363
+ "[[Creatividad]]"
5364
+ ],
5365
+ "description": "Área"
5366
+ },
5367
+ "description": "Áreas"
5368
+ },
5369
+ "color": {
5370
+ "default": "#3171B2",
5371
+ "description": "Color de la nota.",
5372
+ "type": "string"
5373
+ },
5374
+ "icon": {
5375
+ "default": "wikipedia",
5376
+ "description": "Icono de Lucide.",
5377
+ "type": "string"
5378
+ },
5379
+ "banner": {
5380
+ "description": "Banner de la nota.",
5381
+ "anyOf": [
5382
+ {
5383
+ "type": "string"
5384
+ },
5385
+ {
5386
+ "type": "null"
5387
+ }
5388
+ ]
5389
+ },
5390
+ "url": {
5391
+ "description": "URL del artículo",
5392
+ "type": "string"
5393
+ },
5394
+ "platform": {
5395
+ "type": "string",
5396
+ "const": "Wikipedia"
5397
+ }
5398
+ },
5399
+ "required": [
5400
+ "title",
5401
+ "status",
5402
+ "type",
5403
+ "format",
5404
+ "platform"
5405
+ ],
5406
+ "description": "Entrada de Wikipedia"
5407
+ },
5408
+ "YoutubeSchema": {
5409
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5410
+ "type": "object",
5411
+ "properties": {
5412
+ "title": {
5413
+ "type": "string",
5414
+ "description": "Título del vídeo de YouTube"
5415
+ },
5416
+ "description": {
5417
+ "description": "Descripción",
5418
+ "anyOf": [
5419
+ {
5420
+ "type": "string"
5421
+ },
5422
+ {
5423
+ "type": "null"
5424
+ }
5425
+ ]
5426
+ },
5427
+ "excerpt": {
5428
+ "description": "Extracto del artículo",
5429
+ "type": "string"
5430
+ },
5431
+ "author": {
5432
+ "description": "Autores",
5433
+ "type": "array",
5434
+ "items": {
5435
+ "type": "string"
5436
+ }
5437
+ },
5438
+ "published": {
5439
+ "description": "Año de publicación",
5440
+ "anyOf": [
5441
+ {
5442
+ "type": "string"
5443
+ },
5444
+ {
5445
+ "type": "number"
5446
+ }
5447
+ ]
5448
+ },
5449
+ "status": {
5450
+ "type": "string",
5451
+ "enum": [
5452
+ "Pendiente",
5453
+ "En progreso",
5454
+ "Visto"
5455
+ ],
5456
+ "description": "Estado de visualización"
5457
+ },
5458
+ "projects": {
5459
+ "description": "Proyectos",
5460
+ "type": "array",
5461
+ "items": {
5462
+ "type": "string"
5463
+ }
5464
+ },
5465
+ "topics": {
5466
+ "description": "Temas",
5467
+ "type": "array",
5468
+ "items": {
5469
+ "type": "string"
5470
+ }
5471
+ },
5472
+ "rating": {
5473
+ "description": "Puntuación del artículo",
5474
+ "type": "number"
5475
+ },
5476
+ "type": {
5477
+ "type": "string",
5478
+ "const": "[[Fuentes]]"
5479
+ },
5480
+ "format": {
5481
+ "type": "string",
5482
+ "const": "[[Vídeos]]"
5483
+ },
5484
+ "areas": {
5485
+ "default": [
5486
+ "[[Conocimiento]]"
5487
+ ],
5488
+ "type": "array",
5489
+ "items": {
5490
+ "type": "string",
5491
+ "enum": [
5492
+ "[[Alimentación]]",
5493
+ "[[Salud]]",
5494
+ "[[Conocimiento]]",
5495
+ "[[Pensamiento Estructurado]]",
5496
+ "[[Hogar]]",
5497
+ "[[Productividad]]",
5498
+ "[[Exploración]]",
5499
+ "[[Vínculos]]",
5500
+ "[[Ejercicio]]",
5501
+ "[[Energía Vital]]",
5502
+ "[[Trabajo]]",
5503
+ "[[Finanzas]]",
5504
+ "[[Salud Mental]]",
5505
+ "[[Creatividad]]"
5506
+ ],
5507
+ "description": "Área"
5508
+ },
5509
+ "description": "Áreas"
5510
+ },
5511
+ "color": {
5512
+ "default": "#3171B2",
5513
+ "description": "Color de la nota.",
5514
+ "type": "string"
5515
+ },
5516
+ "icon": {
5517
+ "default": "youtube",
5518
+ "description": "Icono de Lucide.",
5519
+ "type": "string"
5520
+ },
5521
+ "banner": {
5522
+ "description": "Banner de la nota.",
5523
+ "anyOf": [
5524
+ {
5525
+ "type": "string"
5526
+ },
5527
+ {
5528
+ "type": "null"
5529
+ }
5530
+ ]
5531
+ },
5532
+ "url": {
5533
+ "description": "URL del artículo",
5534
+ "type": "string"
5535
+ },
5536
+ "platform": {
5537
+ "type": "string",
5538
+ "const": "YouTube"
5539
+ }
5540
+ },
5541
+ "required": [
5542
+ "title",
5543
+ "status",
5544
+ "type",
5545
+ "format",
5546
+ "platform"
5547
+ ],
5548
+ "description": "Vídeo de YouTube"
803
5549
  }
804
5550
  }
805
5551
  }