@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,308 @@
3
3
  "title": "@segha/catalog",
4
4
  "description": "Schemas for Petroglyph Catalog",
5
5
  "$defs": {
6
+ "ArticleSchema": {
7
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
8
+ "type": "object",
9
+ "properties": {
10
+ "title": {
11
+ "type": "string",
12
+ "description": "Title of the article"
13
+ },
14
+ "description": {
15
+ "description": "Description",
16
+ "type": "string"
17
+ },
18
+ "excerpt": {
19
+ "description": "Extract of the article",
20
+ "type": "string"
21
+ },
22
+ "author": {
23
+ "type": "array",
24
+ "items": {
25
+ "type": "string"
26
+ },
27
+ "description": "Authors"
28
+ },
29
+ "published": {
30
+ "description": "Year of publication",
31
+ "type": "string"
32
+ },
33
+ "status": {
34
+ "type": "string",
35
+ "enum": [
36
+ "Pending",
37
+ "In Progress",
38
+ "Read",
39
+ "Consolidated"
40
+ ],
41
+ "description": "Reading status"
42
+ },
43
+ "projects": {
44
+ "type": "array",
45
+ "items": {
46
+ "type": "string"
47
+ },
48
+ "description": "Projects"
49
+ },
50
+ "topics": {
51
+ "type": "array",
52
+ "items": {
53
+ "type": "string"
54
+ },
55
+ "description": "Topics"
56
+ },
57
+ "rating": {
58
+ "type": "number",
59
+ "description": "Rating of the article"
60
+ },
61
+ "type": {
62
+ "type": "string",
63
+ "const": "[[Sources]]"
64
+ },
65
+ "format": {
66
+ "type": "string",
67
+ "const": "[[Articles]]"
68
+ },
69
+ "areas": {
70
+ "type": "array",
71
+ "items": {
72
+ "type": "string",
73
+ "const": "[[Knowledge]]"
74
+ }
75
+ },
76
+ "color": {
77
+ "type": "string",
78
+ "const": "#3171B2"
79
+ },
80
+ "icon": {
81
+ "type": "string",
82
+ "const": "newspaper"
83
+ },
84
+ "banner": {
85
+ "type": "string"
86
+ },
87
+ "url": {
88
+ "type": "string",
89
+ "description": "URL of the article"
90
+ }
91
+ },
92
+ "required": [
93
+ "title",
94
+ "author",
95
+ "status",
96
+ "projects",
97
+ "topics",
98
+ "rating",
99
+ "type",
100
+ "format",
101
+ "areas",
102
+ "color",
103
+ "icon",
104
+ "url"
105
+ ],
106
+ "description": "Article"
107
+ },
108
+ "BookSchema": {
109
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
110
+ "type": "object",
111
+ "properties": {
112
+ "title": {
113
+ "type": "string",
114
+ "description": "Title of the book"
115
+ },
116
+ "subtitle": {
117
+ "description": "Subtitle of the book",
118
+ "type": "string"
119
+ },
120
+ "description": {
121
+ "description": "Description of the book",
122
+ "type": "string"
123
+ },
124
+ "author": {
125
+ "type": "array",
126
+ "items": {
127
+ "type": "string"
128
+ },
129
+ "description": "Authors"
130
+ },
131
+ "published": {
132
+ "type": "string",
133
+ "description": "Year of publication"
134
+ },
135
+ "categories": {
136
+ "type": "array",
137
+ "items": {
138
+ "type": "string"
139
+ },
140
+ "description": "Categories"
141
+ },
142
+ "status": {
143
+ "type": "string",
144
+ "enum": [
145
+ "Pending",
146
+ "In Progress",
147
+ "Read",
148
+ "Consolidated"
149
+ ],
150
+ "description": "Reading status"
151
+ },
152
+ "topics": {
153
+ "type": "array",
154
+ "items": {
155
+ "type": "string"
156
+ },
157
+ "description": "Topics"
158
+ },
159
+ "rating": {
160
+ "type": "number",
161
+ "description": "Rating of the book"
162
+ },
163
+ "online_rating": {
164
+ "type": "number",
165
+ "description": "Online rating"
166
+ },
167
+ "last_time_read": {
168
+ "type": "string",
169
+ "description": "Last time read"
170
+ },
171
+ "times_read": {
172
+ "type": "number",
173
+ "description": "Times read"
174
+ },
175
+ "type": {
176
+ "type": "string",
177
+ "const": "[[Sources]]"
178
+ },
179
+ "format": {
180
+ "type": "string",
181
+ "const": "[[Books]]"
182
+ },
183
+ "areas": {
184
+ "type": "array",
185
+ "items": {
186
+ "type": "string",
187
+ "const": "[[Knowledge]]"
188
+ }
189
+ },
190
+ "color": {
191
+ "type": "string",
192
+ "const": "#3171B2"
193
+ },
194
+ "icon": {
195
+ "type": "string",
196
+ "const": "book"
197
+ },
198
+ "cover": {
199
+ "type": "string"
200
+ },
201
+ "url": {
202
+ "type": "string",
203
+ "description": "URL of the book in Amazon or similar"
204
+ },
205
+ "read_url": {
206
+ "type": "string",
207
+ "description": "URL of the reading of the book"
208
+ }
209
+ },
210
+ "required": [
211
+ "title",
212
+ "author",
213
+ "published",
214
+ "categories",
215
+ "status",
216
+ "topics",
217
+ "rating",
218
+ "online_rating",
219
+ "last_time_read",
220
+ "times_read",
221
+ "type",
222
+ "format",
223
+ "areas",
224
+ "color",
225
+ "icon",
226
+ "url",
227
+ "read_url"
228
+ ],
229
+ "description": "Book"
230
+ },
231
+ "CatalogArticleSchema": {
232
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
233
+ "type": "object",
234
+ "properties": {
235
+ "title": {
236
+ "type": "string",
237
+ "description": "Title of the article"
238
+ },
239
+ "description": {
240
+ "description": "Description",
241
+ "type": "string"
242
+ },
243
+ "excerpt": {
244
+ "description": "Extract of the article",
245
+ "type": "string"
246
+ },
247
+ "author": {
248
+ "type": "array",
249
+ "items": {
250
+ "type": "string"
251
+ },
252
+ "description": "Authors"
253
+ },
254
+ "published": {
255
+ "description": "Year of publication",
256
+ "type": "string"
257
+ }
258
+ },
259
+ "required": [
260
+ "title",
261
+ "author"
262
+ ],
263
+ "description": "Article: Data obtained from catalogation"
264
+ },
265
+ "CatalogBookSchema": {
266
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
267
+ "type": "object",
268
+ "properties": {
269
+ "title": {
270
+ "type": "string",
271
+ "description": "Title of the book"
272
+ },
273
+ "subtitle": {
274
+ "description": "Subtitle of the book",
275
+ "type": "string"
276
+ },
277
+ "description": {
278
+ "description": "Description of the book",
279
+ "type": "string"
280
+ },
281
+ "author": {
282
+ "type": "array",
283
+ "items": {
284
+ "type": "string"
285
+ },
286
+ "description": "Authors"
287
+ },
288
+ "published": {
289
+ "type": "string",
290
+ "description": "Year of publication"
291
+ },
292
+ "categories": {
293
+ "type": "array",
294
+ "items": {
295
+ "type": "string"
296
+ },
297
+ "description": "Categories"
298
+ }
299
+ },
300
+ "required": [
301
+ "title",
302
+ "author",
303
+ "published",
304
+ "categories"
305
+ ],
306
+ "description": "Book: Data obtained from catalogation"
307
+ },
6
308
  "CatalogClothingSchema": {
7
309
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8
310
  "type": "object",
@@ -292,9 +594,90 @@
292
594
  "primary_color",
293
595
  "layer"
294
596
  ],
295
- "additionalProperties": false,
296
597
  "description": "Clothing item: Catalogable data"
297
598
  },
