@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,1221 @@
3
3
  "title": "@segha/catalog/en",
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
+ "[[Food]]",
11
+ "[[Health]]",
12
+ "[[Knowledge]]",
13
+ "[[Structured Thinking]]",
14
+ "[[Home]]",
15
+ "[[Productivity]]",
16
+ "[[Exploration]]",
17
+ "[[Links]]",
18
+ "[[Exercise]]",
19
+ "[[Energy]]",
20
+ "[[Work]]",
21
+ "[[Finances]]",
22
+ "[[Mental Health]]",
23
+ "[[Creativity]]"
24
+ ],
25
+ "description": "Area"
26
+ },
27
+ "Areas": {
28
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string",
32
+ "enum": [
33
+ "[[Food]]",
34
+ "[[Health]]",
35
+ "[[Knowledge]]",
36
+ "[[Structured Thinking]]",
37
+ "[[Home]]",
38
+ "[[Productivity]]",
39
+ "[[Exploration]]",
40
+ "[[Links]]",
41
+ "[[Exercise]]",
42
+ "[[Energy]]",
43
+ "[[Work]]",
44
+ "[[Finances]]",
45
+ "[[Mental Health]]",
46
+ "[[Creativity]]"
47
+ ],
48
+ "description": "Area"
49
+ },
50
+ "description": "Areas"
51
+ },
52
+ "FirstLevelArea": {
53
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
54
+ "type": "string",
55
+ "enum": [
56
+ "[[Food]]",
57
+ "[[Health]]",
58
+ "[[Knowledge]]",
59
+ "[[Structured Thinking]]",
60
+ "[[Home]]",
61
+ "[[Productivity]]",
62
+ "[[Exploration]]",
63
+ "[[Links]]",
64
+ "[[Exercise]]",
65
+ "[[Energy]]",
66
+ "[[Work]]",
67
+ "[[Finances]]",
68
+ "[[Mental Health]]",
69
+ "[[Creativity]]"
70
+ ],
71
+ "description": "First level area"
72
+ },
73
+ "NoteSchema": {
74
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
75
+ "anyOf": [
76
+ {
77
+ "type": "object",
78
+ "properties": {
79
+ "title": {
80
+ "type": "string",
81
+ "description": "Title of the article"
82
+ },
83
+ "description": {
84
+ "description": "Description",
85
+ "type": "string"
86
+ },
87
+ "excerpt": {
88
+ "description": "Extract of the article",
89
+ "type": "string"
90
+ },
91
+ "author": {
92
+ "type": "array",
93
+ "items": {
94
+ "type": "string"
95
+ },
96
+ "description": "Authors"
97
+ },
98
+ "published": {
99
+ "description": "Year of publication",
100
+ "type": "string"
101
+ },
102
+ "status": {
103
+ "type": "string",
104
+ "enum": [
105
+ "Pending",
106
+ "In Progress",
107
+ "Read",
108
+ "Consolidated"
109
+ ],
110
+ "description": "Reading status"
111
+ },
112
+ "projects": {
113
+ "type": "array",
114
+ "items": {
115
+ "type": "string"
116
+ },
117
+ "description": "Projects"
118
+ },
119
+ "topics": {
120
+ "type": "array",
121
+ "items": {
122
+ "type": "string"
123
+ },
124
+ "description": "Topics"
125
+ },
126
+ "rating": {
127
+ "type": "number",
128
+ "description": "Rating of the article"
129
+ },
130
+ "type": {
131
+ "type": "string",
132
+ "const": "[[Sources]]"
133
+ },
134
+ "format": {
135
+ "type": "string",
136
+ "const": "[[Articles]]"
137
+ },
138
+ "areas": {
139
+ "type": "array",
140
+ "items": {
141
+ "type": "string",
142
+ "const": "[[Knowledge]]"
143
+ }
144
+ },
145
+ "color": {
146
+ "type": "string",
147
+ "const": "#3171B2"
148
+ },
149
+ "icon": {
150
+ "type": "string",
151
+ "const": "newspaper"
152
+ },
153
+ "banner": {
154
+ "type": "string"
155
+ },
156
+ "url": {
157
+ "type": "string",
158
+ "description": "URL of the article"
159
+ }
160
+ },
161
+ "required": [
162
+ "title",
163
+ "author",
164
+ "status",
165
+ "projects",
166
+ "topics",
167
+ "rating",
168
+ "type",
169
+ "format",
170
+ "areas",
171
+ "color",
172
+ "icon",
173
+ "url"
174
+ ],
175
+ "description": "Article"
176
+ },
177
+ {
178
+ "type": "object",
179
+ "properties": {
180
+ "title": {
181
+ "type": "string",
182
+ "description": "Title of the book"
183
+ },
184
+ "subtitle": {
185
+ "description": "Subtitle of the book",
186
+ "type": "string"
187
+ },
188
+ "description": {
189
+ "description": "Description of the book",
190
+ "type": "string"
191
+ },
192
+ "author": {
193
+ "type": "array",
194
+ "items": {
195
+ "type": "string"
196
+ },
197
+ "description": "Authors"
198
+ },
199
+ "published": {
200
+ "type": "string",
201
+ "description": "Year of publication"
202
+ },
203
+ "categories": {
204
+ "type": "array",
205
+ "items": {
206
+ "type": "string"
207
+ },
208
+ "description": "Categories"
209
+ },
210
+ "status": {
211
+ "type": "string",
212
+ "enum": [
213
+ "Pending",
214
+ "In Progress",
215
+ "Read",
216
+ "Consolidated"
217
+ ],
218
+ "description": "Reading status"
219
+ },
220
+ "topics": {
221
+ "type": "array",
222
+ "items": {
223
+ "type": "string"
224
+ },
225
+ "description": "Topics"
226
+ },
227
+ "rating": {
228
+ "type": "number",
229
+ "description": "Rating of the book"
230
+ },
231
+ "online_rating": {
232
+ "type": "number",
233
+ "description": "Online rating"
234
+ },
235
+ "last_time_read": {
236
+ "type": "string",
237
+ "description": "Last time read"
238
+ },
239
+ "times_read": {
240
+ "type": "number",
241
+ "description": "Times read"
242
+ },
243
+ "type": {
244
+ "type": "string",
245
+ "const": "[[Sources]]"
246
+ },
247
+ "format": {
248
+ "type": "string",
249
+ "const": "[[Books]]"
250
+ },
251
+ "areas": {
252
+ "type": "array",
253
+ "items": {
254
+ "type": "string",
255
+ "const": "[[Knowledge]]"
256
+ }
257
+ },
258
+ "color": {
259
+ "type": "string",
260
+ "const": "#3171B2"
261
+ },
262
+ "icon": {
263
+ "type": "string",
264
+ "const": "book"
265
+ },
266
+ "cover": {
267
+ "type": "string"
268
+ },
269
+ "url": {
270
+ "type": "string",
271
+ "description": "URL of the book in Amazon or similar"
272
+ },
273
+ "read_url": {
274
+ "type": "string",
275
+ "description": "URL of the reading of the book"
276
+ }
277
+ },
278
+ "required": [
279
+ "title",
280
+ "author",
281
+ "published",
282
+ "categories",
283
+ "status",
284
+ "topics",
285
+ "rating",
286
+ "online_rating",
287
+ "last_time_read",
288
+ "times_read",
289
+ "type",
290
+ "format",
291
+ "areas",
292
+ "color",
293
+ "icon",
294
+ "url",
295
+ "read_url"
296
+ ],
297
+ "description": "Book"
298
+ },
299
+ {
300
+ "type": "object",
301
+ "properties": {
302
+ "name": {
303
+ "type": "string",
304
+ "description": "Descriptive name of the clothing item"
305
+ },
306
+ "garment": {
307
+ "type": "string",
308
+ "enum": [
309
+ "Undershirts",
310
+ "Boxers",
311
+ "Panties",
312
+ "Bras",
313
+ "Socks",
314
+ "T-Shirts",
315
+ "Polo Shirts",
316
+ "Shirts",
317
+ "Blouses",
318
+ "Tops",
319
+ "Sweaters",
320
+ "Hoodies",
321
+ "Cardigans",
322
+ "Jackets",
323
+ "Pants",
324
+ "Jeans",
325
+ "Chinos",
326
+ "Skirts",
327
+ "Shorts",
328
+ "Blazers",
329
+ "Coats",
330
+ "Trench Coats",
331
+ "Parkas",
332
+ "Vests",
333
+ "Leggings",
334
+ "Technical Wear",
335
+ "Sports Shorts",
336
+ "Technical T-Shirts",
337
+ "Dresses",
338
+ "Jumpsuits",
339
+ "Sneakers",
340
+ "Shoes",
341
+ "Boots",
342
+ "Sandals",
343
+ "Belts",
344
+ "Caps",
345
+ "Hats",
346
+ "Scarves",
347
+ "Gloves",
348
+ "Handbags",
349
+ "Backpacks",
350
+ "Sunglasses",
351
+ "Handkerchiefs",
352
+ "Watches",
353
+ "Jewelry",
354
+ "Pajamas",
355
+ "Robes",
356
+ "Swimsuits",
357
+ "Bikinis"
358
+ ],
359
+ "description": "Garment Type"
360
+ },
361
+ "slot": {
362
+ "type": "string",
363
+ "enum": [
364
+ "Top",
365
+ "Bottom",
366
+ "Full Body",
367
+ "Outer",
368
+ "Footwear",
369
+ "Accessories"
370
+ ],
371
+ "description": "Outfit part"
372
+ },
373
+ "variants": {
374
+ "description": "Structural Details",
375
+ "type": "array",
376
+ "items": {
377
+ "type": "string",
378
+ "enum": [
379
+ "Sleeveless",
380
+ "Short Sleeves",
381
+ "Long Sleeves",
382
+ "Round Neck",
383
+ "V-Neck",
384
+ "High Neck",
385
+ "Shirt Collar",
386
+ "Polo Collar",
387
+ "Boat Neck",
388
+ "Mandarin Collar",
389
+ "Funnel Neck",
390
+ "Hood",
391
+ "Overshirt",
392
+ "Cropped",
393
+ "Long",
394
+ "Straight Leg",
395
+ "Skinny",
396
+ "Wide",
397
+ "Cargo",
398
+ "Flared",
399
+ "Trench",
400
+ "Puffer",
401
+ "Double Breasted",
402
+ "Buttons",
403
+ "Zipper",
404
+ "Velcro",
405
+ "Laces",
406
+ "Snaps",
407
+ "Pockets",
408
+ "No Pockets",
409
+ "Reversible"
410
+ ]
411
+ }
412
+ },
413
+ "fit": {
414
+ "description": "Fit",
415
+ "type": "string",
416
+ "enum": [
417
+ "Fitted",
418
+ "Slim",
419
+ "Regular",
420
+ "Relaxed",
421
+ "Loose",
422
+ "Oversized"
423
+ ]
424
+ },
425
+ "primary_color": {
426
+ "type": "string",
427
+ "enum": [
428
+ "White",
429
+ "Black",
430
+ "Gray",
431
+ "Beige",
432
+ "Brown",
433
+ "Blue",
434
+ "Green",
435
+ "Red",
436
+ "Burgundy",
437
+ "Pink",
438
+ "Yellow",
439
+ "Orange",
440
+ "Purple",
441
+ "Camel",
442
+ "Khaki",
443
+ "Navy",
444
+ "Cream",
445
+ "Gold",
446
+ "Silver",
447
+ "Bronze"
448
+ ],
449
+ "description": "Primary color"
450
+ },
451
+ "secondary_color": {
452
+ "description": "Secondary color",
453
+ "type": "string",
454
+ "enum": [
455
+ "White",
456
+ "Black",
457
+ "Gray",
458
+ "Beige",
459
+ "Brown",
460
+ "Blue",
461
+ "Green",
462
+ "Red",
463
+ "Burgundy",
464
+ "Pink",
465
+ "Yellow",
466
+ "Orange",
467
+ "Purple",
468
+ "Camel",
469
+ "Khaki",
470
+ "Navy",
471
+ "Cream",
472
+ "Gold",
473
+ "Silver",
474
+ "Bronze"
475
+ ]
476
+ },
477
+ "pattern": {
478
+ "description": "Pattern",
479
+ "type": "string",
480
+ "enum": [
481
+ "Solid",
482
+ "Stripes",
483
+ "Plaid",
484
+ "Polka Dots",
485
+ "Animal Print",
486
+ "Floral",
487
+ "Geometric",
488
+ "Camouflage",
489
+ "Graphic Print",
490
+ "Gradient"
491
+ ]
492
+ },
493
+ "materials": {
494
+ "description": "Materials",
495
+ "type": "array",
496
+ "items": {
497
+ "type": "string",
498
+ "enum": [
499
+ "Cotton",
500
+ "Linen",
501
+ "Wool",
502
+ "Silk",
503
+ "Leather",
504
+ "Cashmere",
505
+ "Suede",
506
+ "Polyester",
507
+ "Nylon",
508
+ "Elastane",
509
+ "Viscose",
510
+ "Synthetic Leather",
511
+ "Gore-Tex",
512
+ "Denim",
513
+ "Knit",
514
+ "Fleece",
515
+ "Tweed",
516
+ "Satin",
517
+ "Velvet",
518
+ "Jacquard",
519
+ "Flannel",
520
+ "Gabardine"
521
+ ]
522
+ }
523
+ },
524
+ "layer": {
525
+ "type": "string",
526
+ "enum": [
527
+ "Base",
528
+ "Mid",
529
+ "Outer"
530
+ ],
531
+ "description": "Thermal Layer"
532
+ },
533
+ "season": {
534
+ "description": "Seasons",
535
+ "type": "string",
536
+ "enum": [
537
+ "Winter",
538
+ "Summer",
539
+ "Spring/Fall",
540
+ "All Year"
541
+ ]
542
+ },
543
+ "use_case": {
544
+ "description": "Use cases",
545
+ "type": "array",
546
+ "items": {
547
+ "type": "string",
548
+ "enum": [
549
+ "Capsule",
550
+ "Favorite",
551
+ "Basic",
552
+ "Sport",
553
+ "Work",
554
+ "Event",
555
+ "Travel",
556
+ "Home",
557
+ "Party",
558
+ "Beach",
559
+ "Rain",
560
+ "Extreme Cold"
561
+ ]
562
+ }
563
+ },
564
+ "formality": {
565
+ "description": "Formality",
566
+ "type": "string",
567
+ "enum": [
568
+ "Very Casual",
569
+ "Casual",
570
+ "Smart Casual",
571
+ "Formal",
572
+ "Black Tie"
573
+ ]
574
+ },
575
+ "brand": {
576
+ "description": "The brand of the clothing",
577
+ "type": "string"
578
+ },
579
+ "cares": {
580
+ "description": "Care Instructions",
581
+ "type": "array",
582
+ "items": {
583
+ "type": "string",
584
+ "enum": [
585
+ "Hand Wash",
586
+ "Machine Wash",
587
+ "Dry Clean",
588
+ "Cold",
589
+ "Hot",
590
+ "Ironing",
591
+ "Steam Ironing"
592
+ ]
593
+ }
594
+ },
595
+ "status": {
596
+ "default": "Good",
597
+ "description": "Status",
598
+ "type": "string",
599
+ "enum": [
600
+ "New",
601
+ "Good",
602
+ "Worn",
603
+ "Damaged",
604
+ "Retire"
605
+ ]
606
+ },
607
+ "size": {
608
+ "type": "string",
609
+ "enum": [
610
+ "28",
611
+ "30",
612
+ "32",
613
+ "34",
614
+ "36",
615
+ "37",
616
+ "38",
617
+ "39",
618
+ "40",
619
+ "41",
620
+ "42",
621
+ "43",
622
+ "44",
623
+ "45",
624
+ "46",
625
+ "48",
626
+ "XS",
627
+ "S",
628
+ "M",
629
+ "L",
630
+ "XL",
631
+ "XXL",
632
+ "XXXL"
633
+ ]
634
+ },
635
+ "measurements": {
636
+ "description": "Measurements",
637
+ "type": "array",
638
+ "items": {
639
+ "type": "number"
640
+ }
641
+ },
642
+ "type": {
643
+ "type": "string",
644
+ "const": "[[Resources]]"
645
+ },
646
+ "subtype": {
647
+ "type": "string",
648
+ "const": "[[Clothes]]"
649
+ },
650
+ "areas": {
651
+ "type": "array",
652
+ "items": {
653
+ "type": "string",
654
+ "const": "[[Home]]"
655
+ }
656
+ },
657
+ "color": {
658
+ "type": "string",
659
+ "const": "#CB6120"
660
+ },
661
+ "icon": {
662
+ "type": "string",
663
+ "const": "shirt"
664
+ },
665
+ "cover": {
666
+ "type": "string"
667
+ }
668
+ },
669
+ "required": [
670
+ "name",
671
+ "garment",
672
+ "slot",
673
+ "primary_color",
674
+ "layer",
675
+ "size",
676
+ "type",
677
+ "subtype",
678
+ "areas",
679
+ "color",
680
+ "icon"
681
+ ],
682
+ "description": "Clothing item"
683
+ },
684
+ {
685
+ "type": "object",
686
+ "properties": {
687
+ "title": {
688
+ "type": "string",
689
+ "description": "Title of the movie"
690
+ },
691
+ "description": {
692
+ "type": "string",
693
+ "description": "Description of the movie"
694
+ },
695
+ "author": {
696
+ "type": "array",
697
+ "items": {
698
+ "type": "string"
699
+ },
700
+ "description": "Authors. Writers, directors, producers, etc."
701
+ },
702
+ "actors": {
703
+ "type": "array",
704
+ "items": {
705
+ "type": "string"
706
+ },
707
+ "description": "Actors"
708
+ },
709
+ "published": {
710
+ "type": "string",
711
+ "description": "Year of publication"
712
+ },
713
+ "genres": {
714
+ "type": "array",
715
+ "items": {
716
+ "type": "string"
717
+ },
718
+ "description": "Genres"
719
+ },
720
+ "status": {
721
+ "type": "string",
722
+ "enum": [
723
+ "Pending",
724
+ "In Progress",
725
+ "Completed"
726
+ ],
727
+ "description": "Watching status"
728
+ },
729
+ "topics": {
730
+ "type": "array",
731
+ "items": {
732
+ "type": "string"
733
+ },
734
+ "description": "Topics"
735
+ },
736
+ "rating": {
737
+ "type": "number",
738
+ "description": "Rating of the movie"
739
+ },
740
+ "online_rating": {
741
+ "type": "number",
742
+ "description": "Online rating"
743
+ },
744
+ "last_time_watched": {
745
+ "type": "string",
746
+ "description": "Last time watched"
747
+ },
748
+ "times_watched": {
749
+ "type": "number",
750
+ "description": "Times watched"
751
+ },
752
+ "type": {
753
+ "type": "string",
754
+ "const": "[[Sources]]"
755
+ },
756
+ "format": {
757
+ "type": "string",
758
+ "const": "[[Movies]]"
759
+ },
760
+ "areas": {
761
+ "type": "array",
762
+ "items": {
763
+ "type": "string",
764
+ "const": "[[Creativity]]"
765
+ }
766
+ },
767
+ "color": {
768
+ "type": "string",
769
+ "const": "#BE9207"
770
+ },
771
+ "icon": {
772
+ "type": "string",
773
+ "const": "movie"
774
+ },
775
+ "cover": {
776
+ "type": "string"
777
+ },
778
+ "url": {
779
+ "type": "string",
780
+ "description": "URL of the movie in IMDB or similar"
781
+ },
782
+ "watch_url": {
783
+ "type": "string",
784
+ "description": "URL of the movie in streaming"
785
+ }
786
+ },
787
+ "required": [
788
+ "title",
789
+ "description",
790
+ "author",
791
+ "actors",
792
+ "published",
793
+ "genres",
794
+ "status",
795
+ "topics",
796
+ "rating",
797
+ "online_rating",
798
+ "last_time_watched",
799
+ "times_watched",
800
+ "type",
801
+ "format",
802
+ "areas",
803
+ "color",
804
+ "icon",
805
+ "url",
806
+ "watch_url"
807
+ ],
808
+ "description": "Movie"
809
+ },
810
+ {
811
+ "type": "object",
812
+ "properties": {
813
+ "title": {
814
+ "type": "string",
815
+ "description": "Title of the Wikipedia entry"
816
+ },
817
+ "description": {
818
+ "description": "Description",
819
+ "type": "string"
820
+ },
821
+ "excerpt": {
822
+ "description": "Extract of the article",
823
+ "type": "string"
824
+ },
825
+ "author": {
826
+ "type": "array",
827
+ "items": {
828
+ "type": "string"
829
+ },
830
+ "description": "Authors"
831
+ },
832
+ "published": {
833
+ "description": "Year of publication",
834
+ "type": "string"
835
+ },
836
+ "status": {
837
+ "type": "string",
838
+ "enum": [
839
+ "Pending",
840
+ "In Progress",
841
+ "Read",
842
+ "Consolidated"
843
+ ],
844
+ "description": "Reading status"
845
+ },
846
+ "projects": {
847
+ "type": "array",
848
+ "items": {
849
+ "type": "string"
850
+ },
851
+ "description": "Projects"
852
+ },
853
+ "topics": {
854
+ "type": "array",
855
+ "items": {
856
+ "type": "string"
857
+ },
858
+ "description": "Topics"
859
+ },
860
+ "rating": {
861
+ "type": "number",
862
+ "description": "Rating of the article"
863
+ },
864
+ "type": {
865
+ "type": "string",
866
+ "const": "[[Sources]]"
867
+ },
868
+ "format": {
869
+ "type": "string",
870
+ "const": "[[Encyclopedia Entries]]"
871
+ },
872
+ "areas": {
873
+ "type": "array",
874
+ "items": {
875
+ "type": "string",
876
+ "const": "[[Knowledge]]"
877
+ }
878
+ },
879
+ "color": {
880
+ "type": "string",
881
+ "const": "#3171B2"
882
+ },
883
+ "icon": {
884
+ "default": "wikipedia",
885
+ "description": "Lucide icon.",
886
+ "type": "string"
887
+ },
888
+ "banner": {
889
+ "type": "string"
890
+ },
891
+ "url": {
892
+ "type": "string",
893
+ "description": "URL of the article"
894
+ },
895
+ "platform": {
896
+ "type": "string",
897
+ "const": "Wikipedia"
898
+ }
899
+ },
900
+ "required": [
901
+ "title",
902
+ "author",
903
+ "status",
904
+ "projects",
905
+ "topics",
906
+ "rating",
907
+ "type",
908
+ "format",
909
+ "areas",
910
+ "color",
911
+ "url",
912
+ "platform"
913
+ ],
914
+ "description": "Wikipedia entry"
915
+ }
916
+ ],
917
+ "description": "Note: Union of all note types"
918
+ },
919
+ "ArticleSchema": {
920
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
921
+ "type": "object",
922
+ "properties": {
923
+ "title": {
924
+ "type": "string",
925
+ "description": "Title of the article"
926
+ },
927
+ "description": {
928
+ "description": "Description",
929
+ "type": "string"
930
+ },
931
+ "excerpt": {
932
+ "description": "Extract of the article",
933
+ "type": "string"
934
+ },
935
+ "author": {
936
+ "type": "array",
937
+ "items": {
938
+ "type": "string"
939
+ },
940
+ "description": "Authors"
941
+ },
942
+ "published": {
943
+ "description": "Year of publication",
944
+ "type": "string"
945
+ },
946
+ "status": {
947
+ "type": "string",
948
+ "enum": [
949
+ "Pending",
950
+ "In Progress",
951
+ "Read",
952
+ "Consolidated"
953
+ ],
954
+ "description": "Reading status"
955
+ },
956
+ "projects": {
957
+ "type": "array",
958
+ "items": {
959
+ "type": "string"
960
+ },
961
+ "description": "Projects"
962
+ },
963
+ "topics": {
964
+ "type": "array",
965
+ "items": {
966
+ "type": "string"
967
+ },
968
+ "description": "Topics"
969
+ },
970
+ "rating": {
971
+ "type": "number",
972
+ "description": "Rating of the article"
973
+ },
974
+ "type": {
975
+ "type": "string",
976
+ "const": "[[Sources]]"
977
+ },
978
+ "format": {
979
+ "type": "string",
980
+ "const": "[[Articles]]"
981
+ },
982
+ "areas": {
983
+ "type": "array",
984
+ "items": {
985
+ "type": "string",
986
+ "const": "[[Knowledge]]"
987
+ }
988
+ },
989
+ "color": {
990
+ "type": "string",
991
+ "const": "#3171B2"
992
+ },
993
+ "icon": {
994
+ "type": "string",
995
+ "const": "newspaper"
996
+ },
997
+ "banner": {
998
+ "type": "string"
999
+ },
1000
+ "url": {
1001
+ "type": "string",
1002
+ "description": "URL of the article"
1003
+ }
1004
+ },
1005
+ "required": [
1006
+ "title",
1007
+ "author",
1008
+ "status",
1009
+ "projects",
1010
+ "topics",
1011
+ "rating",
1012
+ "type",
1013
+ "format",
1014
+ "areas",
1015
+ "color",
1016
+ "icon",
1017
+ "url"
1018
+ ],
1019
+ "description": "Article"
1020
+ },
1021
+ "BookSchema": {
1022
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1023
+ "type": "object",
1024
+ "properties": {
1025
+ "title": {
1026
+ "type": "string",
1027
+ "description": "Title of the book"
1028
+ },
1029
+ "subtitle": {
1030
+ "description": "Subtitle of the book",
1031
+ "type": "string"
1032
+ },
1033
+ "description": {
1034
+ "description": "Description of the book",
1035
+ "type": "string"
1036
+ },
1037
+ "author": {
1038
+ "type": "array",
1039
+ "items": {
1040
+ "type": "string"
1041
+ },
1042
+ "description": "Authors"
1043
+ },
1044
+ "published": {
1045
+ "type": "string",
1046
+ "description": "Year of publication"
1047
+ },
1048
+ "categories": {
1049
+ "type": "array",
1050
+ "items": {
1051
+ "type": "string"
1052
+ },
1053
+ "description": "Categories"
1054
+ },
1055
+ "status": {
1056
+ "type": "string",
1057
+ "enum": [
1058
+ "Pending",
1059
+ "In Progress",
1060
+ "Read",
1061
+ "Consolidated"
1062
+ ],
1063
+ "description": "Reading status"
1064
+ },
1065
+ "topics": {
1066
+ "type": "array",
1067
+ "items": {
1068
+ "type": "string"
1069
+ },
1070
+ "description": "Topics"
1071
+ },
1072
+ "rating": {
1073
+ "type": "number",
1074
+ "description": "Rating of the book"
1075
+ },
1076
+ "online_rating": {
1077
+ "type": "number",
1078
+ "description": "Online rating"
1079
+ },
1080
+ "last_time_read": {
1081
+ "type": "string",
1082
+ "description": "Last time read"
1083
+ },
1084
+ "times_read": {
1085
+ "type": "number",
1086
+ "description": "Times read"
1087
+ },
1088
+ "type": {
1089
+ "type": "string",
1090
+ "const": "[[Sources]]"
1091
+ },
1092
+ "format": {
1093
+ "type": "string",
1094
+ "const": "[[Books]]"
1095
+ },
1096
+ "areas": {
1097
+ "type": "array",
1098
+ "items": {
1099
+ "type": "string",
1100
+ "const": "[[Knowledge]]"
1101
+ }
1102
+ },
1103
+ "color": {
1104
+ "type": "string",
1105
+ "const": "#3171B2"
1106
+ },
1107
+ "icon": {
1108
+ "type": "string",
1109
+ "const": "book"
1110
+ },
1111
+ "cover": {
1112
+ "type": "string"
1113
+ },
1114
+ "url": {
1115
+ "type": "string",
1116
+ "description": "URL of the book in Amazon or similar"
1117
+ },
1118
+ "read_url": {
1119
+ "type": "string",
1120
+ "description": "URL of the reading of the book"
1121
+ }
1122
+ },
1123
+ "required": [
1124
+ "title",
1125
+ "author",
1126
+ "published",
1127
+ "categories",
1128
+ "status",
1129
+ "topics",
1130
+ "rating",
1131
+ "online_rating",
1132
+ "last_time_read",
1133
+ "times_read",
1134
+ "type",
1135
+ "format",
1136
+ "areas",
1137
+ "color",
1138
+ "icon",
1139
+ "url",
1140
+ "read_url"
1141
+ ],
1142
+ "description": "Book"
1143
+ },
1144
+ "CatalogArticleSchema": {
1145
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1146
+ "type": "object",
1147
+ "properties": {
1148
+ "title": {
1149
+ "type": "string",
1150
+ "description": "Title of the article"
1151
+ },
1152
+ "description": {
1153
+ "description": "Description",
1154
+ "type": "string"
1155
+ },
1156
+ "excerpt": {
1157
+ "description": "Extract of the article",
1158
+ "type": "string"
1159
+ },
1160
+ "author": {
1161
+ "type": "array",
1162
+ "items": {
1163
+ "type": "string"
1164
+ },
1165
+ "description": "Authors"
1166
+ },
1167
+ "published": {
1168
+ "description": "Year of publication",
1169
+ "type": "string"
1170
+ }
1171
+ },
1172
+ "required": [
1173
+ "title",
1174
+ "author"
1175
+ ],
1176
+ "description": "Article: Data obtained from catalogation"
1177
+ },
1178
+ "CatalogBookSchema": {
1179
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1180
+ "type": "object",
1181
+ "properties": {
1182
+ "title": {
1183
+ "type": "string",
1184
+ "description": "Title of the book"
1185
+ },
1186
+ "subtitle": {
1187
+ "description": "Subtitle of the book",
1188
+ "type": "string"
1189
+ },
1190
+ "description": {
1191
+ "description": "Description of the book",
1192
+ "type": "string"
1193
+ },
1194
+ "author": {
1195
+ "type": "array",
1196
+ "items": {
1197
+ "type": "string"
1198
+ },
1199
+ "description": "Authors"
1200
+ },
1201
+ "published": {
1202
+ "type": "string",
1203
+ "description": "Year of publication"
1204
+ },
1205
+ "categories": {
1206
+ "type": "array",
1207
+ "items": {
1208
+ "type": "string"
1209
+ },
1210
+ "description": "Categories"
1211
+ }
1212
+ },
1213
+ "required": [
1214
+ "title",
1215
+ "author",
1216
+ "published",
1217
+ "categories"
1218
+ ],
1219
+ "description": "Book: Data obtained from catalogation"
1220
+ },
6
1221
  "CatalogClothingSchema": {
7
1222
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8
1223
  "type": "object",
@@ -292,9 +1507,90 @@
292
1507
  "primary_color",
293
1508
  "layer"
294
1509
  ],
