@segha/catalog 2.0.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (175) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +355 -4
  3. package/en/Areas.ts +24 -0
  4. package/en/Article/index.ts +29 -0
  5. package/en/Article/types.ts +9 -0
  6. package/en/Book/index.ts +33 -0
  7. package/en/Book/types.ts +9 -0
  8. package/en/Clothing/index.ts +9 -9
  9. package/en/Movie/index.ts +34 -0
  10. package/en/Movie/types.ts +9 -0
  11. package/en/Note.ts +15 -0
  12. package/en/Wikipedia/index.ts +18 -0
  13. package/en/Wikipedia/types.ts +10 -0
  14. package/en/index.ts +5 -1
  15. package/en/types.ts +7 -0
  16. package/es/Areas.ts +24 -0
  17. package/es/Article/index.ts +34 -0
  18. package/es/Article/types.ts +9 -0
  19. package/es/Book/index.ts +36 -0
  20. package/es/Book/types.ts +9 -0
  21. package/es/Clothing/index.ts +11 -10
  22. package/es/Icon.ts +1673 -0
  23. package/es/Movie/index.ts +36 -0
  24. package/es/Movie/types.ts +9 -0
  25. package/es/Note.ts +19 -0
  26. package/es/Painting/index.ts +30 -0
  27. package/es/Painting/types.ts +9 -0
  28. package/es/Wikipedia/index.ts +18 -0
  29. package/es/Wikipedia/types.ts +10 -0
  30. package/es/Youtube/index.ts +19 -0
  31. package/es/Youtube/types.ts +10 -0
  32. package/es/index.ts +7 -0
  33. package/es/types.ts +10 -0
  34. package/json-schemas/ArticleSchema.json +102 -0
  35. package/json-schemas/BookSchema.json +123 -0
  36. package/json-schemas/CatalogArticleSchema.json +34 -0
  37. package/json-schemas/CatalogBookSchema.json +43 -0
  38. package/json-schemas/CatalogClothingSchema.json +0 -1
  39. package/json-schemas/CatalogMovieSchema.json +48 -0
  40. package/json-schemas/CatalogWikipediaSchema.json +34 -0
  41. package/json-schemas/ClothingSchema.json +0 -2
  42. package/json-schemas/DetailedArticleSchema.json +41 -0
  43. package/json-schemas/DetailedBookSchema.json +48 -0
  44. package/json-schemas/DetailedClothingSchema.json +0 -2
  45. package/json-schemas/DetailedMovieSchema.json +47 -0
  46. package/json-schemas/DetailedWikipediaSchema.json +41 -0
  47. package/json-schemas/MetaArticleSchema.json +45 -0
  48. package/json-schemas/MetaBookSchema.json +50 -0
  49. package/json-schemas/MetaClothingSchema.json +0 -1
  50. package/json-schemas/MetaMovieSchema.json +50 -0
  51. package/json-schemas/MetaWikipediaSchema.json +50 -0
  52. package/json-schemas/MovieSchema.json +127 -0
  53. package/json-schemas/NoteSchema.json +846 -0
  54. package/json-schemas/WikipediaSchema.json +107 -0
  55. package/json-schemas/en/Area.json +21 -0
  56. package/json-schemas/en/Areas.json +25 -0
  57. package/json-schemas/en/Article/ArticleSchema.json +102 -0
  58. package/json-schemas/en/Article/CatalogArticleSchema.json +34 -0
  59. package/json-schemas/en/Article/DetailedArticleSchema.json +41 -0
  60. package/json-schemas/en/Article/MetaArticleSchema.json +45 -0
  61. package/json-schemas/en/Article/index.json +229 -0
  62. package/json-schemas/en/ArticleSchema.json +102 -0
  63. package/json-schemas/en/Book/BookSchema.json +123 -0
  64. package/json-schemas/en/Book/CatalogBookSchema.json +43 -0
  65. package/json-schemas/en/Book/DetailedBookSchema.json +48 -0
  66. package/json-schemas/en/Book/MetaBookSchema.json +50 -0
  67. package/json-schemas/en/Book/index.json +271 -0
  68. package/json-schemas/en/BookSchema.json +123 -0
  69. package/json-schemas/en/CatalogArticleSchema.json +34 -0
  70. package/json-schemas/en/CatalogBookSchema.json +43 -0
  71. package/json-schemas/en/CatalogClothingSchema.json +0 -1
  72. package/json-schemas/en/CatalogMovieSchema.json +48 -0
  73. package/json-schemas/en/CatalogWikipediaSchema.json +34 -0
  74. package/json-schemas/en/Clothing/CatalogClothingSchema.json +0 -1
  75. package/json-schemas/en/Clothing/ClothingSchema.json +0 -2
  76. package/json-schemas/en/Clothing/DetailedClothingSchema.json +0 -2
  77. package/json-schemas/en/Clothing/MetaClothingSchema.json +0 -1
  78. package/json-schemas/en/Clothing/index.json +0 -6
  79. package/json-schemas/en/ClothingSchema.json +0 -2
  80. package/json-schemas/en/DetailedArticleSchema.json +41 -0
  81. package/json-schemas/en/DetailedBookSchema.json +48 -0
  82. package/json-schemas/en/DetailedClothingSchema.json +0 -2
  83. package/json-schemas/en/DetailedMovieSchema.json +47 -0
  84. package/json-schemas/en/DetailedWikipediaSchema.json +41 -0
  85. package/json-schemas/en/FirstLevelArea.json +21 -0
  86. package/json-schemas/en/MetaArticleSchema.json +45 -0
  87. package/json-schemas/en/MetaBookSchema.json +50 -0
  88. package/json-schemas/en/MetaClothingSchema.json +0 -1
  89. package/json-schemas/en/MetaMovieSchema.json +50 -0
  90. package/json-schemas/en/MetaWikipediaSchema.json +50 -0
  91. package/json-schemas/en/Movie/CatalogMovieSchema.json +48 -0
  92. package/json-schemas/en/Movie/DetailedMovieSchema.json +47 -0
  93. package/json-schemas/en/Movie/MetaMovieSchema.json +50 -0
  94. package/json-schemas/en/Movie/MovieSchema.json +127 -0
  95. package/json-schemas/en/Movie/index.json +279 -0
  96. package/json-schemas/en/MovieSchema.json +127 -0
  97. package/json-schemas/en/NoteSchema.json +846 -0
  98. package/json-schemas/en/Wikipedia/CatalogWikipediaSchema.json +34 -0
  99. package/json-schemas/en/Wikipedia/DetailedWikipediaSchema.json +41 -0
  100. package/json-schemas/en/Wikipedia/MetaWikipediaSchema.json +50 -0
  101. package/json-schemas/en/Wikipedia/WikipediaSchema.json +107 -0
  102. package/json-schemas/en/Wikipedia/index.json +239 -0
  103. package/json-schemas/en/WikipediaSchema.json +107 -0
  104. package/json-schemas/en/index.json +1923 -26
  105. package/json-schemas/es/Area.json +21 -0
  106. package/json-schemas/es/Areas.json +25 -0
  107. package/json-schemas/es/Article/ArticleSchema.json +138 -0
  108. package/json-schemas/es/Article/CatalogArticleSchema.json +47 -0
  109. package/json-schemas/es/Article/DetailedArticleSchema.json +38 -0
  110. package/json-schemas/es/Article/MetaArticleSchema.json +71 -0
  111. package/json-schemas/es/Article/index.json +301 -0
  112. package/json-schemas/es/ArticleSchema.json +138 -0
  113. package/json-schemas/es/Book/BookSchema.json +141 -0
  114. package/json-schemas/es/Book/CatalogBookSchema.json +48 -0
  115. package/json-schemas/es/Book/DetailedBookSchema.json +43 -0
  116. package/json-schemas/es/Book/MetaBookSchema.json +68 -0
  117. package/json-schemas/es/Book/index.json +307 -0
  118. package/json-schemas/es/BookSchema.json +141 -0
  119. package/json-schemas/es/CatalogArticleSchema.json +47 -0
  120. package/json-schemas/es/CatalogBookSchema.json +48 -0
  121. package/json-schemas/es/CatalogClothingSchema.json +0 -1
  122. package/json-schemas/es/CatalogMovieSchema.json +50 -0
  123. package/json-schemas/es/CatalogPaintingSchema.json +26 -0
  124. package/json-schemas/es/CatalogWikipediaSchema.json +47 -0
  125. package/json-schemas/es/CatalogYoutubeSchema.json +47 -0
  126. package/json-schemas/es/Clothing/CatalogClothingSchema.json +0 -1
  127. package/json-schemas/es/Clothing/ClothingSchema.json +30 -12
  128. package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -3
  129. package/json-schemas/es/Clothing/MetaClothingSchema.json +30 -11
  130. package/json-schemas/es/Clothing/index.json +61 -27
  131. package/json-schemas/es/ClothingSchema.json +30 -12
  132. package/json-schemas/es/DetailedArticleSchema.json +38 -0
  133. package/json-schemas/es/DetailedBookSchema.json +43 -0
  134. package/json-schemas/es/DetailedClothingSchema.json +1 -3
  135. package/json-schemas/es/DetailedMovieSchema.json +49 -0
  136. package/json-schemas/es/DetailedPaintingSchema.json +33 -0
  137. package/json-schemas/es/DetailedWikipediaSchema.json +38 -0
  138. package/json-schemas/es/DetailedYoutubeSchema.json +37 -0
  139. package/json-schemas/es/FirstLevelArea.json +21 -0
  140. package/json-schemas/es/Icon.json +1675 -0
  141. package/json-schemas/es/MetaArticleSchema.json +71 -0
  142. package/json-schemas/es/MetaBookSchema.json +68 -0
  143. package/json-schemas/es/MetaClothingSchema.json +30 -11
  144. package/json-schemas/es/MetaMovieSchema.json +69 -0
  145. package/json-schemas/es/MetaPaintingSchema.json +61 -0
  146. package/json-schemas/es/MetaWikipediaSchema.json +76 -0
  147. package/json-schemas/es/MetaYoutubeSchema.json +76 -0
  148. package/json-schemas/es/Movie/CatalogMovieSchema.json +50 -0
  149. package/json-schemas/es/Movie/DetailedMovieSchema.json +49 -0
  150. package/json-schemas/es/Movie/MetaMovieSchema.json +69 -0
  151. package/json-schemas/es/Movie/MovieSchema.json +150 -0
  152. package/json-schemas/es/Movie/index.json +325 -0
  153. package/json-schemas/es/MovieSchema.json +150 -0
  154. package/json-schemas/es/NoteSchema.json +1226 -0
  155. package/json-schemas/es/Painting/CatalogPaintingSchema.json +26 -0
  156. package/json-schemas/es/Painting/DetailedPaintingSchema.json +33 -0
  157. package/json-schemas/es/Painting/MetaPaintingSchema.json +61 -0
  158. package/json-schemas/es/Painting/PaintingSchema.json +106 -0
  159. package/json-schemas/es/Painting/index.json +233 -0
  160. package/json-schemas/es/PaintingSchema.json +106 -0
  161. package/json-schemas/es/Wikipedia/CatalogWikipediaSchema.json +47 -0
  162. package/json-schemas/es/Wikipedia/DetailedWikipediaSchema.json +38 -0
  163. package/json-schemas/es/Wikipedia/MetaWikipediaSchema.json +76 -0
  164. package/json-schemas/es/Wikipedia/WikipediaSchema.json +143 -0
  165. package/json-schemas/es/Wikipedia/index.json +311 -0
  166. package/json-schemas/es/WikipediaSchema.json +143 -0
  167. package/json-schemas/es/Youtube/CatalogYoutubeSchema.json +47 -0
  168. package/json-schemas/es/Youtube/DetailedYoutubeSchema.json +37 -0
  169. package/json-schemas/es/Youtube/MetaYoutubeSchema.json +76 -0
  170. package/json-schemas/es/Youtube/YoutubeSchema.json +142 -0
  171. package/json-schemas/es/Youtube/index.json +309 -0
  172. package/json-schemas/es/YoutubeSchema.json +142 -0
  173. package/json-schemas/es/index.json +4849 -103
  174. package/json-schemas/index.json +1850 -20
  175. package/package.json +3 -3