599
+ "CatalogMovieSchema": {
600
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
601
+ "type": "object",
602
+ "properties": {
603
+ "title": {
604
+ "type": "string",
605
+ "description": "Title of the movie"
606
+ },
607
+ "description": {
608
+ "type": "string",
609
+ "description": "Description of the movie"
610
+ },
611
+ "author": {
612
+ "type": "array",
613
+ "items": {
614
+ "type": "string"
615
+ },
616
+ "description": "Authors. Writers, directors, producers, etc."
617
+ },
618
+ "actors": {
619
+ "type": "array",
620
+ "items": {
621
+ "type": "string"
622
+ },
623
+ "description": "Actors"
624
+ },
625
+ "published": {
626
+ "type": "string",
627
+ "description": "Year of publication"
628
+ },
629
+ "genres": {
630
+ "type": "array",
631
+ "items": {
632
+ "type": "string"
633
+ },
634
+ "description": "Genres"
635
+ }
636
+ },
637
+ "required": [
638
+ "title",
639
+ "description",
640
+ "author",
641
+ "actors",
642
+ "published",
643
+ "genres"
644
+ ],
645
+ "description": "Movie: Data obtained from catalogation"
646
+ },
647
+ "CatalogWikipediaSchema": {
648
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
649
+ "type": "object",
650
+ "properties": {
651
+ "title": {
652
+ "type": "string",
653
+ "description": "Title of the Wikipedia entry"
654
+ },
655
+ "description": {
656
+ "description": "Description",
657
+ "type": "string"
658
+ },
659
+ "excerpt": {
660
+ "description": "Extract of the article",
661
+ "type": "string"
662
+ },
663
+ "author": {
664
+ "type": "array",
665
+ "items": {
666
+ "type": "string"
667
+ },
668
+ "description": "Authors"
669
+ },
670
+ "published": {
671
+ "description": "Year of publication",
672
+ "type": "string"
673
+ }
674
+ },
675
+ "required": [
676
+ "title",
677
+ "author"
678
+ ],
679
+ "description": "Wikipedia entry: Data obtainable from cataloging"
680
+ },
298
681
  "ClothingSchema": {
299
682
  "$schema": "https://json-schema.org/draft/2020-12/schema",
300
683
  "type": "object",
@@ -672,7 +1055,6 @@
672
1055
  "slot",
673
1056
  "primary_color",
674
1057
  "layer",
675
- "status",
676
1058
  "size",
677
1059
  "type",
678
1060
  "subtype",
@@ -680,9 +1062,97 @@
680
1062
  "color",
681
1063
  "icon"
682
1064
  ],
683
- "additionalProperties": false,
684
1065
  "description": "Clothing item"
685
1066
  },
1067
+ "DetailedArticleSchema": {
1068
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1069
+ "type": "object",
1070
+ "properties": {
1071
+ "status": {
1072
+ "type": "string",
1073
+ "enum": [
1074
+ "Pending",
1075
+ "In Progress",
1076
+ "Read",
1077
+ "Consolidated"
1078
+ ],
1079
+ "description": "Reading status"
1080
+ },
1081
+ "projects": {
1082
+ "type": "array",
1083
+ "items": {
1084
+ "type": "string"
1085
+ },
1086
+ "description": "Projects"
1087
+ },
1088
+ "topics": {
1089
+ "type": "array",
1090
+ "items": {
1091
+ "type": "string"
1092
+ },
1093
+ "description": "Topics"
1094
+ },
1095
+ "rating": {
1096
+ "type": "number",
1097
+ "description": "Rating of the article"
1098
+ }
1099
+ },
1100
+ "required": [
1101
+ "status",
1102
+ "projects",
1103
+ "topics",
1104
+ "rating"
1105
+ ],
1106
+ "description": "Article: Additional data"
1107
+ },
1108
+ "DetailedBookSchema": {
1109
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1110
+ "type": "object",
1111
+ "properties": {
1112
+ "status": {
1113
+ "type": "string",
1114
+ "enum": [
1115
+ "Pending",
1116
+ "In Progress",
1117
+ "Read",
1118
+ "Consolidated"
1119
+ ],
1120
+ "description": "Reading status"
1121
+ },
1122
+ "topics": {
1123
+ "type": "array",
1124
+ "items": {
1125
+ "type": "string"
1126
+ },
1127
+ "description": "Topics"
1128
+ },
1129
+ "rating": {
1130
+ "type": "number",
1131
+ "description": "Rating of the book"
1132
+ },
1133
+ "online_rating": {
1134
+ "type": "number",
1135
+ "description": "Online rating"
1136
+ },
1137
+ "last_time_read": {
1138
+ "type": "string",
1139
+ "description": "Last time read"
1140
+ },
1141
+ "times_read": {
1142
+ "type": "number",
1143
+ "description": "Times read"
1144
+ }
1145
+ },
1146
+ "required": [
1147
+ "status",
1148
+ "topics",
1149
+ "rating",
1150
+ "online_rating",
1151
+ "last_time_read",
1152
+ "times_read"
1153
+ ],
1154
+ "description": "Book: Additional data"
1155
+ },
686
1156
  "DetailedClothingSchema": {
687
1157
  "$schema": "https://json-schema.org/draft/2020-12/schema",
688
1158
  "type": "object",
@@ -752,34 +1222,215 @@
752
1222
  }