295
- "additionalProperties": false,
296
1510
  "description": "Clothing item: Catalogable data"
297
1511
  },
1512
+ "CatalogMovieSchema": {
1513
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1514
+ "type": "object",
1515
+ "properties": {
1516
+ "title": {
1517
+ "type": "string",
1518
+ "description": "Title of the movie"
1519
+ },
1520
+ "description": {
1521
+ "type": "string",
1522
+ "description": "Description of the movie"
1523
+ },
1524
+ "author": {
1525
+ "type": "array",
1526
+ "items": {
1527
+ "type": "string"
1528
+ },
1529
+ "description": "Authors. Writers, directors, producers, etc."
1530
+ },
1531
+ "actors": {
1532
+ "type": "array",
1533
+ "items": {
1534
+ "type": "string"
1535
+ },
1536
+ "description": "Actors"
1537
+ },
1538
+ "published": {
1539
+ "type": "string",
1540
+ "description": "Year of publication"
1541
+ },
1542
+ "genres": {
1543
+ "type": "array",
1544
+ "items": {
1545
+ "type": "string"
1546
+ },
1547
+ "description": "Genres"
1548
+ }
1549
+ },
1550
+ "required": [
1551
+ "title",
1552
+ "description",
1553
+ "author",
1554
+ "actors",
1555
+ "published",
1556
+ "genres"
1557
+ ],
1558
+ "description": "Movie: Data obtained from catalogation"
1559
+ },
1560
+ "CatalogWikipediaSchema": {
1561
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1562
+ "type": "object",
1563
+ "properties": {
1564
+ "title": {
1565
+ "type": "string",
1566
+ "description": "Title of the Wikipedia entry"
1567
+ },
1568
+ "description": {
1569
+ "description": "Description",
1570
+ "type": "string"
1571
+ },
1572
+ "excerpt": {
1573
+ "description": "Extract of the article",
1574
+ "type": "string"
1575
+ },
1576
+ "author": {
1577
+ "type": "array",
1578
+ "items": {
1579
+ "type": "string"
1580
+ },
1581
+ "description": "Authors"
1582
+ },
1583
+ "published": {
1584
+ "description": "Year of publication",
1585
+ "type": "string"
1586
+ }
1587
+ },
1588
+ "required": [
1589
+ "title",
1590
+ "author"
1591
+ ],
1592
+ "description": "Wikipedia entry: Data obtainable from cataloging"
1593
+ },
298
1594
  "ClothingSchema": {
299
1595
  "$schema": "https://json-schema.org/draft/2020-12/schema",
300
1596
  "type": "object",
@@ -672,7 +1968,6 @@
672
1968
  "slot",
673
1969
  "primary_color",
674
1970
  "layer",
675
- "status",
676
1971
  "size",
677
1972
  "type",
678
1973
  "subtype",
@@ -680,38 +1975,126 @@
680
1975
  "color",
681
1976
  "icon"
682
1977
  ],