@@ -0,0 +1,846 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "anyOf": [
4
+ {
5
+ "type": "object",
6
+ "properties": {
7
+ "title": {
8
+ "type": "string",
9
+ "description": "Title of the article"
10
+ },
11
+ "description": {
12
+ "description": "Description",
13
+ "type": "string"
14
+ },
15
+ "excerpt": {
16
+ "description": "Extract of the article",
17
+ "type": "string"
18
+ },
19
+ "author": {
20
+ "type": "array",
21
+ "items": {
22
+ "type": "string"
23
+ },
24
+ "description": "Authors"
25
+ },
26
+ "published": {
27
+ "description": "Year of publication",
28
+ "type": "string"
29
+ },
30
+ "status": {
31
+ "type": "string",
32
+ "enum": [
33
+ "Pending",
34
+ "In Progress",
35
+ "Read",
36
+ "Consolidated"
37
+ ],
38
+ "description": "Reading status"
39
+ },
40
+ "projects": {
41
+ "type": "array",
42
+ "items": {
43
+ "type": "string"
44
+ },
45
+ "description": "Projects"
46
+ },
47
+ "topics": {
48
+ "type": "array",
49
+ "items": {
50
+ "type": "string"
51
+ },
52
+ "description": "Topics"
53
+ },
54
+ "rating": {
55
+ "type": "number",
56
+ "description": "Rating of the article"
57
+ },
58
+ "type": {
59
+ "type": "string",
60
+ "const": "[[Sources]]"
61
+ },
62
+ "format": {
63
+ "type": "string",
64
+ "const": "[[Articles]]"
65
+ },
66
+ "areas": {
67
+ "type": "array",
68
+ "items": {
69
+ "type": "string",
70
+ "const": "[[Knowledge]]"
71
+ }
72
+ },
73
+ "color": {
74
+ "type": "string",
75
+ "const": "#3171B2"
76
+ },
77
+ "icon": {
78
+ "type": "string",
79
+ "const": "newspaper"
80
+ },
81
+ "banner": {
82
+ "type": "string"
83
+ },
84
+ "url": {
85
+ "type": "string",
86
+ "description": "URL of the article"
87
+ }
88
+ },
89
+ "required": [
90
+ "title",
91
+ "author",
92
+ "status",
93
+ "projects",
94
+ "topics",
95
+ "rating",
96
+ "type",
97
+ "format",
98
+ "areas",
99
+ "color",
100
+ "icon",
101
+ "url"
102
+ ],
103
+ "description": "Article"
104
+ },
105
+ {
106
+ "type": "object",
107
+ "properties": {
108
+ "title": {
109
+ "type": "string",
110
+ "description": "Title of the book"
111
+ },
112
+ "subtitle": {
113
+ "description": "Subtitle of the book",
114
+ "type": "string"
115
+ },
116
+ "description": {
117
+ "description": "Description of the book",
118
+ "type": "string"
119
+ },
120
+ "author": {
121
+ "type": "array",
122
+ "items": {
123
+ "type": "string"
124
+ },
125
+ "description": "Authors"
126
+ },
127
+ "published": {
128
+ "type": "string",
129
+ "description": "Year of publication"
130
+ },
131
+ "categories": {
132
+ "type": "array",
133
+ "items": {
134
+ "type": "string"
135
+ },
136
+ "description": "Categories"
137
+ },
138
+ "status": {
139
+ "type": "string",
140
+ "enum": [
141
+ "Pending",
142
+ "In Progress",
143
+ "Read",
144
+ "Consolidated"
145
+ ],
146
+ "description": "Reading status"
147
+ },
148
+ "topics": {
149
+ "type": "array",
150
+ "items": {
151
+ "type": "string"
152
+ },
153
+ "description": "Topics"
154
+ },
155
+ "rating": {
156
+ "type": "number",
157
+ "description": "Rating of the book"
158
+ },
159
+ "online_rating": {
160
+ "type": "number",
161
+ "description": "Online rating"
162
+ },
163
+ "last_time_read": {
164
+ "type": "string",
165
+ "description": "Last time read"
166
+ },
167
+ "times_read": {
168
+ "type": "number",
169
+ "description": "Times read"
170
+ },
171
+ "type": {
172
+ "type": "string",
173
+ "const": "[[Sources]]"
174
+ },
175
+ "format": {
176
+ "type": "string",
177
+ "const": "[[Books]]"
178
+ },
179
+ "areas": {
180
+ "type": "array",
181
+ "items": {
182
+ "type": "string",
183
+ "const": "[[Knowledge]]"
184
+ }
185
+ },
186
+ "color": {
187
+ "type": "string",
188
+ "const": "#3171B2"
189
+ },
190
+ "icon": {
191
+ "type": "string",
192
+ "const": "book"
193
+ },
194
+ "cover": {
195
+ "type": "string"
196
+ },
197
+ "url": {
198
+ "type": "string",
199
+ "description": "URL of the book in Amazon or similar"
200
+ },
201
+ "read_url": {
202
+ "type": "string",
203
+ "description": "URL of the reading of the book"
204
+ }
205
+ },
206
+ "required": [
207
+ "title",
208
+ "author",
209
+ "published",
210
+ "categories",
211
+ "status",
212
+ "topics",
213
+ "rating",
214
+ "online_rating",
215
+ "last_time_read",
216
+ "times_read",
217
+ "type",
218
+ "format",
219
+ "areas",
220
+ "color",
221
+ "icon",
222
+ "url",
223
+ "read_url"
224
+ ],
225
+ "description": "Book"
226
+ },
227
+ {
228
+ "type": "object",
229
+ "properties": {
230
+ "name": {
231
+ "type": "string",
232
+ "description": "Descriptive name of the clothing item"
233
+ },
234
+ "garment": {
235
+ "type": "string",
236
+ "enum": [
237
+ "Undershirts",
238
+ "Boxers",
239
+ "Panties",
240
+ "Bras",
241
+ "Socks",
242
+ "T-Shirts",
243
+ "Polo Shirts",
244
+ "Shirts",
245
+ "Blouses",
246
+ "Tops",
247
+ "Sweaters",
248
+ "Hoodies",
249
+ "Cardigans",
250
+ "Jackets",
251
+ "Pants",
252
+ "Jeans",
253
+ "Chinos",
254
+ "Skirts",
255
+ "Shorts",
256
+ "Blazers",
257
+ "Coats",
258
+ "Trench Coats",
259
+ "Parkas",
260
+ "Vests",
261
+ "Leggings",
262
+ "Technical Wear",
263
+ "Sports Shorts",
264
+ "Technical T-Shirts",
265
+ "Dresses",
266
+ "Jumpsuits",
267
+ "Sneakers",
268
+ "Shoes",
269
+ "Boots",
270
+ "Sandals",
271
+ "Belts",
272
+ "Caps",
273
+ "Hats",
274
+ "Scarves",
275
+ "Gloves",
276
+ "Handbags",
277
+ "Backpacks",
278
+ "Sunglasses",
279
+ "Handkerchiefs",
280
+ "Watches",
281
+ "Jewelry",
282
+ "Pajamas",
283
+ "Robes",
284
+ "Swimsuits",
285
+ "Bikinis"
286
+ ],
287
+ "description": "Garment Type"
288
+ },
289
+ "slot": {
290
+ "type": "string",
291
+ "enum": [
292
+ "Top",
293
+ "Bottom",
294
+ "Full Body",
295
+ "Outer",
296
+ "Footwear",
297
+ "Accessories"
298
+ ],
299
+ "description": "Outfit part"
300
+ },
301
+ "variants": {
302
+ "description": "Structural Details",
303
+ "type": "array",
304
+ "items": {
305
+ "type": "string",
306
+ "enum": [
307
+ "Sleeveless",
308
+ "Short Sleeves",
309
+ "Long Sleeves",
310
+ "Round Neck",
311
+ "V-Neck",
312
+ "High Neck",
313
+ "Shirt Collar",
314
+ "Polo Collar",
315
+ "Boat Neck",
316
+ "Mandarin Collar",
317
+ "Funnel Neck",
318
+ "Hood",
319
+ "Overshirt",
320
+ "Cropped",
321
+ "Long",
322
+ "Straight Leg",
323
+ "Skinny",
324
+ "Wide",
325
+ "Cargo",
326
+ "Flared",
327
+ "Trench",
328
+ "Puffer",
329
+ "Double Breasted",
330
+ "Buttons",
331
+ "Zipper",
332
+ "Velcro",
333
+ "Laces",
334
+ "Snaps",
335
+ "Pockets",
336
+ "No Pockets",
337
+ "Reversible"
338
+ ]
339
+ }
340
+ },
341
+ "fit": {
342
+ "description": "Fit",
343
+ "type": "string",
344
+ "enum": [
345
+ "Fitted",
346
+ "Slim",
347
+ "Regular",
348
+ "Relaxed",
349
+ "Loose",
350
+ "Oversized"
351
+ ]
352
+ },
353
+ "primary_color": {
354
+ "type": "string",
355
+ "enum": [
356
+ "White",
357
+ "Black",
358
+ "Gray",
359
+ "Beige",
360
+ "Brown",
361
+ "Blue",
362
+ "Green",
363
+ "Red",
364
+ "Burgundy",
365
+ "Pink",
366
+ "Yellow",
367
+ "Orange",
368
+ "Purple",
369
+ "Camel",
370
+ "Khaki",
371
+ "Navy",
372
+ "Cream",
373
+ "Gold",
374
+ "Silver",
375
+ "Bronze"
376
+ ],
377
+ "description": "Primary color"
378
+ },
379
+ "secondary_color": {
380
+ "description": "Secondary color",
381
+ "type": "string",
382
+ "enum": [
383
+ "White",
384
+ "Black",
385
+ "Gray",
386
+ "Beige",
387
+ "Brown",
388
+ "Blue",
389
+ "Green",
390
+ "Red",
391
+ "Burgundy",
392
+ "Pink",
393
+ "Yellow",
394
+ "Orange",
395
+ "Purple",
396
+ "Camel",
397
+ "Khaki",
398
+ "Navy",
399
+ "Cream",
400
+ "Gold",
401
+ "Silver",
402
+ "Bronze"
403
+ ]
404
+ },
405
+ "pattern": {
406
+ "description": "Pattern",
407
+ "type": "string",
408
+ "enum": [
409
+ "Solid",
410
+ "Stripes",
411
+ "Plaid",
412
+ "Polka Dots",
413
+ "Animal Print",
414
+ "Floral",
415
+ "Geometric",
416
+ "Camouflage",
417
+ "Graphic Print",
418
+ "Gradient"
419
+ ]
420
+ },
421
+ "materials": {
422
+ "description": "Materials",
423
+ "type": "array",
424
+ "items": {
425
+ "type": "string",
426
+ "enum": [
427
+ "Cotton",
428
+ "Linen",
429
+ "Wool",
430
+ "Silk",
431
+ "Leather",
432
+ "Cashmere",
433
+ "Suede",
434
+ "Polyester",
435
+ "Nylon",
436
+ "Elastane",
437
+ "Viscose",
438
+ "Synthetic Leather",
439
+ "Gore-Tex",
440
+ "Denim",
441
+ "Knit",
442
+ "Fleece",
443
+ "Tweed",
444
+ "Satin",
445
+ "Velvet",
446
+ "Jacquard",
447
+ "Flannel",
448
+ "Gabardine"
449
+ ]
450
+ }
451
+ },
452
+ "layer": {
453
+ "type": "string",
454
+ "enum": [
455
+ "Base",
456
+ "Mid",
457
+ "Outer"
458
+ ],
459
+ "description": "Thermal Layer"
460
+ },
461
+ "season": {
462
+ "description": "Seasons",
463
+ "type": "string",
464
+ "enum": [
465
+ "Winter",
466
+ "Summer",
467
+ "Spring/Fall",
468
+ "All Year"
469
+ ]
470
+ },
471
+ "use_case": {
472
+ "description": "Use cases",
473
+ "type": "array",
474
+ "items": {
475
+ "type": "string",
476
+ "enum": [
477
+ "Capsule",
478
+ "Favorite",
479
+ "Basic",
480
+ "Sport",
481
+ "Work",
482
+ "Event",
483
+ "Travel",
484
+ "Home",
485
+ "Party",
486
+ "Beach",
487
+ "Rain",
488
+ "Extreme Cold"
489
+ ]
490
+ }
491
+ },
492
+ "formality": {
493
+ "description": "Formality",
494
+ "type": "string",
495
+ "enum": [
496
+ "Very Casual",
497
+ "Casual",
498
+ "Smart Casual",
499
+ "Formal",
500
+ "Black Tie"
501
+ ]
502
+ },
503
+ "brand": {
504
+ "description": "The brand of the clothing",
505
+ "type": "string"
506
+ },
507
+ "cares": {
508
+ "description": "Care Instructions",
509
+ "type": "array",
510
+ "items": {
511
+ "type": "string",
512
+ "enum": [
513
+ "Hand Wash",
514
+ "Machine Wash",
515
+ "Dry Clean",
516
+ "Cold",
517
+ "Hot",
518
+ "Ironing",
519
+ "Steam Ironing"
520
+ ]
521
+ }
522
+ },
523
+ "status": {
524
+ "default": "Good",
525
+ "description": "Status",
526
+ "type": "string",
527
+ "enum": [
528
+ "New",
529
+ "Good",
530
+ "Worn",
531
+ "Damaged",
532
+ "Retire"
533
+ ]
534
+ },
535
+ "size": {
536
+ "type": "string",
537
+ "enum": [
538
+ "28",
539
+ "30",
540
+ "32",
541
+ "34",
542
+ "36",
543
+ "37",
544
+ "38",
545
+ "39",
546
+ "40",
547
+ "41",
548
+ "42",
549
+ "43",
550
+ "44",
551
+ "45",
552
+ "46",
553
+ "48",
554
+ "XS",
555
+ "S",
556
+ "M",
557
+ "L",
558
+ "XL",
559
+ "XXL",
560
+ "XXXL"
561
+ ]
562
+ },
563
+ "measurements": {
564
+ "description": "Measurements",
565
+ "type": "array",
566
+ "items": {
567
+ "type": "number"
568
+ }
569
+ },
570
+ "type": {
571
+ "type": "string",
572
+ "const": "[[Resources]]"
573
+ },
574
+ "subtype": {
575
+ "type": "string",
576
+ "const": "[[Clothes]]"
577
+ },
578
+ "areas": {
579
+ "type": "array",
580
+ "items": {
581
+ "type": "string",
582
+ "const": "[[Home]]"
583
+ }
584
+ },
585
+ "color": {
586
+ "type": "string",
587
+ "const": "#CB6120"
588
+ },
589
+ "icon": {
590
+ "type": "string",
591
+ "const": "shirt"
592
+ },
593
+ "cover": {
594
+ "type": "string"
595
+ }
596
+ },
597
+ "required": [
598
+ "name",
599
+ "garment",
600
+ "slot",
601
+ "primary_color",
602
+ "layer",
603
+ "size",
604
+ "type",
605
+ "subtype",
606
+ "areas",
607
+ "color",
608
+ "icon"
609
+ ],
610
+ "description": "Clothing item"
611
+ },
612
+ {
613
+ "type": "object",
614
+ "properties": {
615
+ "title": {
616
+ "type": "string",
617
+ "description": "Title of the movie"
618
+ },
619
+ "description": {
620
+ "type": "string",
621
+ "description": "Description of the movie"
622
+ },
623
+ "author": {
624
+ "type": "array",
625
+ "items": {
626
+ "type": "string"
627
+ },
628
+ "description": "Authors. Writers, directors, producers, etc."
629
+ },
630
+ "actors": {
631
+ "type": "array",
632
+ "items": {
633
+ "type": "string"
634
+ },
635
+ "description": "Actors"
636
+ },
637
+ "published": {
638
+ "type": "string",
639
+ "description": "Year of publication"
640
+ },
641
+ "genres": {
642
+ "type": "array",
643
+ "items": {
644
+ "type": "string"
645
+ },
646
+ "description": "Genres"
647
+ },
648
+ "status": {
649
+ "type": "string",
650
+ "enum": [
651
+ "Pending",
652
+ "In Progress",
653
+ "Completed"
654
+ ],
655
+ "description": "Watching status"
656
+ },
657
+ "topics": {
658
+ "type": "array",
659
+ "items": {
660
+ "type": "string"
661
+ },
662
+ "description": "Topics"
663
+ },
664
+ "rating": {
665
+ "type": "number",
666
+ "description": "Rating of the movie"
667
+ },
668
+ "online_rating": {
669
+ "type": "number",
670
+ "description": "Online rating"
671
+ },
672
+ "last_time_watched": {
673
+ "type": "string",
674
+ "description": "Last time watched"
675
+ },
676
+ "times_watched": {
677
+ "type": "number",
678
+ "description": "Times watched"
679
+ },
680
+ "type": {
681
+ "type": "string",
682
+ "const": "[[Sources]]"
683
+ },
684
+ "format": {
685
+ "type": "string",
686
+ "const": "[[Movies]]"
687
+ },
688
+ "areas": {
689
+ "type": "array",
690
+ "items": {
691
+ "type": "string",
692
+ "const": "[[Creativity]]"
693
+ }
694
+ },
695
+ "color": {
696
+ "type": "string",
697
+ "const": "#BE9207"
698
+ },
699
+ "icon": {
700
+ "type": "string",
701
+ "const": "movie"
702
+ },
703
+ "cover": {
704
+ "type": "string"
705
+ },
706
+ "url": {
707
+ "type": "string",
708
+ "description": "URL of the movie in IMDB or similar"
709
+ },
710
+ "watch_url": {
711
+ "type": "string",
712
+ "description": "URL of the movie in streaming"
713
+ }
714
+ },
715
+ "required": [
716
+ "title",
717
+ "description",
718
+ "author",
719
+ "actors",
720
+ "published",
721
+ "genres",
722
+ "status",
723
+ "topics",
724
+ "rating",
725
+ "online_rating",
726
+ "last_time_watched",
727
+ "times_watched",
728
+ "type",
729
+ "format",
730
+ "areas",
731
+ "color",
732
+ "icon",
733
+ "url",
734
+ "watch_url"
735
+ ],
736
+ "description": "Movie"
737
+ },
738
+ {
739
+ "type": "object",
740
+ "properties": {
741
+ "title": {
742
+ "type": "string",
743
+ "description": "Title of the Wikipedia entry"
744
+ },
745
+ "description": {
746
+ "description": "Description",
747
+ "type": "string"
748
+ },
749
+ "excerpt": {
750
+ "description": "Extract of the article",
751
+ "type": "string"
752
+ },
753
+ "author": {
754
+ "type": "array",
755
+ "items": {
756
+ "type": "string"
757
+ },
758
+ "description": "Authors"
759
+ },
760
+ "published": {
761
+ "description": "Year of publication",
762
+ "type": "string"
763
+ },
764
+ "status": {
765
+ "type": "string",
766
+ "enum": [
767
+ "Pending",
768
+ "In Progress",
769
+ "Read",
770
+ "Consolidated"
771
+ ],
772
+ "description": "Reading status"
773
+ },
774
+ "projects": {
775
+ "type": "array",
776
+ "items": {
777
+ "type": "string"
778
+ },
779
+ "description": "Projects"
780
+ },
781
+ "topics": {
782
+ "type": "array",
783
+ "items": {
784
+ "type": "string"
785
+ },
786
+ "description": "Topics"
787
+ },
788
+ "rating": {
789
+ "type": "number",
790
+ "description": "Rating of the article"
791
+ },
792
+ "type": {
793
+ "type": "string",
794
+ "const": "[[Sources]]"
795
+ },
796
+ "format": {
797
+ "type": "string",
798
+ "const": "[[Encyclopedia Entries]]"
799
+ },
800
+ "areas": {
801
+ "type": "array",
802
+ "items": {
803
+ "type": "string",
804
+ "const": "[[Knowledge]]"
805
+ }
806
+ },
807
+ "color": {
808
+ "type": "string",
809
+ "const": "#3171B2"
810
+ },
811
+ "icon": {
812
+ "default": "wikipedia",
813
+ "description": "Lucide icon.",
814
+ "type": "string"
815
+ },
816
+ "banner": {
817
+ "type": "string"
818
+ },
819
+ "url": {
820
+ "type": "string",
821
+ "description": "URL of the article"
822
+ },
823
+ "platform": {
824
+ "type": "string",
825
+ "const": "Wikipedia"
826
+ }
827
+ },
828
+ "required": [
829
+ "title",
830
+ "author",
831
+ "status",
832
+ "projects",
833
+ "topics",
834
+ "rating",
835
+ "type",
836
+ "format",
837
+ "areas",
838
+ "color",
839
+ "url",
840
+ "platform"
841
+ ],
842
+ "description": "Wikipedia entry"
843
+ }
844
+ ],
845
+ "description": "Note: Union of all note types"
846
+ }