753
1223
  },
754
1224
  "required": [
755
- "status",
756
1225
  "size"
757
1226
  ],
758
- "additionalProperties": false,
759
1227
  "description": "Clothing item: Additional hard-to-obtain data"
760
1228
  },
761
- "MetaClothingSchema": {
1229
+ "DetailedMovieSchema": {
762
1230
  "$schema": "https://json-schema.org/draft/2020-12/schema",
763
1231
  "type": "object",
764
1232
  "properties": {
765
- "type": {
766
- "type": "string",
767
- "const": "[[Resources]]"
768
- },
769
- "subtype": {
1233
+ "status": {
770
1234
  "type": "string",
771
- "const": "[[Clothes]]"
1235
+ "enum": [
1236
+ "Pending",
1237
+ "In Progress",
1238
+ "Completed"
1239
+ ],
1240
+ "description": "Watching status"
772
1241
  },
773
- "areas": {
1242
+ "topics": {
774
1243
  "type": "array",
775
1244
  "items": {
776
- "type": "string",
777
- "const": "[[Home]]"
778
- }
1245
+ "type": "string"
1246
+ },
1247
+ "description": "Topics"
779
1248
  },
780
- "color": {
781
- "type": "string",
782
- "const": "#CB6120"
1249
+ "rating": {
1250
+ "type": "number",
1251
+ "description": "Rating of the movie"
1252
+ },
1253
+ "online_rating": {
1254
+ "type": "number",
1255
+ "description": "Online rating"
1256
+ },
1257
+ "last_time_watched": {
1258
+ "type": "string",
1259
+ "description": "Last time watched"
1260
+ },
1261
+ "times_watched": {
1262
+ "type": "number",
1263
+ "description": "Times watched"
1264
+ }
1265
+ },
1266
+ "required": [
1267
+ "status",
1268
+ "topics",
1269
+ "rating",
1270
+ "online_rating",
1271
+ "last_time_watched",
1272
+ "times_watched"
1273
+ ],
1274
+ "description": "Movie: Additional data"
1275
+ },
1276
+ "DetailedWikipediaSchema": {
1277
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1278
+ "type": "object",
1279
+ "properties": {
1280
+ "status": {
1281
+ "type": "string",
1282
+ "enum": [
1283
+ "Pending",
1284
+ "In Progress",
1285
+ "Read",
1286
+ "Consolidated"
1287
+ ],
1288
+ "description": "Reading status"
1289
+ },
1290
+ "projects": {
1291
+ "type": "array",
1292
+ "items": {
1293
+ "type": "string"
1294
+ },
1295
+ "description": "Projects"
1296
+ },
1297
+ "topics": {
1298
+ "type": "array",
1299
+ "items": {
1300
+ "type": "string"
1301
+ },
1302
+ "description": "Topics"
1303
+ },
1304
+ "rating": {
1305
+ "type": "number",
1306
+ "description": "Rating of the article"
1307
+ }
1308
+ },
1309
+ "required": [
1310
+ "status",
1311
+ "projects",
1312
+ "topics",
1313
+ "rating"
1314
+ ],
1315
+ "description": "Wikipedia entry: Additional data"
1316
+ },
1317
+ "MetaArticleSchema": {
1318
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1319
+ "type": "object",
1320
+ "properties": {
1321
+ "type": {
1322
+ "type": "string",
1323
+ "const": "[[Sources]]"
1324
+ },
1325
+ "format": {
1326
+ "type": "string",
1327
+ "const": "[[Articles]]"
1328
+ },
1329
+ "areas": {
1330
+ "type": "array",
1331
+ "items": {
1332
+ "type": "string",
1333
+ "const": "[[Knowledge]]"
1334
+ }
1335
+ },
1336
+ "color": {
1337
+ "type": "string",
1338
+ "const": "#3171B2"
1339
+ },
1340
+ "icon": {
1341
+ "type": "string",
1342
+ "const": "newspaper"
1343
+ },
1344
+ "banner": {
1345
+ "type": "string"
1346
+ },
1347
+ "url": {
1348
+ "type": "string",
1349
+ "description": "URL of the article"
1350
+ }
1351
+ },
1352
+ "required": [
1353
+ "type",
1354
+ "format",
1355
+ "areas",
1356
+ "color",
1357
+ "icon",
1358
+ "url"
1359
+ ],
1360
+ "description": "Article: Metadata of Note"
1361
+ },
1362
+ "MetaBookSchema": {
1363
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1364
+ "type": "object",
1365
+ "properties": {
1366
+ "type": {
1367
+ "type": "string",
1368
+ "const": "[[Sources]]"
1369
+ },
1370
+ "format": {
1371
+ "type": "string",
1372
+ "const": "[[Books]]"
1373
+ },
1374
+ "areas": {
1375
+ "type": "array",
1376
+ "items": {
1377
+ "type": "string",
1378
+ "const": "[[Knowledge]]"
1379
+ }
1380
+ },
1381
+ "color": {
1382
+ "type": "string",
1383
+ "const": "#3171B2"
1384
+ },
1385
+ "icon": {
1386
+ "type": "string",
1387
+ "const": "book"
1388
+ },
1389
+ "cover": {
1390
+ "type": "string"
1391
+ },
1392
+ "url": {
1393
+ "type": "string",
1394
+ "description": "URL of the book in Amazon or similar"
1395
+ },
1396
+ "read_url": {
1397
+ "type": "string",
1398
+ "description": "URL of the reading of the book"
1399
+ }
1400
+ },
1401
+ "required": [
1402
+ "type",
1403
+ "format",
1404
+ "areas",
1405
+ "color",
1406
+ "icon",
1407
+ "url",
1408
+ "read_url"
1409
+ ],
1410
+ "description": "Book: Metadata of Note"
1411
+ },
1412
+ "MetaClothingSchema": {
1413
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1414
+ "type": "object",
1415
+ "properties": {
1416
+ "type": {
1417
+ "type": "string",
1418
+ "const": "[[Resources]]"
1419
+ },
1420
+ "subtype": {
1421
+ "type": "string",
1422
+ "const": "[[Clothes]]"
1423
+ },
1424
+ "areas": {
1425
+ "type": "array",
1426
+ "items": {
1427
+ "type": "string",
1428
+ "const": "[[Home]]"
1429
+ }
1430
+ },
1431
+ "color": {
1432
+ "type": "string",
1433
+ "const": "#CB6120"
783
1434
  },
784
1435
  "icon": {
785
1436
  "type": "string",
@@ -796,8 +1447,1187 @@
796
1447
  "color",
797
1448
  "icon"
798
1449
  ],
799
- "additionalProperties": false,
800
1450
  "description": "Clothing item: Note metadata"
1451
+ },
1452
+ "MetaMovieSchema": {
1453
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1454
+ "type": "object",
1455
+ "properties": {
1456
+ "type": {
1457
+ "type": "string",
1458
+ "const": "[[Sources]]"
1459
+ },
1460
+ "format": {
1461
+ "type": "string",
1462
+ "const": "[[Movies]]"
1463
+ },
1464
+ "areas": {
1465
+ "type": "array",
1466
+ "items": {
1467
+ "type": "string",
1468
+ "const": "[[Creativity]]"
1469
+ }
1470
+ },
1471
+ "color": {
1472
+ "type": "string",
1473
+ "const": "#BE9207"
1474
+ },
1475
+ "icon": {
1476
+ "type": "string",
1477
+ "const": "movie"
1478
+ },
1479
+ "cover": {
1480
+ "type": "string"
1481
+ },
1482
+ "url": {
1483
+ "type": "string",
1484
+ "description": "URL of the movie in IMDB or similar"
1485
+ },
1486
+ "watch_url": {
1487
+ "type": "string",
1488
+ "description": "URL of the movie in streaming"
1489
+ }
1490
+ },
1491
+ "required": [
1492
+ "type",
1493
+ "format",
1494
+ "areas",
1495
+ "color",
1496
+ "icon",
1497
+ "url",
1498
+ "watch_url"
1499
+ ],
1500
+ "description": "Movie: Metadata of Note"
1501
+ },
1502
+ "MetaWikipediaSchema": {
1503
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1504
+ "type": "object",
1505
+ "properties": {
1506
+ "type": {
1507
+ "type": "string",
1508
+ "const": "[[Sources]]"
1509
+ },
1510
+ "format": {
1511
+ "type": "string",
1512
+ "const": "[[Encyclopedia Entries]]"
1513
+ },
1514
+ "areas": {
1515
+ "type": "array",
1516
+ "items": {
1517
+ "type": "string",
1518
+ "const": "[[Knowledge]]"
1519
+ }
1520
+ },
1521
+ "color": {
1522
+ "type": "string",
1523
+ "const": "#3171B2"
1524
+ },
1525
+ "icon": {
1526
+ "default": "wikipedia",
1527
+ "description": "Lucide icon.",
1528
+ "type": "string"
1529
+ },
1530
+ "banner": {
1531
+ "type": "string"
1532
+ },
1533
+ "url": {
1534
+ "type": "string",
1535
+ "description": "URL of the article"
1536
+ },
1537
+ "platform": {
1538
+ "type": "string",
1539
+ "const": "Wikipedia"
1540
+ }
1541
+ },
1542
+ "required": [
1543
+ "type",
1544
+ "format",
1545
+ "areas",
1546
+ "color",
1547
+ "url",
1548
+ "platform"
1549
+ ],
1550
+ "description": "Wikipedia entry: Metadata of Note"
1551
+ },
1552
+ "MovieSchema": {
1553
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1554
+ "type": "object",
1555
+ "properties": {
1556
+ "title": {
1557
+ "type": "string",
1558
+ "description": "Title of the movie"
1559
+ },
1560
+ "description": {
1561
+ "type": "string",
1562
+ "description": "Description of the movie"
1563
+ },
1564
+ "author": {
1565
+ "type": "array",
1566
+ "items": {
1567
+ "type": "string"
1568
+ },
1569
+ "description": "Authors. Writers, directors, producers, etc."
1570
+ },
1571
+ "actors": {
1572
+ "type": "array",
1573
+ "items": {
1574
+ "type": "string"
1575
+ },
1576
+ "description": "Actors"
1577
+ },
1578
+ "published": {
1579
+ "type": "string",
1580
+ "description": "Year of publication"
1581
+ },
1582
+ "genres": {
1583
+ "type": "array",
1584
+ "items": {
1585
+ "type": "string"
1586
+ },
1587
+ "description": "Genres"
1588
+ },
1589
+ "status": {
1590
+ "type": "string",
1591
+ "enum": [
1592
+ "Pending",
1593
+ "In Progress",
1594
+ "Completed"
1595
+ ],
1596
+ "description": "Watching status"
1597
+ },
1598
+ "topics": {
1599
+ "type": "array",
1600
+ "items": {
1601
+ "type": "string"
1602
+ },
1603
+ "description": "Topics"
1604
+ },
1605
+ "rating": {
1606
+ "type": "number",
1607
+ "description": "Rating of the movie"
1608
+ },
1609
+ "online_rating": {
1610
+ "type": "number",
1611
+ "description": "Online rating"
1612
+ },
1613
+ "last_time_watched": {
1614
+ "type": "string",
1615
+ "description": "Last time watched"
1616
+ },
1617
+ "times_watched": {
1618
+ "type": "number",
1619
+ "description": "Times watched"
1620
+ },
1621
+ "type": {
1622
+ "type": "string",
1623
+ "const": "[[Sources]]"
1624
+ },
1625
+ "format": {
1626
+ "type": "string",
1627
+ "const": "[[Movies]]"
1628
+ },
1629
+ "areas": {
1630
+ "type": "array",
1631
+ "items": {
1632
+ "type": "string",
1633
+ "const": "[[Creativity]]"
1634
+ }
1635
+ },
1636
+ "color": {
1637
+ "type": "string",
1638
+ "const": "#BE9207"
1639
+ },
1640
+ "icon": {
1641
+ "type": "string",
1642
+ "const": "movie"
1643
+ },
1644
+ "cover": {
1645
+ "type": "string"
1646
+ },
1647
+ "url": {
1648
+ "type": "string",
1649
+ "description": "URL of the movie in IMDB or similar"
1650
+ },
1651
+ "watch_url": {
1652
+ "type": "string",
1653
+ "description": "URL of the movie in streaming"
1654
+ }
1655
+ },
1656
+ "required": [
1657
+ "title",
1658
+ "description",
1659
+ "author",
1660
+ "actors",
1661
+ "published",
1662
+ "genres",
1663
+ "status",
1664
+ "topics",
1665
+ "rating",
1666
+ "online_rating",
1667
+ "last_time_watched",
1668
+ "times_watched",
1669
+ "type",
1670
+ "format",
1671
+ "areas",
1672
+ "color",
1673
+ "icon",
1674
+ "url",
1675
+ "watch_url"
1676
+ ],
1677
+ "description": "Movie"
1678
+ },
1679
+ "NoteSchema": {
1680
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1681
+ "anyOf": [
1682
+ {
1683
+ "type": "object",
1684
+ "properties": {
1685
+ "title": {
1686
+ "type": "string",
1687
+ "description": "Title of the article"
1688
+ },
1689
+ "description": {
1690
+ "description": "Description",
1691
+ "type": "string"
1692
+ },
1693
+ "excerpt": {
1694
+ "description": "Extract of the article",
1695
+ "type": "string"
1696
+ },
1697
+ "author": {
1698
+ "type": "array",
1699
+ "items": {
1700
+ "type": "string"
1701
+ },
1702
+ "description": "Authors"
1703
+ },
1704
+ "published": {
1705
+ "description": "Year of publication",
1706
+ "type": "string"
1707
+ },
1708
+ "status": {
1709
+ "type": "string",
1710
+ "enum": [
1711
+ "Pending",
1712
+ "In Progress",
1713
+ "Read",
1714
+ "Consolidated"
1715
+ ],
1716
+ "description": "Reading status"
1717
+ },
1718
+ "projects": {
1719
+ "type": "array",
1720
+ "items": {
1721
+ "type": "string"
1722
+ },
1723
+ "description": "Projects"
1724
+ },
1725
+ "topics": {
1726
+ "type": "array",
1727
+ "items": {
1728
+ "type": "string"
1729
+ },
1730
+ "description": "Topics"
1731
+ },
1732
+ "rating": {
1733
+ "type": "number",
1734
+ "description": "Rating of the article"
1735
+ },
1736
+ "type": {
1737
+ "type": "string",
1738
+ "const": "[[Sources]]"
1739
+ },
1740
+ "format": {
1741
+ "type": "string",
1742
+ "const": "[[Articles]]"
1743
+ },
1744
+ "areas": {
1745
+ "type": "array",
1746
+ "items": {
1747
+ "type": "string",
1748
+ "const": "[[Knowledge]]"
1749
+ }
1750
+ },
1751
+ "color": {
1752
+ "type": "string",
1753
+ "const": "#3171B2"
1754
+ },
1755
+ "icon": {
1756
+ "type": "string",
1757
+ "const": "newspaper"
1758
+ },
1759
+ "banner": {
1760
+ "type": "string"
1761
+ },
1762
+ "url": {
1763
+ "type": "string",
1764
+ "description": "URL of the article"
1765
+ }
1766
+ },
1767
+ "required": [
1768
+ "title",
1769
+ "author",
1770
+ "status",
1771
+ "projects",
1772
+ "topics",
1773
+ "rating",
1774
+ "type",
1775
+ "format",
1776
+ "areas",
1777
+ "color",
1778
+ "icon",
1779
+ "url"
1780
+ ],
1781
+ "description": "Article"
1782
+ },
1783
+ {
1784
+ "type": "object",
1785
+ "properties": {
1786
+ "title": {
1787
+ "type": "string",
1788
+ "description": "Title of the book"
1789
+ },
1790
+ "subtitle": {
1791
+ "description": "Subtitle of the book",
1792
+ "type": "string"
1793
+ },
1794
+ "description": {
1795
+ "description": "Description of the book",
1796
+ "type": "string"
1797
+ },
1798
+ "author": {
1799
+ "type": "array",
1800
+ "items": {
1801
+ "type": "string"
1802
+ },
1803
+ "description": "Authors"
1804
+ },
1805
+ "published": {
1806
+ "type": "string",
1807
+ "description": "Year of publication"
1808
+ },
1809
+ "categories": {
1810
+ "type": "array",
1811
+ "items": {
1812
+ "type": "string"
1813
+ },
1814
+ "description": "Categories"
1815
+ },
1816
+ "status": {
1817
+ "type": "string",
1818
+ "enum": [
1819
+ "Pending",
1820
+ "In Progress",
1821
+ "Read",
1822
+ "Consolidated"
1823
+ ],
1824
+ "description": "Reading status"
1825
+ },
1826
+ "topics": {
1827
+ "type": "array",
1828
+ "items": {
1829
+ "type": "string"
1830
+ },
1831
+ "description": "Topics"
1832
+ },
1833
+ "rating": {
1834
+ "type": "number",
1835
+ "description": "Rating of the book"
1836
+ },
1837
+ "online_rating": {
1838
+ "type": "number",
1839
+ "description": "Online rating"
1840
+ },
1841
+ "last_time_read": {
1842
+ "type": "string",
1843
+ "description": "Last time read"
1844
+ },
1845
+ "times_read": {
1846
+ "type": "number",
1847
+ "description": "Times read"
1848
+ },
1849
+ "type": {
1850
+ "type": "string",
1851
+ "const": "[[Sources]]"
1852
+ },
1853
+ "format": {
1854
+ "type": "string",
1855
+ "const": "[[Books]]"
1856
+ },
1857
+ "areas": {
1858
+ "type": "array",
1859
+ "items": {
1860
+ "type": "string",
1861
+ "const": "[[Knowledge]]"
1862
+ }
1863
+ },
1864
+ "color": {
1865
+ "type": "string",
1866
+ "const": "#3171B2"
1867
+ },
1868
+ "icon": {
1869
+ "type": "string",
1870
+ "const": "book"
1871
+ },
1872
+ "cover": {
1873
+ "type": "string"
1874
+ },
1875
+ "url": {
1876
+ "type": "string",
1877
+ "description": "URL of the book in Amazon or similar"
1878
+ },
1879
+ "read_url": {
1880
+ "type": "string",
1881
+ "description": "URL of the reading of the book"
1882
+ }
1883
+ },
1884
+ "required": [
1885
+ "title",
1886
+ "author",
1887
+ "published",
1888
+ "categories",
1889
+ "status",
1890
+ "topics",
1891
+ "rating",
1892
+ "online_rating",
1893
+ "last_time_read",
1894
+ "times_read",
1895
+ "type",
1896
+ "format",
1897
+ "areas",
1898
+ "color",
1899
+ "icon",
1900
+ "url",
1901
+ "read_url"
1902
+ ],
1903
+ "description": "Book"
1904
+ },
1905
+ {
1906
+ "type": "object",
1907
+ "properties": {
1908
+ "name": {
1909
+ "type": "string",
1910
+ "description": "Descriptive name of the clothing item"
1911
+ },
1912
+ "garment": {
1913
+ "type": "string",
1914
+ "enum": [
1915
+ "Undershirts",
1916
+ "Boxers",
1917
+ "Panties",
1918
+ "Bras",
1919
+ "Socks",
1920
+ "T-Shirts",
1921
+ "Polo Shirts",
1922
+ "Shirts",
1923
+ "Blouses",
1924
+ "Tops",
1925
+ "Sweaters",
1926
+ "Hoodies",
1927
+ "Cardigans",
1928
+ "Jackets",
1929
+ "Pants",
1930
+ "Jeans",
1931
+ "Chinos",
1932
+ "Skirts",
1933
+ "Shorts",
1934
+ "Blazers",
1935
+ "Coats",
1936
+ "Trench Coats",
1937
+ "Parkas",
1938
+ "Vests",
1939
+ "Leggings",
1940
+ "Technical Wear",
1941
+ "Sports Shorts",
1942
+ "Technical T-Shirts",
1943
+ "Dresses",
1944
+ "Jumpsuits",
1945
+ "Sneakers",
1946
+ "Shoes",
1947
+ "Boots",
1948
+ "Sandals",
1949
+ "Belts",
1950
+ "Caps",
1951
+ "Hats",
1952
+ "Scarves",
1953
+ "Gloves",
1954
+ "Handbags",
1955
+ "Backpacks",
1956
+ "Sunglasses",
1957
+ "Handkerchiefs",
1958
+ "Watches",
1959
+ "Jewelry",
1960
+ "Pajamas",
1961
+ "Robes",
1962
+ "Swimsuits",
1963
+ "Bikinis"
1964
+ ],
1965
+ "description": "Garment Type"
1966
+ },
1967
+ "slot": {
1968
+ "type": "string",
1969
+ "enum": [
1970
+ "Top",
1971
+ "Bottom",
1972
+ "Full Body",
1973
+ "Outer",
1974
+ "Footwear",
1975
+ "Accessories"
1976
+ ],
1977
+ "description": "Outfit part"
1978
+ },
1979
+ "variants": {
1980
+ "description": "Structural Details",
1981
+ "type": "array",
1982
+ "items": {
1983
+ "type": "string",
1984
+ "enum": [
1985
+ "Sleeveless",
1986
+ "Short Sleeves",
1987
+ "Long Sleeves",
1988
+ "Round Neck",
1989
+ "V-Neck",
1990
+ "High Neck",
1991
+ "Shirt Collar",
1992
+ "Polo Collar",
1993
+ "Boat Neck",
1994
+ "Mandarin Collar",
1995
+ "Funnel Neck",
1996
+ "Hood",
1997
+ "Overshirt",
1998
+ "Cropped",
1999
+ "Long",
2000
+ "Straight Leg",
2001
+ "Skinny",
2002
+ "Wide",
2003
+ "Cargo",
2004
+ "Flared",
2005
+ "Trench",
2006
+ "Puffer",
2007
+ "Double Breasted",
2008
+ "Buttons",
2009
+ "Zipper",
2010
+ "Velcro",
2011
+ "Laces",
2012
+ "Snaps",
2013
+ "Pockets",
2014
+ "No Pockets",
2015
+ "Reversible"
2016
+ ]
2017
+ }
2018
+ },
2019
+ "fit": {
2020
+ "description": "Fit",
2021
+ "type": "string",
2022
+ "enum": [
2023
+ "Fitted",
2024
+ "Slim",
2025
+ "Regular",
2026
+ "Relaxed",
2027
+ "Loose",
2028
+ "Oversized"
2029
+ ]
2030
+ },
2031
+ "primary_color": {
2032
+ "type": "string",
2033
+ "enum": [
2034
+ "White",
2035
+ "Black",
2036
+ "Gray",
2037
+ "Beige",
2038
+ "Brown",
2039
+ "Blue",
2040
+ "Green",
2041
+ "Red",
2042
+ "Burgundy",
2043
+ "Pink",
2044
+ "Yellow",
2045
+ "Orange",
2046
+ "Purple",
2047
+ "Camel",
2048
+ "Khaki",
2049
+ "Navy",
2050
+ "Cream",
2051
+ "Gold",
2052
+ "Silver",
2053
+ "Bronze"
2054
+ ],
2055
+ "description": "Primary color"
2056
+ },
2057
+ "secondary_color": {
2058
+ "description": "Secondary color",
2059
+ "type": "string",
2060
+ "enum": [
2061
+ "White",
2062
+ "Black",
2063
+ "Gray",
2064
+ "Beige",
2065
+ "Brown",
2066
+ "Blue",
2067
+ "Green",
2068
+ "Red",
2069
+ "Burgundy",
2070
+ "Pink",
2071
+ "Yellow",
2072
+ "Orange",
2073
+ "Purple",
2074
+ "Camel",
2075
+ "Khaki",
2076
+ "Navy",
2077
+ "Cream",
2078
+ "Gold",
2079
+ "Silver",
2080
+ "Bronze"
2081
+ ]
2082
+ },
2083
+ "pattern": {
2084
+ "description": "Pattern",
2085
+ "type": "string",
2086
+ "enum": [
2087
+ "Solid",
2088
+ "Stripes",
2089
+ "Plaid",
2090
+ "Polka Dots",
2091
+ "Animal Print",
2092
+ "Floral",
2093
+ "Geometric",
2094
+ "Camouflage",
2095
+ "Graphic Print",
2096
+ "Gradient"
2097
+ ]
2098
+ },
2099
+ "materials": {
2100
+ "description": "Materials",
2101
+ "type": "array",
2102
+ "items": {
2103
+ "type": "string",
2104
+ "enum": [
2105
+ "Cotton",
2106
+ "Linen",
2107
+ "Wool",
2108
+ "Silk",
2109
+ "Leather",
2110
+ "Cashmere",
2111
+ "Suede",
2112
+ "Polyester",
2113
+ "Nylon",
2114
+ "Elastane",
2115
+ "Viscose",
2116
+ "Synthetic Leather",
2117
+ "Gore-Tex",
2118
+ "Denim",
2119
+ "Knit",
2120
+ "Fleece",
2121
+ "Tweed",
2122
+ "Satin",
2123
+ "Velvet",
2124
+ "Jacquard",
2125
+ "Flannel",
2126
+ "Gabardine"
2127
+ ]
2128
+ }
2129
+ },
2130
+ "layer": {
2131
+ "type": "string",
2132
+ "enum": [
2133
+ "Base",
2134
+ "Mid",
2135
+ "Outer"
2136
+ ],
2137
+ "description": "Thermal Layer"
2138
+ },
2139
+ "season": {
2140
+ "description": "Seasons",
2141
+ "type": "string",
2142
+ "enum": [
2143
+ "Winter",
2144
+ "Summer",
2145
+ "Spring/Fall",
2146
+ "All Year"
2147
+ ]
2148
+ },
2149
+ "use_case": {
2150
+ "description": "Use cases",
2151
+ "type": "array",
2152
+ "items": {
2153
+ "type": "string",
2154
+ "enum": [
2155
+ "Capsule",
2156
+ "Favorite",
2157
+ "Basic",
2158
+ "Sport",
2159
+ "Work",
2160
+ "Event",
2161
+ "Travel",
2162
+ "Home",
2163
+ "Party",
2164
+ "Beach",
2165
+ "Rain",
2166
+ "Extreme Cold"
2167
+ ]
2168
+ }
2169
+ },
2170
+ "formality": {
2171
+ "description": "Formality",
2172
+ "type": "string",
2173
+ "enum": [
2174
+ "Very Casual",
2175
+ "Casual",
2176
+ "Smart Casual",
2177
+ "Formal",
2178
+ "Black Tie"
2179
+ ]
2180
+ },
2181
+ "brand": {
2182
+ "description": "The brand of the clothing",
2183
+ "type": "string"
2184
+ },
2185
+ "cares": {
2186
+ "description": "Care Instructions",
2187
+ "type": "array",
2188
+ "items": {
2189
+ "type": "string",
2190
+ "enum": [
2191
+ "Hand Wash",
2192
+ "Machine Wash",
2193
+ "Dry Clean",
2194
+ "Cold",
2195
+ "Hot",
2196
+ "Ironing",
2197
+ "Steam Ironing"
2198
+ ]
2199
+ }
2200
+ },
2201
+ "status": {
2202
+ "default": "Good",
2203
+ "description": "Status",
2204
+ "type": "string",
2205
+ "enum": [
2206
+ "New",
2207
+ "Good",
2208
+ "Worn",
2209
+ "Damaged",
2210
+ "Retire"
2211
+ ]
2212
+ },
2213
+ "size": {
2214
+ "type": "string",
2215
+ "enum": [
2216
+ "28",
2217
+ "30",
2218
+ "32",
2219
+ "34",
2220
+ "36",
2221
+ "37",
2222
+ "38",
2223
+ "39",
2224
+ "40",
2225
+ "41",
2226
+ "42",
2227
+ "43",
2228
+ "44",
2229
+ "45",
2230
+ "46",
2231
+ "48",
2232
+ "XS",
2233
+ "S",
2234
+ "M",
2235
+ "L",
2236
+ "XL",
2237
+ "XXL",
2238
+ "XXXL"
2239
+ ]
2240
+ },
2241
+ "measurements": {
2242
+ "description": "Measurements",
2243
+ "type": "array",
2244
+ "items": {
2245
+ "type": "number"
2246
+ }
2247
+ },
2248
+ "type": {
2249
+ "type": "string",
2250
+ "const": "[[Resources]]"
2251
+ },
2252
+ "subtype": {
2253
+ "type": "string",
2254
+ "const": "[[Clothes]]"
2255
+ },
2256
+ "areas": {
2257
+ "type": "array",
2258
+ "items": {
2259
+ "type": "string",
2260
+ "const": "[[Home]]"
2261
+ }
2262
+ },
2263
+ "color": {
2264
+ "type": "string",
2265
+ "const": "#CB6120"
2266
+ },
2267
+ "icon": {
2268
+ "type": "string",
2269
+ "const": "shirt"
2270
+ },
2271
+ "cover": {
2272
+ "type": "string"
2273
+ }
2274
+ },
2275
+ "required": [
2276
+ "name",
2277
+ "garment",
2278
+ "slot",
2279
+ "primary_color",
2280
+ "layer",
2281
+ "size",
2282
+ "type",
2283
+ "subtype",
2284
+ "areas",
2285
+ "color",
2286
+ "icon"
2287
+ ],
2288
+ "description": "Clothing item"
2289
+ },
2290
+ {
2291
+ "type": "object",
2292
+ "properties": {
2293
+ "title": {
2294
+ "type": "string",
2295
+ "description": "Title of the movie"
2296
+ },
2297
+ "description": {
2298
+ "type": "string",
2299
+ "description": "Description of the movie"
2300
+ },
2301
+ "author": {
2302
+ "type": "array",
2303
+ "items": {
2304
+ "type": "string"
2305
+ },
2306
+ "description": "Authors. Writers, directors, producers, etc."
2307
+ },
2308
+ "actors": {
2309
+ "type": "array",
2310
+ "items": {
2311
+ "type": "string"
2312
+ },
2313
+ "description": "Actors"
2314
+ },
2315
+ "published": {
2316
+ "type": "string",
2317
+ "description": "Year of publication"
2318
+ },
2319
+ "genres": {
2320
+ "type": "array",
2321
+ "items": {
2322
+ "type": "string"
2323
+ },
2324
+ "description": "Genres"
2325
+ },
2326
+ "status": {
2327
+ "type": "string",
2328
+ "enum": [
2329
+ "Pending",
2330
+ "In Progress",
2331
+ "Completed"
2332
+ ],
2333
+ "description": "Watching status"
2334
+ },
2335
+ "topics": {
2336
+ "type": "array",
2337
+ "items": {
2338
+ "type": "string"
2339
+ },
2340
+ "description": "Topics"
2341
+ },
2342
+ "rating": {
2343
+ "type": "number",
2344
+ "description": "Rating of the movie"
2345
+ },
2346
+ "online_rating": {
2347
+ "type": "number",
2348
+ "description": "Online rating"
2349
+ },
2350
+ "last_time_watched": {
2351
+ "type": "string",
2352
+ "description": "Last time watched"
2353
+ },
2354
+ "times_watched": {
2355
+ "type": "number",
2356
+ "description": "Times watched"
2357
+ },
2358
+ "type": {
2359
+ "type": "string",
2360
+ "const": "[[Sources]]"
2361
+ },
2362
+ "format": {
2363
+ "type": "string",
2364
+ "const": "[[Movies]]"
2365
+ },
2366
+ "areas": {
2367
+ "type": "array",
2368
+ "items": {
2369
+ "type": "string",
2370
+ "const": "[[Creativity]]"
2371
+ }
2372
+ },
2373
+ "color": {
2374
+ "type": "string",
2375
+ "const": "#BE9207"
2376
+ },
2377
+ "icon": {
2378
+ "type": "string",
2379
+ "const": "movie"
2380
+ },
2381
+ "cover": {
2382
+ "type": "string"
2383
+ },
2384
+ "url": {
2385
+ "type": "string",
2386
+ "description": "URL of the movie in IMDB or similar"
2387
+ },
2388
+ "watch_url": {
2389
+ "type": "string",
2390
+ "description": "URL of the movie in streaming"
2391
+ }
2392
+ },
2393
+ "required": [
2394
+ "title",
2395
+ "description",
2396
+ "author",
2397
+ "actors",
2398
+ "published",
2399
+ "genres",
2400
+ "status",
2401
+ "topics",
2402
+ "rating",
2403
+ "online_rating",
2404
+ "last_time_watched",
2405
+ "times_watched",
2406
+ "type",
2407
+ "format",
2408
+ "areas",
2409
+ "color",
2410
+ "icon",
2411
+ "url",
2412
+ "watch_url"
2413
+ ],
2414
+ "description": "Movie"
2415
+ },
2416
+ {
2417
+ "type": "object",
2418
+ "properties": {
2419
+ "title": {
2420
+ "type": "string",
2421
+ "description": "Title of the Wikipedia entry"
2422
+ },
2423
+ "description": {
2424
+ "description": "Description",
2425
+ "type": "string"
2426
+ },
2427
+ "excerpt": {
2428
+ "description": "Extract of the article",
2429
+ "type": "string"
2430
+ },
2431
+ "author": {
2432
+ "type": "array",
2433
+ "items": {
2434
+ "type": "string"
2435
+ },
2436
+ "description": "Authors"
2437
+ },
2438
+ "published": {
2439
+ "description": "Year of publication",
2440
+ "type": "string"
2441
+ },
2442
+ "status": {
2443
+ "type": "string",
2444
+ "enum": [
2445
+ "Pending",
2446
+ "In Progress",
2447
+ "Read",
2448
+ "Consolidated"
2449
+ ],
2450
+ "description": "Reading status"
2451
+ },
2452
+ "projects": {
2453
+ "type": "array",
2454
+ "items": {
2455
+ "type": "string"
2456
+ },
2457
+ "description": "Projects"
2458
+ },
2459
+ "topics": {
2460
+ "type": "array",
2461
+ "items": {
2462
+ "type": "string"
2463
+ },
2464
+ "description": "Topics"
2465
+ },
2466
+ "rating": {
2467
+ "type": "number",
2468
+ "description": "Rating of the article"
2469
+ },
2470
+ "type": {
2471
+ "type": "string",
2472
+ "const": "[[Sources]]"
2473
+ },
2474
+ "format": {
2475
+ "type": "string",
2476
+ "const": "[[Encyclopedia Entries]]"
2477
+ },
2478
+ "areas": {
2479
+ "type": "array",
2480
+ "items": {
2481
+ "type": "string",
2482
+ "const": "[[Knowledge]]"
2483
+ }
2484
+ },
2485
+ "color": {
2486
+ "type": "string",
2487
+ "const": "#3171B2"
2488
+ },
2489
+ "icon": {
2490
+ "default": "wikipedia",
2491
+ "description": "Lucide icon.",
2492
+ "type": "string"
2493
+ },
2494
+ "banner": {
2495
+ "type": "string"
2496
+ },
2497
+ "url": {
2498
+ "type": "string",
2499
+ "description": "URL of the article"
2500
+ },
2501
+ "platform": {
2502
+ "type": "string",
2503
+ "const": "Wikipedia"
2504
+ }
2505
+ },
2506
+ "required": [
2507
+ "title",
2508
+ "author",
2509
+ "status",
2510
+ "projects",
2511
+ "topics",
2512
+ "rating",
2513
+ "type",
2514
+ "format",
2515
+ "areas",
2516
+ "color",
2517
+ "url",
2518
+ "platform"
2519
+ ],
2520
+ "description": "Wikipedia entry"
2521
+ }
2522
+ ],
2523
+ "description": "Note: Union of all note types"
2524
+ },
2525
+ "WikipediaSchema": {
2526
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2527
+ "type": "object",
2528
+ "properties": {
2529
+ "title": {
2530
+ "type": "string",
2531
+ "description": "Title of the Wikipedia entry"
2532
+ },
2533
+ "description": {
2534
+ "description": "Description",
2535
+ "type": "string"
2536
+ },
2537
+ "excerpt": {
2538
+ "description": "Extract of the article",
2539
+ "type": "string"
2540
+ },
2541
+ "author": {
2542
+ "type": "array",
2543
+ "items": {
2544
+ "type": "string"
2545
+ },
2546
+ "description": "Authors"
2547
+ },
2548
+ "published": {
2549
+ "description": "Year of publication",
2550
+ "type": "string"
2551
+ },
2552
+ "status": {
2553
+ "type": "string",
2554
+ "enum": [
2555
+ "Pending",
2556
+ "In Progress",
2557
+ "Read",
2558
+ "Consolidated"
2559
+ ],
2560
+ "description": "Reading status"
2561
+ },
2562
+ "projects": {
2563
+ "type": "array",
2564
+ "items": {
2565
+ "type": "string"
2566
+ },
2567
+ "description": "Projects"
2568
+ },
2569
+ "topics": {
2570
+ "type": "array",
2571
+ "items": {
2572
+ "type": "string"
2573
+ },
2574
+ "description": "Topics"
2575
+ },
2576
+ "rating": {
2577
+ "type": "number",
2578
+ "description": "Rating of the article"
2579
+ },
2580
+ "type": {
2581
+ "type": "string",
2582
+ "const": "[[Sources]]"
2583
+ },
2584
+ "format": {
2585
+ "type": "string",
2586
+ "const": "[[Encyclopedia Entries]]"
2587
+ },
2588
+ "areas": {
2589
+ "type": "array",
2590
+ "items": {
2591
+ "type": "string",
2592
+ "const": "[[Knowledge]]"
2593
+ }
2594
+ },
2595
+ "color": {
2596
+ "type": "string",
2597
+ "const": "#3171B2"
2598
+ },
2599
+ "icon": {
2600
+ "default": "wikipedia",
2601
+ "description": "Lucide icon.",
2602
+ "type": "string"
2603
+ },
2604
+ "banner": {
2605
+ "type": "string"
2606
+ },
2607
+ "url": {
2608
+ "type": "string",
2609
+ "description": "URL of the article"
2610
+ },
2611
+ "platform": {
2612
+ "type": "string",
2613
+ "const": "Wikipedia"
2614
+ }
2615
+ },
2616
+ "required": [
2617
+ "title",
2618
+ "author",
2619
+ "status",
2620
+ "projects",
2621
+ "topics",
2622
+ "rating",
2623
+ "type",
2624
+ "format",
2625
+ "areas",
2626
+ "color",
2627
+ "url",
2628
+ "platform"
2629
+ ],
2630
+ "description": "Wikipedia entry"
801
2631
  }
802
2632
  }
803
2633
  }