683
- "additionalProperties": false,
684
1978
  "description": "Clothing item"
685
1979
  },
686
- "DetailedClothingSchema": {
1980
+ "DetailedArticleSchema": {
687
1981
  "$schema": "https://json-schema.org/draft/2020-12/schema",
688
1982
  "type": "object",
689
1983
  "properties": {
690
- "cares": {
691
- "description": "Care Instructions",
1984
+ "status": {
1985
+ "type": "string",
1986
+ "enum": [
1987
+ "Pending",
1988
+ "In Progress",
1989
+ "Read",
1990
+ "Consolidated"
1991
+ ],
1992
+ "description": "Reading status"
1993
+ },
1994
+ "projects": {
692
1995
  "type": "array",
693
1996
  "items": {
694
- "type": "string",
695
- "enum": [
696
- "Hand Wash",
697
- "Machine Wash",
698
- "Dry Clean",
699
- "Cold",
700
- "Hot",
701
- "Ironing",
702
- "Steam Ironing"
703
- ]
704
- }
1997
+ "type": "string"
1998
+ },
1999
+ "description": "Projects"
2000
+ },
2001
+ "topics": {
2002
+ "type": "array",
2003
+ "items": {
2004
+ "type": "string"
2005
+ },
2006
+ "description": "Topics"
705
2007
  },
2008
+ "rating": {
2009
+ "type": "number",
2010
+ "description": "Rating of the article"
2011
+ }
2012
+ },
2013
+ "required": [
2014
+ "status",
2015
+ "projects",
2016
+ "topics",
2017
+ "rating"
2018
+ ],
2019
+ "description": "Article: Additional data"
2020
+ },
2021
+ "DetailedBookSchema": {
2022
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2023
+ "type": "object",
2024
+ "properties": {
706
2025
  "status": {
707
- "default": "Good",
708
- "description": "Status",
709
2026
  "type": "string",
710
2027
  "enum": [
711
- "New",
712
- "Good",
713
- "Worn",
714
- "Damaged",
2028
+ "Pending",
2029
+ "In Progress",
2030
+ "Read",
2031
+ "Consolidated"
2032
+ ],
2033
+ "description": "Reading status"
2034
+ },
2035
+ "topics": {
2036
+ "type": "array",
2037
+ "items": {
2038
+ "type": "string"
2039
+ },
2040
+ "description": "Topics"
2041
+ },
2042
+ "rating": {
2043
+ "type": "number",
2044
+ "description": "Rating of the book"
2045
+ },
2046
+ "online_rating": {
2047
+ "type": "number",
2048
+ "description": "Online rating"
2049
+ },
2050
+ "last_time_read": {
2051
+ "type": "string",
2052
+ "description": "Last time read"
2053
+ },
2054
+ "times_read": {
2055
+ "type": "number",
2056
+ "description": "Times read"
2057
+ }
2058
+ },
2059
+ "required": [
2060
+ "status",
2061
+ "topics",
2062
+ "rating",
2063
+ "online_rating",
2064
+ "last_time_read",
2065
+ "times_read"
2066
+ ],
2067
+ "description": "Book: Additional data"
2068
+ },
2069
+ "DetailedClothingSchema": {
2070
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2071
+ "type": "object",
2072
+ "properties": {
2073
+ "cares": {
2074
+ "description": "Care Instructions",
2075
+ "type": "array",
2076
+ "items": {
2077
+ "type": "string",
2078
+ "enum": [
2079
+ "Hand Wash",
2080
+ "Machine Wash",
2081
+ "Dry Clean",
2082
+ "Cold",
2083
+ "Hot",
2084
+ "Ironing",
2085
+ "Steam Ironing"
2086
+ ]
2087
+ }
2088
+ },
2089
+ "status": {
2090
+ "default": "Good",
2091
+ "description": "Status",
2092
+ "type": "string",
2093
+ "enum": [
2094
+ "New",
2095
+ "Good",
2096
+ "Worn",
2097
+ "Damaged",
715
2098
  "Retire"
716
2099
  ]
717
2100
  },
@@ -752,12 +2135,193 @@
752
2135
  }
753
2136
  },
754
2137
  "required": [
755
- "status",
756
2138
  "size"
757
2139
  ],
758
- "additionalProperties": false,
759
2140
  "description": "Clothing item: Additional hard-to-obtain data"
760
2141
  },
2142
+ "DetailedMovieSchema": {
2143
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2144
+ "type": "object",
2145
+ "properties": {
2146
+ "status": {
2147
+ "type": "string",
2148
+ "enum": [
2149
+ "Pending",
2150
+ "In Progress",
2151
+ "Completed"
2152
+ ],
2153
+ "description": "Watching status"
2154
+ },
2155
+ "topics": {
2156
+ "type": "array",
2157
+ "items": {
2158
+ "type": "string"
2159
+ },
2160
+ "description": "Topics"
2161
+ },
2162
+ "rating": {
2163
+ "type": "number",
2164
+ "description": "Rating of the movie"
2165
+ },
2166
+ "online_rating": {
2167
+ "type": "number",
2168
+ "description": "Online rating"
2169
+ },
2170
+ "last_time_watched": {
2171
+ "type": "string",
2172
+ "description": "Last time watched"
2173
+ },
2174
+ "times_watched": {
2175
+ "type": "number",
2176
+ "description": "Times watched"
2177
+ }
2178
+ },
2179
+ "required": [
2180
+ "status",
2181
+ "topics",
2182
+ "rating",
2183
+ "online_rating",
2184
+ "last_time_watched",
2185
+ "times_watched"
2186
+ ],
2187
+ "description": "Movie: Additional data"
2188
+ },
2189
+ "DetailedWikipediaSchema": {
2190
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2191
+ "type": "object",
2192
+ "properties": {
2193
+ "status": {
2194
+ "type": "string",
2195
+ "enum": [
2196
+ "Pending",
2197
+ "In Progress",
2198
+ "Read",
2199
+ "Consolidated"
2200
+ ],
2201
+ "description": "Reading status"
2202
+ },
2203
+ "projects": {
2204
+ "type": "array",
2205
+ "items": {
2206
+ "type": "string"
2207
+ },
2208
+ "description": "Projects"
2209
+ },
2210
+ "topics": {
2211
+ "type": "array",
2212
+ "items": {
2213
+ "type": "string"
2214
+ },
2215
+ "description": "Topics"
2216
+ },
2217
+ "rating": {
2218
+ "type": "number",
2219
+ "description": "Rating of the article"
2220
+ }
2221
+ },
2222
+ "required": [
2223
+ "status",
2224
+ "projects",
2225
+ "topics",
2226
+ "rating"
2227
+ ],
2228
+ "description": "Wikipedia entry: Additional data"
2229
+ },
2230
+ "MetaArticleSchema": {
2231
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2232
+ "type": "object",
2233
+ "properties": {
2234
+ "type": {
2235
+ "type": "string",
2236
+ "const": "[[Sources]]"
2237
+ },
2238
+ "format": {
2239
+ "type": "string",
2240
+ "const": "[[Articles]]"
2241
+ },
2242
+ "areas": {
2243
+ "type": "array",
2244
+ "items": {
2245
+ "type": "string",
2246
+ "const": "[[Knowledge]]"
2247
+ }
2248
+ },
2249
+ "color": {
2250
+ "type": "string",
2251
+ "const": "#3171B2"
2252
+ },
2253
+ "icon": {
2254
+ "type": "string",
2255
+ "const": "newspaper"
2256
+ },
2257
+ "banner": {
2258
+ "type": "string"
2259
+ },
2260
+ "url": {
2261
+ "type": "string",
2262
+ "description": "URL of the article"
2263
+ }
2264
+ },
2265
+ "required": [
2266
+ "type",
2267
+ "format",
2268
+ "areas",
2269
+ "color",
2270
+ "icon",
2271
+ "url"
2272
+ ],
2273
+ "description": "Article: Metadata of Note"
2274
+ },
2275
+ "MetaBookSchema": {
2276
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2277
+ "type": "object",
2278
+ "properties": {
2279
+ "type": {
2280
+ "type": "string",
2281
+ "const": "[[Sources]]"
2282
+ },
2283
+ "format": {
2284
+ "type": "string",
2285
+ "const": "[[Books]]"
2286
+ },
2287
+ "areas": {
2288
+ "type": "array",
2289
+ "items": {
2290
+ "type": "string",
2291
+ "const": "[[Knowledge]]"
2292
+ }
2293
+ },
2294
+ "color": {
2295
+ "type": "string",
2296
+ "const": "#3171B2"
2297
+ },
2298
+ "icon": {
2299
+ "type": "string",
2300
+ "const": "book"
2301
+ },
2302
+ "cover": {
2303
+ "type": "string"
2304
+ },
2305
+ "url": {
2306
+ "type": "string",
2307
+ "description": "URL of the book in Amazon or similar"
2308
+ },
2309
+ "read_url": {
2310
+ "type": "string",
2311
+ "description": "URL of the reading of the book"
2312
+ }
2313
+ },
2314
+ "required": [
2315
+ "type",
2316
+ "format",
2317
+ "areas",
2318
+ "color",
2319
+ "icon",
2320
+ "url",
2321
+ "read_url"
2322
+ ],
2323
+ "description": "Book: Metadata of Note"
2324
+ },
761
2325
  "MetaClothingSchema": {
762
2326
  "$schema": "https://json-schema.org/draft/2020-12/schema",
763
2327
  "type": "object",
@@ -796,8 +2360,341 @@
796
2360
  "color",
797
2361
  "icon"
798
2362
  ],
799
- "additionalProperties": false,
800
2363
  "description": "Clothing item: Note metadata"
2364
+ },
2365
+ "MetaMovieSchema": {
2366
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2367
+ "type": "object",
2368
+ "properties": {
2369
+ "type": {
2370
+ "type": "string",
2371
+ "const": "[[Sources]]"
2372
+ },
2373
+ "format": {
2374
+ "type": "string",
2375
+ "const": "[[Movies]]"
2376
+ },
2377
+ "areas": {
2378
+ "type": "array",
2379
+ "items": {
2380
+ "type": "string",
2381
+ "const": "[[Creativity]]"
2382
+ }
2383
+ },
2384
+ "color": {
2385
+ "type": "string",
2386
+ "const": "#BE9207"
2387
+ },
2388
+ "icon": {
2389
+ "type": "string",
2390
+ "const": "movie"
2391
+ },
2392
+ "cover": {
2393
+ "type": "string"
2394
+ },
2395
+ "url": {
2396
+ "type": "string",
2397
+ "description": "URL of the movie in IMDB or similar"
2398
+ },
2399
+ "watch_url": {
2400
+ "type": "string",
2401
+ "description": "URL of the movie in streaming"
2402
+ }
2403
+ },
2404
+ "required": [
2405
+ "type",
2406
+ "format",
2407
+ "areas",
2408
+ "color",
2409
+ "icon",
2410
+ "url",
2411
+ "watch_url"
2412
+ ],
2413
+ "description": "Movie: Metadata of Note"
2414
+ },
2415
+ "MetaWikipediaSchema": {
2416
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2417
+ "type": "object",
2418
+ "properties": {
2419
+ "type": {
2420
+ "type": "string",
2421
+ "const": "[[Sources]]"
2422
+ },
2423
+ "format": {
2424
+ "type": "string",
2425
+ "const": "[[Encyclopedia Entries]]"
2426
+ },
2427
+ "areas": {
2428
+ "type": "array",
2429
+ "items": {
2430
+ "type": "string",
2431
+ "const": "[[Knowledge]]"
2432
+ }
2433
+ },
2434
+ "color": {
2435
+ "type": "string",
2436
+ "const": "#3171B2"
2437
+ },
2438
+ "icon": {
2439
+ "default": "wikipedia",
2440
+ "description": "Lucide icon.",
2441
+ "type": "string"
2442
+ },
2443
+ "banner": {
2444
+ "type": "string"
2445
+ },
2446
+ "url": {
2447
+ "type": "string",
2448
+ "description": "URL of the article"
2449
+ },
2450
+ "platform": {
2451
+ "type": "string",
2452
+ "const": "Wikipedia"
2453
+ }
2454
+ },
2455
+ "required": [
2456
+ "type",
2457
+ "format",
2458
+ "areas",
2459
+ "color",
2460
+ "url",
2461
+ "platform"
2462
+ ],
2463
+ "description": "Wikipedia entry: Metadata of Note"
2464
+ },
2465
+ "MovieSchema": {
2466
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2467
+ "type": "object",
2468
+ "properties": {
2469
+ "title": {
2470
+ "type": "string",
2471
+ "description": "Title of the movie"
2472
+ },
2473
+ "description": {
2474
+ "type": "string",
2475
+ "description": "Description of the movie"
2476
+ },
2477
+ "author": {
2478
+ "type": "array",
2479
+ "items": {
2480
+ "type": "string"
2481
+ },
2482
+ "description": "Authors. Writers, directors, producers, etc."
2483
+ },
2484
+ "actors": {
2485
+ "type": "array",
2486
+ "items": {
2487
+ "type": "string"
2488
+ },
2489
+ "description": "Actors"
2490
+ },
2491
+ "published": {
2492
+ "type": "string",
2493
+ "description": "Year of publication"
2494
+ },
2495
+ "genres": {
2496
+ "type": "array",
2497
+ "items": {
2498
+ "type": "string"
2499
+ },
2500
+ "description": "Genres"
2501
+ },
2502
+ "status": {
2503
+ "type": "string",
2504
+ "enum": [
2505
+ "Pending",
2506
+ "In Progress",
2507
+ "Completed"
2508
+ ],
2509
+ "description": "Watching status"
2510
+ },
2511
+ "topics": {
2512
+ "type": "array",
2513
+ "items": {
2514
+ "type": "string"
2515
+ },
2516
+ "description": "Topics"
2517
+ },
2518
+ "rating": {
2519
+ "type": "number",
2520
+ "description": "Rating of the movie"
2521
+ },
2522
+ "online_rating": {
2523
+ "type": "number",
2524
+ "description": "Online rating"
2525
+ },
2526
+ "last_time_watched": {
2527
+ "type": "string",
2528
+ "description": "Last time watched"
2529
+ },
2530
+ "times_watched": {
2531
+ "type": "number",
2532
+ "description": "Times watched"
2533
+ },
2534
+ "type": {
2535
+ "type": "string",
2536
+ "const": "[[Sources]]"
2537
+ },
2538
+ "format": {
2539
+ "type": "string",
2540
+ "const": "[[Movies]]"
2541
+ },
2542
+ "areas": {
2543
+ "type": "array",
2544
+ "items": {
2545
+ "type": "string",
2546
+ "const": "[[Creativity]]"
2547
+ }
2548
+ },
2549
+ "color": {
2550
+ "type": "string",
2551
+ "const": "#BE9207"
2552
+ },
2553
+ "icon": {
2554
+ "type": "string",
2555
+ "const": "movie"
2556
+ },
2557
+ "cover": {
2558
+ "type": "string"
2559
+ },
2560
+ "url": {
2561
+ "type": "string",
2562
+ "description": "URL of the movie in IMDB or similar"
2563
+ },
2564
+ "watch_url": {
2565
+ "type": "string",
2566
+ "description": "URL of the movie in streaming"
2567
+ }
2568
+ },
2569
+ "required": [
2570
+ "title",
2571
+ "description",
2572
+ "author",
2573
+ "actors",
2574
+ "published",
2575
+ "genres",
2576
+ "status",
2577
+ "topics",
2578
+ "rating",
2579
+ "online_rating",
2580
+ "last_time_watched",
2581
+ "times_watched",
2582
+ "type",
2583
+ "format",
2584
+ "areas",
2585
+ "color",
2586
+ "icon",
2587
+ "url",
2588
+ "watch_url"
2589
+ ],
2590
+ "description": "Movie"
2591
+ },
2592
+ "WikipediaSchema": {
2593
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2594
+ "type": "object",
2595
+ "properties": {
2596
+ "title": {
2597
+ "type": "string",
2598
+ "description": "Title of the Wikipedia entry"
2599
+ },
2600
+ "description": {
2601
+ "description": "Description",
2602
+ "type": "string"
2603
+ },
2604
+ "excerpt": {
2605
+ "description": "Extract of the article",
2606
+ "type": "string"
2607
+ },
2608
+ "author": {
2609
+ "type": "array",
2610
+ "items": {
2611
+ "type": "string"
2612
+ },
2613
+ "description": "Authors"
2614
+ },
2615
+ "published": {
2616
+ "description": "Year of publication",
2617
+ "type": "string"
2618
+ },
2619
+ "status": {
2620
+ "type": "string",
2621
+ "enum": [
2622
+ "Pending",
2623
+ "In Progress",
2624
+ "Read",
2625
+ "Consolidated"
2626
+ ],
2627
+ "description": "Reading status"
2628
+ },
2629
+ "projects": {
2630
+ "type": "array",
2631
+ "items": {
2632
+ "type": "string"
2633
+ },
2634
+ "description": "Projects"
2635
+ },
2636
+ "topics": {
2637
+ "type": "array",
2638
+ "items": {
2639
+ "type": "string"
2640
+ },
2641
+ "description": "Topics"
2642
+ },
2643
+ "rating": {
2644
+ "type": "number",
2645
+ "description": "Rating of the article"
2646
+ },
2647
+ "type": {
2648
+ "type": "string",
2649
+ "const": "[[Sources]]"
2650
+ },
2651
+ "format": {
2652
+ "type": "string",
2653
+ "const": "[[Encyclopedia Entries]]"
2654
+ },
2655
+ "areas": {
2656
+ "type": "array",
2657
+ "items": {
2658
+ "type": "string",
2659
+ "const": "[[Knowledge]]"
2660
+ }
2661
+ },
2662
+ "color": {
2663
+ "type": "string",
2664
+ "const": "#3171B2"
2665
+ },
2666
+ "icon": {
2667
+ "default": "wikipedia",
2668
+ "description": "Lucide icon.",
2669
+ "type": "string"
2670
+ },
2671
+ "banner": {
2672
+ "type": "string"
2673
+ },
2674
+ "url": {
2675
+ "type": "string",
2676
+ "description": "URL of the article"
2677
+ },
2678
+ "platform": {
2679
+ "type": "string",
2680
+ "const": "Wikipedia"
2681
+ }
2682
+ },
2683
+ "required": [
2684
+ "title",
2685
+ "author",
2686
+ "status",
2687
+ "projects",
2688
+ "topics",
2689
+ "rating",
2690
+ "type",
2691
+ "format",
2692
+ "areas",
2693
+ "color",
2694
+ "url",
2695
+ "platform"
2696
+ ],
2697
+ "description": "Wikipedia entry"
801
2698
  }
802
2699
  }
803
2700
  }