@segha/catalog 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +272 -4
- package/en/Areas.ts +24 -0
- package/en/Article/index.ts +29 -0
- package/en/Article/types.ts +9 -0
- package/en/Book/index.ts +33 -0
- package/en/Book/types.ts +9 -0
- package/en/Clothing/index.ts +9 -9
- package/en/Movie/index.ts +34 -0
- package/en/Movie/types.ts +9 -0
- package/en/Note.ts +13 -0
- package/en/index.ts +4 -1
- package/en/types.ts +7 -0
- package/es/Areas.ts +24 -0
- package/es/Article/index.ts +29 -0
- package/es/Article/types.ts +9 -0
- package/es/Book/index.ts +33 -0
- package/es/Book/types.ts +9 -0
- package/es/Clothing/index.ts +10 -10
- package/es/Movie/index.ts +34 -0
- package/es/Movie/types.ts +9 -0
- package/es/Note.ts +13 -0
- package/es/index.ts +4 -0
- package/es/types.ts +7 -0
- package/json-schemas/ArticleSchema.json +103 -0
- package/json-schemas/BookSchema.json +124 -0
- package/json-schemas/CatalogArticleSchema.json +35 -0
- package/json-schemas/CatalogBookSchema.json +44 -0
- package/json-schemas/CatalogMovieSchema.json +49 -0
- package/json-schemas/DetailedArticleSchema.json +42 -0
- package/json-schemas/DetailedBookSchema.json +49 -0
- package/json-schemas/DetailedMovieSchema.json +48 -0
- package/json-schemas/MetaArticleSchema.json +46 -0
- package/json-schemas/MetaBookSchema.json +51 -0
- package/json-schemas/MetaMovieSchema.json +51 -0
- package/json-schemas/MovieSchema.json +128 -0
- package/json-schemas/NoteSchema.json +745 -0
- package/json-schemas/en/Area.json +21 -0
- package/json-schemas/en/Areas.json +25 -0
- package/json-schemas/en/Article/ArticleSchema.json +103 -0
- package/json-schemas/en/Article/CatalogArticleSchema.json +35 -0
- package/json-schemas/en/Article/DetailedArticleSchema.json +42 -0
- package/json-schemas/en/Article/MetaArticleSchema.json +46 -0
- package/json-schemas/en/Article/index.json +233 -0
- package/json-schemas/en/ArticleSchema.json +103 -0
- package/json-schemas/en/Book/BookSchema.json +124 -0
- package/json-schemas/en/Book/CatalogBookSchema.json +44 -0
- package/json-schemas/en/Book/DetailedBookSchema.json +49 -0
- package/json-schemas/en/Book/MetaBookSchema.json +51 -0
- package/json-schemas/en/Book/index.json +275 -0
- package/json-schemas/en/BookSchema.json +124 -0
- package/json-schemas/en/CatalogArticleSchema.json +35 -0
- package/json-schemas/en/CatalogBookSchema.json +44 -0
- package/json-schemas/en/CatalogMovieSchema.json +49 -0
- package/json-schemas/en/DetailedArticleSchema.json +42 -0
- package/json-schemas/en/DetailedBookSchema.json +49 -0
- package/json-schemas/en/DetailedMovieSchema.json +48 -0
- package/json-schemas/en/FirstLevelArea.json +21 -0
- package/json-schemas/en/MetaArticleSchema.json +46 -0
- package/json-schemas/en/MetaBookSchema.json +51 -0
- package/json-schemas/en/MetaMovieSchema.json +51 -0
- package/json-schemas/en/Movie/CatalogMovieSchema.json +49 -0
- package/json-schemas/en/Movie/DetailedMovieSchema.json +48 -0
- package/json-schemas/en/Movie/MetaMovieSchema.json +51 -0
- package/json-schemas/en/Movie/MovieSchema.json +128 -0
- package/json-schemas/en/Movie/index.json +283 -0
- package/json-schemas/en/MovieSchema.json +128 -0
- package/json-schemas/en/NoteSchema.json +745 -0
- package/json-schemas/en/index.json +1582 -0
- package/json-schemas/es/Area.json +21 -0
- package/json-schemas/es/Areas.json +25 -0
- package/json-schemas/es/Article/ArticleSchema.json +103 -0
- package/json-schemas/es/Article/CatalogArticleSchema.json +35 -0
- package/json-schemas/es/Article/DetailedArticleSchema.json +42 -0
- package/json-schemas/es/Article/MetaArticleSchema.json +46 -0
- package/json-schemas/es/Article/index.json +233 -0
- package/json-schemas/es/ArticleSchema.json +103 -0
- package/json-schemas/es/Book/BookSchema.json +124 -0
- package/json-schemas/es/Book/CatalogBookSchema.json +44 -0
- package/json-schemas/es/Book/DetailedBookSchema.json +49 -0
- package/json-schemas/es/Book/MetaBookSchema.json +51 -0
- package/json-schemas/es/Book/index.json +275 -0
- package/json-schemas/es/BookSchema.json +124 -0
- package/json-schemas/es/CatalogArticleSchema.json +35 -0
- package/json-schemas/es/CatalogBookSchema.json +44 -0
- package/json-schemas/es/CatalogMovieSchema.json +49 -0
- package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -1
- package/json-schemas/es/Clothing/index.json +1 -1
- package/json-schemas/es/DetailedArticleSchema.json +42 -0
- package/json-schemas/es/DetailedBookSchema.json +49 -0
- package/json-schemas/es/DetailedClothingSchema.json +1 -1
- package/json-schemas/es/DetailedMovieSchema.json +48 -0
- package/json-schemas/es/FirstLevelArea.json +21 -0
- package/json-schemas/es/MetaArticleSchema.json +46 -0
- package/json-schemas/es/MetaBookSchema.json +51 -0
- package/json-schemas/es/MetaMovieSchema.json +51 -0
- package/json-schemas/es/Movie/CatalogMovieSchema.json +49 -0
- package/json-schemas/es/Movie/DetailedMovieSchema.json +48 -0
- package/json-schemas/es/Movie/MetaMovieSchema.json +51 -0
- package/json-schemas/es/Movie/MovieSchema.json +128 -0
- package/json-schemas/es/Movie/index.json +283 -0
- package/json-schemas/es/MovieSchema.json +128 -0
- package/json-schemas/es/NoteSchema.json +746 -0
- package/json-schemas/es/index.json +1584 -1
- package/json-schemas/index.json +1515 -0
- package/package.json +1 -1
|
@@ -3,6 +3,1124 @@
|
|
|
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
|
+
"additionalProperties": false,
|
|
176
|
+
"description": "Article"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "object",
|
|
180
|
+
"properties": {
|
|
181
|
+
"title": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"description": "Title of the book"
|
|
184
|
+
},
|
|
185
|
+
"subtitle": {
|
|
186
|
+
"description": "Subtitle of the book",
|
|
187
|
+
"type": "string"
|
|
188
|
+
},
|
|
189
|
+
"description": {
|
|
190
|
+
"description": "Description of the book",
|
|
191
|
+
"type": "string"
|
|
192
|
+
},
|
|
193
|
+
"author": {
|
|
194
|
+
"type": "array",
|
|
195
|
+
"items": {
|
|
196
|
+
"type": "string"
|
|
197
|
+
},
|
|
198
|
+
"description": "Authors"
|
|
199
|
+
},
|
|
200
|
+
"published": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"description": "Year of publication"
|
|
203
|
+
},
|
|
204
|
+
"categories": {
|
|
205
|
+
"type": "array",
|
|
206
|
+
"items": {
|
|
207
|
+
"type": "string"
|
|
208
|
+
},
|
|
209
|
+
"description": "Categories"
|
|
210
|
+
},
|
|
211
|
+
"status": {
|
|
212
|
+
"type": "string",
|
|
213
|
+
"enum": [
|
|
214
|
+
"Pending",
|
|
215
|
+
"In Progress",
|
|
216
|
+
"Read",
|
|
217
|
+
"Consolidated"
|
|
218
|
+
],
|
|
219
|
+
"description": "Reading status"
|
|
220
|
+
},
|
|
221
|
+
"topics": {
|
|
222
|
+
"type": "array",
|
|
223
|
+
"items": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
},
|
|
226
|
+
"description": "Topics"
|
|
227
|
+
},
|
|
228
|
+
"rating": {
|
|
229
|
+
"type": "number",
|
|
230
|
+
"description": "Rating of the book"
|
|
231
|
+
},
|
|
232
|
+
"online_rating": {
|
|
233
|
+
"type": "number",
|
|
234
|
+
"description": "Online rating"
|
|
235
|
+
},
|
|
236
|
+
"last_time_read": {
|
|
237
|
+
"type": "string",
|
|
238
|
+
"description": "Last time read"
|
|
239
|
+
},
|
|
240
|
+
"times_read": {
|
|
241
|
+
"type": "number",
|
|
242
|
+
"description": "Times read"
|
|
243
|
+
},
|
|
244
|
+
"type": {
|
|
245
|
+
"type": "string",
|
|
246
|
+
"const": "[[Sources]]"
|
|
247
|
+
},
|
|
248
|
+
"format": {
|
|
249
|
+
"type": "string",
|
|
250
|
+
"const": "[[Books]]"
|
|
251
|
+
},
|
|
252
|
+
"areas": {
|
|
253
|
+
"type": "array",
|
|
254
|
+
"items": {
|
|
255
|
+
"type": "string",
|
|
256
|
+
"const": "[[Knowledge]]"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"color": {
|
|
260
|
+
"type": "string",
|
|
261
|
+
"const": "#3171B2"
|
|
262
|
+
},
|
|
263
|
+
"icon": {
|
|
264
|
+
"type": "string",
|
|
265
|
+
"const": "book"
|
|
266
|
+
},
|
|
267
|
+
"cover": {
|
|
268
|
+
"type": "string"
|
|
269
|
+
},
|
|
270
|
+
"url": {
|
|
271
|
+
"type": "string",
|
|
272
|
+
"description": "URL of the book in Amazon or similar"
|
|
273
|
+
},
|
|
274
|
+
"read_url": {
|
|
275
|
+
"type": "string",
|
|
276
|
+
"description": "URL of the reading of the book"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"required": [
|
|
280
|
+
"title",
|
|
281
|
+
"author",
|
|
282
|
+
"published",
|
|
283
|
+
"categories",
|
|
284
|
+
"status",
|
|
285
|
+
"topics",
|
|
286
|
+
"rating",
|
|
287
|
+
"online_rating",
|
|
288
|
+
"last_time_read",
|
|
289
|
+
"times_read",
|
|
290
|
+
"type",
|
|
291
|
+
"format",
|
|
292
|
+
"areas",
|
|
293
|
+
"color",
|
|
294
|
+
"icon",
|
|
295
|
+
"url",
|
|
296
|
+
"read_url"
|
|
297
|
+
],
|
|
298
|
+
"additionalProperties": false,
|
|
299
|
+
"description": "Book"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"type": "object",
|
|
303
|
+
"properties": {
|
|
304
|
+
"name": {
|
|
305
|
+
"type": "string",
|
|
306
|
+
"description": "Descriptive name of the clothing item"
|
|
307
|
+
},
|
|
308
|
+
"garment": {
|
|
309
|
+
"type": "string",
|
|
310
|
+
"enum": [
|
|
311
|
+
"Undershirts",
|
|
312
|
+
"Boxers",
|
|
313
|
+
"Panties",
|
|
314
|
+
"Bras",
|
|
315
|
+
"Socks",
|
|
316
|
+
"T-Shirts",
|
|
317
|
+
"Polo Shirts",
|
|
318
|
+
"Shirts",
|
|
319
|
+
"Blouses",
|
|
320
|
+
"Tops",
|
|
321
|
+
"Sweaters",
|
|
322
|
+
"Hoodies",
|
|
323
|
+
"Cardigans",
|
|
324
|
+
"Jackets",
|
|
325
|
+
"Pants",
|
|
326
|
+
"Jeans",
|
|
327
|
+
"Chinos",
|
|
328
|
+
"Skirts",
|
|
329
|
+
"Shorts",
|
|
330
|
+
"Blazers",
|
|
331
|
+
"Coats",
|
|
332
|
+
"Trench Coats",
|
|
333
|
+
"Parkas",
|
|
334
|
+
"Vests",
|
|
335
|
+
"Leggings",
|
|
336
|
+
"Technical Wear",
|
|
337
|
+
"Sports Shorts",
|
|
338
|
+
"Technical T-Shirts",
|
|
339
|
+
"Dresses",
|
|
340
|
+
"Jumpsuits",
|
|
341
|
+
"Sneakers",
|
|
342
|
+
"Shoes",
|
|
343
|
+
"Boots",
|
|
344
|
+
"Sandals",
|
|
345
|
+
"Belts",
|
|
346
|
+
"Caps",
|
|
347
|
+
"Hats",
|
|
348
|
+
"Scarves",
|
|
349
|
+
"Gloves",
|
|
350
|
+
"Handbags",
|
|
351
|
+
"Backpacks",
|
|
352
|
+
"Sunglasses",
|
|
353
|
+
"Handkerchiefs",
|
|
354
|
+
"Watches",
|
|
355
|
+
"Jewelry",
|
|
356
|
+
"Pajamas",
|
|
357
|
+
"Robes",
|
|
358
|
+
"Swimsuits",
|
|
359
|
+
"Bikinis"
|
|
360
|
+
],
|
|
361
|
+
"description": "Garment Type"
|
|
362
|
+
},
|
|
363
|
+
"slot": {
|
|
364
|
+
"type": "string",
|
|
365
|
+
"enum": [
|
|
366
|
+
"Top",
|
|
367
|
+
"Bottom",
|
|
368
|
+
"Full Body",
|
|
369
|
+
"Outer",
|
|
370
|
+
"Footwear",
|
|
371
|
+
"Accessories"
|
|
372
|
+
],
|
|
373
|
+
"description": "Outfit part"
|
|
374
|
+
},
|
|
375
|
+
"variants": {
|
|
376
|
+
"description": "Structural Details",
|
|
377
|
+
"type": "array",
|
|
378
|
+
"items": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"enum": [
|
|
381
|
+
"Sleeveless",
|
|
382
|
+
"Short Sleeves",
|
|
383
|
+
"Long Sleeves",
|
|
384
|
+
"Round Neck",
|
|
385
|
+
"V-Neck",
|
|
386
|
+
"High Neck",
|
|
387
|
+
"Shirt Collar",
|
|
388
|
+
"Polo Collar",
|
|
389
|
+
"Boat Neck",
|
|
390
|
+
"Mandarin Collar",
|
|
391
|
+
"Funnel Neck",
|
|
392
|
+
"Hood",
|
|
393
|
+
"Overshirt",
|
|
394
|
+
"Cropped",
|
|
395
|
+
"Long",
|
|
396
|
+
"Straight Leg",
|
|
397
|
+
"Skinny",
|
|
398
|
+
"Wide",
|
|
399
|
+
"Cargo",
|
|
400
|
+
"Flared",
|
|
401
|
+
"Trench",
|
|
402
|
+
"Puffer",
|
|
403
|
+
"Double Breasted",
|
|
404
|
+
"Buttons",
|
|
405
|
+
"Zipper",
|
|
406
|
+
"Velcro",
|
|
407
|
+
"Laces",
|
|
408
|
+
"Snaps",
|
|
409
|
+
"Pockets",
|
|
410
|
+
"No Pockets",
|
|
411
|
+
"Reversible"
|
|
412
|
+
]
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"fit": {
|
|
416
|
+
"description": "Fit",
|
|
417
|
+
"type": "string",
|
|
418
|
+
"enum": [
|
|
419
|
+
"Fitted",
|
|
420
|
+
"Slim",
|
|
421
|
+
"Regular",
|
|
422
|
+
"Relaxed",
|
|
423
|
+
"Loose",
|
|
424
|
+
"Oversized"
|
|
425
|
+
]
|
|
426
|
+
},
|
|
427
|
+
"primary_color": {
|
|
428
|
+
"type": "string",
|
|
429
|
+
"enum": [
|
|
430
|
+
"White",
|
|
431
|
+
"Black",
|
|
432
|
+
"Gray",
|
|
433
|
+
"Beige",
|
|
434
|
+
"Brown",
|
|
435
|
+
"Blue",
|
|
436
|
+
"Green",
|
|
437
|
+
"Red",
|
|
438
|
+
"Burgundy",
|
|
439
|
+
"Pink",
|
|
440
|
+
"Yellow",
|
|
441
|
+
"Orange",
|
|
442
|
+
"Purple",
|
|
443
|
+
"Camel",
|
|
444
|
+
"Khaki",
|
|
445
|
+
"Navy",
|
|
446
|
+
"Cream",
|
|
447
|
+
"Gold",
|
|
448
|
+
"Silver",
|
|
449
|
+
"Bronze"
|
|
450
|
+
],
|
|
451
|
+
"description": "Primary color"
|
|
452
|
+
},
|
|
453
|
+
"secondary_color": {
|
|
454
|
+
"description": "Secondary color",
|
|
455
|
+
"type": "string",
|
|
456
|
+
"enum": [
|
|
457
|
+
"White",
|
|
458
|
+
"Black",
|
|
459
|
+
"Gray",
|
|
460
|
+
"Beige",
|
|
461
|
+
"Brown",
|
|
462
|
+
"Blue",
|
|
463
|
+
"Green",
|
|
464
|
+
"Red",
|
|
465
|
+
"Burgundy",
|
|
466
|
+
"Pink",
|
|
467
|
+
"Yellow",
|
|
468
|
+
"Orange",
|
|
469
|
+
"Purple",
|
|
470
|
+
"Camel",
|
|
471
|
+
"Khaki",
|
|
472
|
+
"Navy",
|
|
473
|
+
"Cream",
|
|
474
|
+
"Gold",
|
|
475
|
+
"Silver",
|
|
476
|
+
"Bronze"
|
|
477
|
+
]
|
|
478
|
+
},
|
|
479
|
+
"pattern": {
|
|
480
|
+
"description": "Pattern",
|
|
481
|
+
"type": "string",
|
|
482
|
+
"enum": [
|
|
483
|
+
"Solid",
|
|
484
|
+
"Stripes",
|
|
485
|
+
"Plaid",
|
|
486
|
+
"Polka Dots",
|
|
487
|
+
"Animal Print",
|
|
488
|
+
"Floral",
|
|
489
|
+
"Geometric",
|
|
490
|
+
"Camouflage",
|
|
491
|
+
"Graphic Print",
|
|
492
|
+
"Gradient"
|
|
493
|
+
]
|
|
494
|
+
},
|
|
495
|
+
"materials": {
|
|
496
|
+
"description": "Materials",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"type": "string",
|
|
500
|
+
"enum": [
|
|
501
|
+
"Cotton",
|
|
502
|
+
"Linen",
|
|
503
|
+
"Wool",
|
|
504
|
+
"Silk",
|
|
505
|
+
"Leather",
|
|
506
|
+
"Cashmere",
|
|
507
|
+
"Suede",
|
|
508
|
+
"Polyester",
|
|
509
|
+
"Nylon",
|
|
510
|
+
"Elastane",
|
|
511
|
+
"Viscose",
|
|
512
|
+
"Synthetic Leather",
|
|
513
|
+
"Gore-Tex",
|
|
514
|
+
"Denim",
|
|
515
|
+
"Knit",
|
|
516
|
+
"Fleece",
|
|
517
|
+
"Tweed",
|
|
518
|
+
"Satin",
|
|
519
|
+
"Velvet",
|
|
520
|
+
"Jacquard",
|
|
521
|
+
"Flannel",
|
|
522
|
+
"Gabardine"
|
|
523
|
+
]
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
"layer": {
|
|
527
|
+
"type": "string",
|
|
528
|
+
"enum": [
|
|
529
|
+
"Base",
|
|
530
|
+
"Mid",
|
|
531
|
+
"Outer"
|
|
532
|
+
],
|
|
533
|
+
"description": "Thermal Layer"
|
|
534
|
+
},
|
|
535
|
+
"season": {
|
|
536
|
+
"description": "Seasons",
|
|
537
|
+
"type": "string",
|
|
538
|
+
"enum": [
|
|
539
|
+
"Winter",
|
|
540
|
+
"Summer",
|
|
541
|
+
"Spring/Fall",
|
|
542
|
+
"All Year"
|
|
543
|
+
]
|
|
544
|
+
},
|
|
545
|
+
"use_case": {
|
|
546
|
+
"description": "Use cases",
|
|
547
|
+
"type": "array",
|
|
548
|
+
"items": {
|
|
549
|
+
"type": "string",
|
|
550
|
+
"enum": [
|
|
551
|
+
"Capsule",
|
|
552
|
+
"Favorite",
|
|
553
|
+
"Basic",
|
|
554
|
+
"Sport",
|
|
555
|
+
"Work",
|
|
556
|
+
"Event",
|
|
557
|
+
"Travel",
|
|
558
|
+
"Home",
|
|
559
|
+
"Party",
|
|
560
|
+
"Beach",
|
|
561
|
+
"Rain",
|
|
562
|
+
"Extreme Cold"
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"formality": {
|
|
567
|
+
"description": "Formality",
|
|
568
|
+
"type": "string",
|
|
569
|
+
"enum": [
|
|
570
|
+
"Very Casual",
|
|
571
|
+
"Casual",
|
|
572
|
+
"Smart Casual",
|
|
573
|
+
"Formal",
|
|
574
|
+
"Black Tie"
|
|
575
|
+
]
|
|
576
|
+
},
|
|
577
|
+
"brand": {
|
|
578
|
+
"description": "The brand of the clothing",
|
|
579
|
+
"type": "string"
|
|
580
|
+
},
|
|
581
|
+
"cares": {
|
|
582
|
+
"description": "Care Instructions",
|
|
583
|
+
"type": "array",
|
|
584
|
+
"items": {
|
|
585
|
+
"type": "string",
|
|
586
|
+
"enum": [
|
|
587
|
+
"Hand Wash",
|
|
588
|
+
"Machine Wash",
|
|
589
|
+
"Dry Clean",
|
|
590
|
+
"Cold",
|
|
591
|
+
"Hot",
|
|
592
|
+
"Ironing",
|
|
593
|
+
"Steam Ironing"
|
|
594
|
+
]
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"status": {
|
|
598
|
+
"default": "Good",
|
|
599
|
+
"description": "Status",
|
|
600
|
+
"type": "string",
|
|
601
|
+
"enum": [
|
|
602
|
+
"New",
|
|
603
|
+
"Good",
|
|
604
|
+
"Worn",
|
|
605
|
+
"Damaged",
|
|
606
|
+
"Retire"
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
"size": {
|
|
610
|
+
"type": "string",
|
|
611
|
+
"enum": [
|
|
612
|
+
"28",
|
|
613
|
+
"30",
|
|
614
|
+
"32",
|
|
615
|
+
"34",
|
|
616
|
+
"36",
|
|
617
|
+
"37",
|
|
618
|
+
"38",
|
|
619
|
+
"39",
|
|
620
|
+
"40",
|
|
621
|
+
"41",
|
|
622
|
+
"42",
|
|
623
|
+
"43",
|
|
624
|
+
"44",
|
|
625
|
+
"45",
|
|
626
|
+
"46",
|
|
627
|
+
"48",
|
|
628
|
+
"XS",
|
|
629
|
+
"S",
|
|
630
|
+
"M",
|
|
631
|
+
"L",
|
|
632
|
+
"XL",
|
|
633
|
+
"XXL",
|
|
634
|
+
"XXXL"
|
|
635
|
+
]
|
|
636
|
+
},
|
|
637
|
+
"measurements": {
|
|
638
|
+
"description": "Measurements",
|
|
639
|
+
"type": "array",
|
|
640
|
+
"items": {
|
|
641
|
+
"type": "number"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"type": {
|
|
645
|
+
"type": "string",
|
|
646
|
+
"const": "[[Resources]]"
|
|
647
|
+
},
|
|
648
|
+
"subtype": {
|
|
649
|
+
"type": "string",
|
|
650
|
+
"const": "[[Clothes]]"
|
|
651
|
+
},
|
|
652
|
+
"areas": {
|
|
653
|
+
"type": "array",
|
|
654
|
+
"items": {
|
|
655
|
+
"type": "string",
|
|
656
|
+
"const": "[[Home]]"
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
"color": {
|
|
660
|
+
"type": "string",
|
|
661
|
+
"const": "#CB6120"
|
|
662
|
+
},
|
|
663
|
+
"icon": {
|
|
664
|
+
"type": "string",
|
|
665
|
+
"const": "shirt"
|
|
666
|
+
},
|
|
667
|
+
"cover": {
|
|
668
|
+
"type": "string"
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"required": [
|
|
672
|
+
"name",
|
|
673
|
+
"garment",
|
|
674
|
+
"slot",
|
|
675
|
+
"primary_color",
|
|
676
|
+
"layer",
|
|
677
|
+
"status",
|
|
678
|
+
"size",
|
|
679
|
+
"type",
|
|
680
|
+
"subtype",
|
|
681
|
+
"areas",
|
|
682
|
+
"color",
|
|
683
|
+
"icon"
|
|
684
|
+
],
|
|
685
|
+
"additionalProperties": false,
|
|
686
|
+
"description": "Clothing item"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"type": "object",
|
|
690
|
+
"properties": {
|
|
691
|
+
"title": {
|
|
692
|
+
"type": "string",
|
|
693
|
+
"description": "Title of the movie"
|
|
694
|
+
},
|
|
695
|
+
"description": {
|
|
696
|
+
"type": "string",
|
|
697
|
+
"description": "Description of the movie"
|
|
698
|
+
},
|
|
699
|
+
"author": {
|
|
700
|
+
"type": "array",
|
|
701
|
+
"items": {
|
|
702
|
+
"type": "string"
|
|
703
|
+
},
|
|
704
|
+
"description": "Authors. Writers, directors, producers, etc."
|
|
705
|
+
},
|
|
706
|
+
"actors": {
|
|
707
|
+
"type": "array",
|
|
708
|
+
"items": {
|
|
709
|
+
"type": "string"
|
|
710
|
+
},
|
|
711
|
+
"description": "Actors"
|
|
712
|
+
},
|
|
713
|
+
"published": {
|
|
714
|
+
"type": "string",
|
|
715
|
+
"description": "Year of publication"
|
|
716
|
+
},
|
|
717
|
+
"genres": {
|
|
718
|
+
"type": "array",
|
|
719
|
+
"items": {
|
|
720
|
+
"type": "string"
|
|
721
|
+
},
|
|
722
|
+
"description": "Genres"
|
|
723
|
+
},
|
|
724
|
+
"status": {
|
|
725
|
+
"type": "string",
|
|
726
|
+
"enum": [
|
|
727
|
+
"Pending",
|
|
728
|
+
"In Progress",
|
|
729
|
+
"Completed"
|
|
730
|
+
],
|
|
731
|
+
"description": "Watching status"
|
|
732
|
+
},
|
|
733
|
+
"topics": {
|
|
734
|
+
"type": "array",
|
|
735
|
+
"items": {
|
|
736
|
+
"type": "string"
|
|
737
|
+
},
|
|
738
|
+
"description": "Topics"
|
|
739
|
+
},
|
|
740
|
+
"rating": {
|
|
741
|
+
"type": "number",
|
|
742
|
+
"description": "Rating of the movie"
|
|
743
|
+
},
|
|
744
|
+
"online_rating": {
|
|
745
|
+
"type": "number",
|
|
746
|
+
"description": "Online rating"
|
|
747
|
+
},
|
|
748
|
+
"last_time_watched": {
|
|
749
|
+
"type": "string",
|
|
750
|
+
"description": "Last time watched"
|
|
751
|
+
},
|
|
752
|
+
"times_watched": {
|
|
753
|
+
"type": "number",
|
|
754
|
+
"description": "Times watched"
|
|
755
|
+
},
|
|
756
|
+
"type": {
|
|
757
|
+
"type": "string",
|
|
758
|
+
"const": "[[Sources]]"
|
|
759
|
+
},
|
|
760
|
+
"format": {
|
|
761
|
+
"type": "string",
|
|
762
|
+
"const": "[[Movies]]"
|
|
763
|
+
},
|
|
764
|
+
"areas": {
|
|
765
|
+
"type": "array",
|
|
766
|
+
"items": {
|
|
767
|
+
"type": "string",
|
|
768
|
+
"const": "[[Creativity]]"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"color": {
|
|
772
|
+
"type": "string",
|
|
773
|
+
"const": "#BE9207"
|
|
774
|
+
},
|
|
775
|
+
"icon": {
|
|
776
|
+
"type": "string",
|
|
777
|
+
"const": "movie"
|
|
778
|
+
},
|
|
779
|
+
"cover": {
|
|
780
|
+
"type": "string"
|
|
781
|
+
},
|
|
782
|
+
"url": {
|
|
783
|
+
"type": "string",
|
|
784
|
+
"description": "URL of the movie in IMDB or similar"
|
|
785
|
+
},
|
|
786
|
+
"watch_url": {
|
|
787
|
+
"type": "string",
|
|
788
|
+
"description": "URL of the movie in streaming"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"required": [
|
|
792
|
+
"title",
|
|
793
|
+
"description",
|
|
794
|
+
"author",
|
|
795
|
+
"actors",
|
|
796
|
+
"published",
|
|
797
|
+
"genres",
|
|
798
|
+
"status",
|
|
799
|
+
"topics",
|
|
800
|
+
"rating",
|
|
801
|
+
"online_rating",
|
|
802
|
+
"last_time_watched",
|
|
803
|
+
"times_watched",
|
|
804
|
+
"type",
|
|
805
|
+
"format",
|
|
806
|
+
"areas",
|
|
807
|
+
"color",
|
|
808
|
+
"icon",
|
|
809
|
+
"url",
|
|
810
|
+
"watch_url"
|
|
811
|
+
],
|
|
812
|
+
"additionalProperties": false,
|
|
813
|
+
"description": "Movie"
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"description": "Note: Union of all note types"
|
|
817
|
+
},
|
|
818
|
+
"ArticleSchema": {
|
|
819
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
820
|
+
"type": "object",
|
|
821
|
+
"properties": {
|
|
822
|
+
"title": {
|
|
823
|
+
"type": "string",
|
|
824
|
+
"description": "Title of the article"
|
|
825
|
+
},
|
|
826
|
+
"description": {
|
|
827
|
+
"description": "Description",
|
|
828
|
+
"type": "string"
|
|
829
|
+
},
|
|
830
|
+
"excerpt": {
|
|
831
|
+
"description": "Extract of the article",
|
|
832
|
+
"type": "string"
|
|
833
|
+
},
|
|
834
|
+
"author": {
|
|
835
|
+
"type": "array",
|
|
836
|
+
"items": {
|
|
837
|
+
"type": "string"
|
|
838
|
+
},
|
|
839
|
+
"description": "Authors"
|
|
840
|
+
},
|
|
841
|
+
"published": {
|
|
842
|
+
"description": "Year of publication",
|
|
843
|
+
"type": "string"
|
|
844
|
+
},
|
|
845
|
+
"status": {
|
|
846
|
+
"type": "string",
|
|
847
|
+
"enum": [
|
|
848
|
+
"Pending",
|
|
849
|
+
"In Progress",
|
|
850
|
+
"Read",
|
|
851
|
+
"Consolidated"
|
|
852
|
+
],
|
|
853
|
+
"description": "Reading status"
|
|
854
|
+
},
|
|
855
|
+
"projects": {
|
|
856
|
+
"type": "array",
|
|
857
|
+
"items": {
|
|
858
|
+
"type": "string"
|
|
859
|
+
},
|
|
860
|
+
"description": "Projects"
|
|
861
|
+
},
|
|
862
|
+
"topics": {
|
|
863
|
+
"type": "array",
|
|
864
|
+
"items": {
|
|
865
|
+
"type": "string"
|
|
866
|
+
},
|
|
867
|
+
"description": "Topics"
|
|
868
|
+
},
|
|
869
|
+
"rating": {
|
|
870
|
+
"type": "number",
|
|
871
|
+
"description": "Rating of the article"
|
|
872
|
+
},
|
|
873
|
+
"type": {
|
|
874
|
+
"type": "string",
|
|
875
|
+
"const": "[[Sources]]"
|
|
876
|
+
},
|
|
877
|
+
"format": {
|
|
878
|
+
"type": "string",
|
|
879
|
+
"const": "[[Articles]]"
|
|
880
|
+
},
|
|
881
|
+
"areas": {
|
|
882
|
+
"type": "array",
|
|
883
|
+
"items": {
|
|
884
|
+
"type": "string",
|
|
885
|
+
"const": "[[Knowledge]]"
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
"color": {
|
|
889
|
+
"type": "string",
|
|
890
|
+
"const": "#3171B2"
|
|
891
|
+
},
|
|
892
|
+
"icon": {
|
|
893
|
+
"type": "string",
|
|
894
|
+
"const": "newspaper"
|
|
895
|
+
},
|
|
896
|
+
"banner": {
|
|
897
|
+
"type": "string"
|
|
898
|
+
},
|
|
899
|
+
"url": {
|
|
900
|
+
"type": "string",
|
|
901
|
+
"description": "URL of the article"
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
"required": [
|
|
905
|
+
"title",
|
|
906
|
+
"author",
|
|
907
|
+
"status",
|
|
908
|
+
"projects",
|
|
909
|
+
"topics",
|
|
910
|
+
"rating",
|
|
911
|
+
"type",
|
|
912
|
+
"format",
|
|
913
|
+
"areas",
|
|
914
|
+
"color",
|
|
915
|
+
"icon",
|
|
916
|
+
"url"
|
|
917
|
+
],
|
|
918
|
+
"additionalProperties": false,
|
|
919
|
+
"description": "Article"
|
|
920
|
+
},
|
|
921
|
+
"BookSchema": {
|
|
922
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
923
|
+
"type": "object",
|
|
924
|
+
"properties": {
|
|
925
|
+
"title": {
|
|
926
|
+
"type": "string",
|
|
927
|
+
"description": "Title of the book"
|
|
928
|
+
},
|
|
929
|
+
"subtitle": {
|
|
930
|
+
"description": "Subtitle of the book",
|
|
931
|
+
"type": "string"
|
|
932
|
+
},
|
|
933
|
+
"description": {
|
|
934
|
+
"description": "Description of the book",
|
|
935
|
+
"type": "string"
|
|
936
|
+
},
|
|
937
|
+
"author": {
|
|
938
|
+
"type": "array",
|
|
939
|
+
"items": {
|
|
940
|
+
"type": "string"
|
|
941
|
+
},
|
|
942
|
+
"description": "Authors"
|
|
943
|
+
},
|
|
944
|
+
"published": {
|
|
945
|
+
"type": "string",
|
|
946
|
+
"description": "Year of publication"
|
|
947
|
+
},
|
|
948
|
+
"categories": {
|
|
949
|
+
"type": "array",
|
|
950
|
+
"items": {
|
|
951
|
+
"type": "string"
|
|
952
|
+
},
|
|
953
|
+
"description": "Categories"
|
|
954
|
+
},
|
|
955
|
+
"status": {
|
|
956
|
+
"type": "string",
|
|
957
|
+
"enum": [
|
|
958
|
+
"Pending",
|
|
959
|
+
"In Progress",
|
|
960
|
+
"Read",
|
|
961
|
+
"Consolidated"
|
|
962
|
+
],
|
|
963
|
+
"description": "Reading status"
|
|
964
|
+
},
|
|
965
|
+
"topics": {
|
|
966
|
+
"type": "array",
|
|
967
|
+
"items": {
|
|
968
|
+
"type": "string"
|
|
969
|
+
},
|
|
970
|
+
"description": "Topics"
|
|
971
|
+
},
|
|
972
|
+
"rating": {
|
|
973
|
+
"type": "number",
|
|
974
|
+
"description": "Rating of the book"
|
|
975
|
+
},
|
|
976
|
+
"online_rating": {
|
|
977
|
+
"type": "number",
|
|
978
|
+
"description": "Online rating"
|
|
979
|
+
},
|
|
980
|
+
"last_time_read": {
|
|
981
|
+
"type": "string",
|
|
982
|
+
"description": "Last time read"
|
|
983
|
+
},
|
|
984
|
+
"times_read": {
|
|
985
|
+
"type": "number",
|
|
986
|
+
"description": "Times read"
|
|
987
|
+
},
|
|
988
|
+
"type": {
|
|
989
|
+
"type": "string",
|
|
990
|
+
"const": "[[Sources]]"
|
|
991
|
+
},
|
|
992
|
+
"format": {
|
|
993
|
+
"type": "string",
|
|
994
|
+
"const": "[[Books]]"
|
|
995
|
+
},
|
|
996
|
+
"areas": {
|
|
997
|
+
"type": "array",
|
|
998
|
+
"items": {
|
|
999
|
+
"type": "string",
|
|
1000
|
+
"const": "[[Knowledge]]"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"color": {
|
|
1004
|
+
"type": "string",
|
|
1005
|
+
"const": "#3171B2"
|
|
1006
|
+
},
|
|
1007
|
+
"icon": {
|
|
1008
|
+
"type": "string",
|
|
1009
|
+
"const": "book"
|
|
1010
|
+
},
|
|
1011
|
+
"cover": {
|
|
1012
|
+
"type": "string"
|
|
1013
|
+
},
|
|
1014
|
+
"url": {
|
|
1015
|
+
"type": "string",
|
|
1016
|
+
"description": "URL of the book in Amazon or similar"
|
|
1017
|
+
},
|
|
1018
|
+
"read_url": {
|
|
1019
|
+
"type": "string",
|
|
1020
|
+
"description": "URL of the reading of the book"
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
"required": [
|
|
1024
|
+
"title",
|
|
1025
|
+
"author",
|
|
1026
|
+
"published",
|
|
1027
|
+
"categories",
|
|
1028
|
+
"status",
|
|
1029
|
+
"topics",
|
|
1030
|
+
"rating",
|
|
1031
|
+
"online_rating",
|
|
1032
|
+
"last_time_read",
|
|
1033
|
+
"times_read",
|
|
1034
|
+
"type",
|
|
1035
|
+
"format",
|
|
1036
|
+
"areas",
|
|
1037
|
+
"color",
|
|
1038
|
+
"icon",
|
|
1039
|
+
"url",
|
|
1040
|
+
"read_url"
|
|
1041
|
+
],
|
|
1042
|
+
"additionalProperties": false,
|
|
1043
|
+
"description": "Book"
|
|
1044
|
+
},
|
|
1045
|
+
"CatalogArticleSchema": {
|
|
1046
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1047
|
+
"type": "object",
|
|
1048
|
+
"properties": {
|
|
1049
|
+
"title": {
|
|
1050
|
+
"type": "string",
|
|
1051
|
+
"description": "Title of the article"
|
|
1052
|
+
},
|
|
1053
|
+
"description": {
|
|
1054
|
+
"description": "Description",
|
|
1055
|
+
"type": "string"
|
|
1056
|
+
},
|
|
1057
|
+
"excerpt": {
|
|
1058
|
+
"description": "Extract of the article",
|
|
1059
|
+
"type": "string"
|
|
1060
|
+
},
|
|
1061
|
+
"author": {
|
|
1062
|
+
"type": "array",
|
|
1063
|
+
"items": {
|
|
1064
|
+
"type": "string"
|
|
1065
|
+
},
|
|
1066
|
+
"description": "Authors"
|
|
1067
|
+
},
|
|
1068
|
+
"published": {
|
|
1069
|
+
"description": "Year of publication",
|
|
1070
|
+
"type": "string"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"required": [
|
|
1074
|
+
"title",
|
|
1075
|
+
"author"
|
|
1076
|
+
],
|
|
1077
|
+
"additionalProperties": false,
|
|
1078
|
+
"description": "Article: Data obtained from catalogation"
|
|
1079
|
+
},
|
|
1080
|
+
"CatalogBookSchema": {
|
|
1081
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1082
|
+
"type": "object",
|
|
1083
|
+
"properties": {
|
|
1084
|
+
"title": {
|
|
1085
|
+
"type": "string",
|
|
1086
|
+
"description": "Title of the book"
|
|
1087
|
+
},
|
|
1088
|
+
"subtitle": {
|
|
1089
|
+
"description": "Subtitle of the book",
|
|
1090
|
+
"type": "string"
|
|
1091
|
+
},
|
|
1092
|
+
"description": {
|
|
1093
|
+
"description": "Description of the book",
|
|
1094
|
+
"type": "string"
|
|
1095
|
+
},
|
|
1096
|
+
"author": {
|
|
1097
|
+
"type": "array",
|
|
1098
|
+
"items": {
|
|
1099
|
+
"type": "string"
|
|
1100
|
+
},
|
|
1101
|
+
"description": "Authors"
|
|
1102
|
+
},
|
|
1103
|
+
"published": {
|
|
1104
|
+
"type": "string",
|
|
1105
|
+
"description": "Year of publication"
|
|
1106
|
+
},
|
|
1107
|
+
"categories": {
|
|
1108
|
+
"type": "array",
|
|
1109
|
+
"items": {
|
|
1110
|
+
"type": "string"
|
|
1111
|
+
},
|
|
1112
|
+
"description": "Categories"
|
|
1113
|
+
}
|
|
1114
|
+
},
|
|
1115
|
+
"required": [
|
|
1116
|
+
"title",
|
|
1117
|
+
"author",
|
|
1118
|
+
"published",
|
|
1119
|
+
"categories"
|
|
1120
|
+
],
|
|
1121
|
+
"additionalProperties": false,
|
|
1122
|
+
"description": "Book: Data obtained from catalogation"
|
|
1123
|
+
},
|
|
6
1124
|
"CatalogClothingSchema": {
|
|
7
1125
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
8
1126
|
"type": "object",
|
|
@@ -295,6 +1413,55 @@
|
|
|
295
1413
|
"additionalProperties": false,
|
|
296
1414
|
"description": "Clothing item: Catalogable data"
|
|
297
1415
|
},
|
|
1416
|
+
"CatalogMovieSchema": {
|
|
1417
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1418
|
+
"type": "object",
|
|
1419
|
+
"properties": {
|
|
1420
|
+
"title": {
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"description": "Title of the movie"
|
|
1423
|
+
},
|
|
1424
|
+
"description": {
|
|
1425
|
+
"type": "string",
|
|
1426
|
+
"description": "Description of the movie"
|
|
1427
|
+
},
|
|
1428
|
+
"author": {
|
|
1429
|
+
"type": "array",
|
|
1430
|
+
"items": {
|
|
1431
|
+
"type": "string"
|
|
1432
|
+
},
|
|
1433
|
+
"description": "Authors. Writers, directors, producers, etc."
|
|
1434
|
+
},
|
|
1435
|
+
"actors": {
|
|
1436
|
+
"type": "array",
|
|
1437
|
+
"items": {
|
|
1438
|
+
"type": "string"
|
|
1439
|
+
},
|
|
1440
|
+
"description": "Actors"
|
|
1441
|
+
},
|
|
1442
|
+
"published": {
|
|
1443
|
+
"type": "string",
|
|
1444
|
+
"description": "Year of publication"
|
|
1445
|
+
},
|
|
1446
|
+
"genres": {
|
|
1447
|
+
"type": "array",
|
|
1448
|
+
"items": {
|
|
1449
|
+
"type": "string"
|
|
1450
|
+
},
|
|
1451
|
+
"description": "Genres"
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"required": [
|
|
1455
|
+
"title",
|
|
1456
|
+
"description",
|
|
1457
|
+
"author",
|
|
1458
|
+
"actors",
|
|
1459
|
+
"published",
|
|
1460
|
+
"genres"
|
|
1461
|
+
],
|
|
1462
|
+
"additionalProperties": false,
|
|
1463
|
+
"description": "Movie: Data obtained from catalogation"
|
|
1464
|
+
},
|
|
298
1465
|
"ClothingSchema": {
|
|
299
1466
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
300
1467
|
"type": "object",
|
|
@@ -683,6 +1850,97 @@
|
|
|
683
1850
|
"additionalProperties": false,
|
|
684
1851
|
"description": "Clothing item"
|
|
685
1852
|
},
|
|
1853
|
+
"DetailedArticleSchema": {
|
|
1854
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1855
|
+
"type": "object",
|
|
1856
|
+
"properties": {
|
|
1857
|
+
"status": {
|
|
1858
|
+
"type": "string",
|
|
1859
|
+
"enum": [
|
|
1860
|
+
"Pending",
|
|
1861
|
+
"In Progress",
|
|
1862
|
+
"Read",
|
|
1863
|
+
"Consolidated"
|
|
1864
|
+
],
|
|
1865
|
+
"description": "Reading status"
|
|
1866
|
+
},
|
|
1867
|
+
"projects": {
|
|
1868
|
+
"type": "array",
|
|
1869
|
+
"items": {
|
|
1870
|
+
"type": "string"
|
|
1871
|
+
},
|
|
1872
|
+
"description": "Projects"
|
|
1873
|
+
},
|
|
1874
|
+
"topics": {
|
|
1875
|
+
"type": "array",
|
|
1876
|
+
"items": {
|
|
1877
|
+
"type": "string"
|
|
1878
|
+
},
|
|
1879
|
+
"description": "Topics"
|
|
1880
|
+
},
|
|
1881
|
+
"rating": {
|
|
1882
|
+
"type": "number",
|
|
1883
|
+
"description": "Rating of the article"
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
"required": [
|
|
1887
|
+
"status",
|
|
1888
|
+
"projects",
|
|
1889
|
+
"topics",
|
|
1890
|
+
"rating"
|
|
1891
|
+
],
|
|
1892
|
+
"additionalProperties": false,
|
|
1893
|
+
"description": "Article: Additional data"
|
|
1894
|
+
},
|
|
1895
|
+
"DetailedBookSchema": {
|
|
1896
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1897
|
+
"type": "object",
|
|
1898
|
+
"properties": {
|
|
1899
|
+
"status": {
|
|
1900
|
+
"type": "string",
|
|
1901
|
+
"enum": [
|
|
1902
|
+
"Pending",
|
|
1903
|
+
"In Progress",
|
|
1904
|
+
"Read",
|
|
1905
|
+
"Consolidated"
|
|
1906
|
+
],
|
|
1907
|
+
"description": "Reading status"
|
|
1908
|
+
},
|
|
1909
|
+
"topics": {
|
|
1910
|
+
"type": "array",
|
|
1911
|
+
"items": {
|
|
1912
|
+
"type": "string"
|
|
1913
|
+
},
|
|
1914
|
+
"description": "Topics"
|
|
1915
|
+
},
|
|
1916
|
+
"rating": {
|
|
1917
|
+
"type": "number",
|
|
1918
|
+
"description": "Rating of the book"
|
|
1919
|
+
},
|
|
1920
|
+
"online_rating": {
|
|
1921
|
+
"type": "number",
|
|
1922
|
+
"description": "Online rating"
|
|
1923
|
+
},
|
|
1924
|
+
"last_time_read": {
|
|
1925
|
+
"type": "string",
|
|
1926
|
+
"description": "Last time read"
|
|
1927
|
+
},
|
|
1928
|
+
"times_read": {
|
|
1929
|
+
"type": "number",
|
|
1930
|
+
"description": "Times read"
|
|
1931
|
+
}
|
|
1932
|
+
},
|
|
1933
|
+
"required": [
|
|
1934
|
+
"status",
|
|
1935
|
+
"topics",
|
|
1936
|
+
"rating",
|
|
1937
|
+
"online_rating",
|
|
1938
|
+
"last_time_read",
|
|
1939
|
+
"times_read"
|
|
1940
|
+
],
|
|
1941
|
+
"additionalProperties": false,
|
|
1942
|
+
"description": "Book: Additional data"
|
|
1943
|
+
},
|
|
686
1944
|
"DetailedClothingSchema": {
|
|
687
1945
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
688
1946
|
"type": "object",
|
|
@@ -758,6 +2016,151 @@
|
|
|
758
2016
|
"additionalProperties": false,
|
|
759
2017
|
"description": "Clothing item: Additional hard-to-obtain data"
|
|
760
2018
|
},
|
|
2019
|
+
"DetailedMovieSchema": {
|
|
2020
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2021
|
+
"type": "object",
|
|
2022
|
+
"properties": {
|
|
2023
|
+
"status": {
|
|
2024
|
+
"type": "string",
|
|
2025
|
+
"enum": [
|
|
2026
|
+
"Pending",
|
|
2027
|
+
"In Progress",
|
|
2028
|
+
"Completed"
|
|
2029
|
+
],
|
|
2030
|
+
"description": "Watching status"
|
|
2031
|
+
},
|
|
2032
|
+
"topics": {
|
|
2033
|
+
"type": "array",
|
|
2034
|
+
"items": {
|
|
2035
|
+
"type": "string"
|
|
2036
|
+
},
|
|
2037
|
+
"description": "Topics"
|
|
2038
|
+
},
|
|
2039
|
+
"rating": {
|
|
2040
|
+
"type": "number",
|
|
2041
|
+
"description": "Rating of the movie"
|
|
2042
|
+
},
|
|
2043
|
+
"online_rating": {
|
|
2044
|
+
"type": "number",
|
|
2045
|
+
"description": "Online rating"
|
|
2046
|
+
},
|
|
2047
|
+
"last_time_watched": {
|
|
2048
|
+
"type": "string",
|
|
2049
|
+
"description": "Last time watched"
|
|
2050
|
+
},
|
|
2051
|
+
"times_watched": {
|
|
2052
|
+
"type": "number",
|
|
2053
|
+
"description": "Times watched"
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"required": [
|
|
2057
|
+
"status",
|
|
2058
|
+
"topics",
|
|
2059
|
+
"rating",
|
|
2060
|
+
"online_rating",
|
|
2061
|
+
"last_time_watched",
|
|
2062
|
+
"times_watched"
|
|
2063
|
+
],
|
|
2064
|
+
"additionalProperties": false,
|
|
2065
|
+
"description": "Movie: Additional data"
|
|
2066
|
+
},
|
|
2067
|
+
"MetaArticleSchema": {
|
|
2068
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2069
|
+
"type": "object",
|
|
2070
|
+
"properties": {
|
|
2071
|
+
"type": {
|
|
2072
|
+
"type": "string",
|
|
2073
|
+
"const": "[[Sources]]"
|
|
2074
|
+
},
|
|
2075
|
+
"format": {
|
|
2076
|
+
"type": "string",
|
|
2077
|
+
"const": "[[Articles]]"
|
|
2078
|
+
},
|
|
2079
|
+
"areas": {
|
|
2080
|
+
"type": "array",
|
|
2081
|
+
"items": {
|
|
2082
|
+
"type": "string",
|
|
2083
|
+
"const": "[[Knowledge]]"
|
|
2084
|
+
}
|
|
2085
|
+
},
|
|
2086
|
+
"color": {
|
|
2087
|
+
"type": "string",
|
|
2088
|
+
"const": "#3171B2"
|
|
2089
|
+
},
|
|
2090
|
+
"icon": {
|
|
2091
|
+
"type": "string",
|
|
2092
|
+
"const": "newspaper"
|
|
2093
|
+
},
|
|
2094
|
+
"banner": {
|
|
2095
|
+
"type": "string"
|
|
2096
|
+
},
|
|
2097
|
+
"url": {
|
|
2098
|
+
"type": "string",
|
|
2099
|
+
"description": "URL of the article"
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
2102
|
+
"required": [
|
|
2103
|
+
"type",
|
|
2104
|
+
"format",
|
|
2105
|
+
"areas",
|
|
2106
|
+
"color",
|
|
2107
|
+
"icon",
|
|
2108
|
+
"url"
|
|
2109
|
+
],
|
|
2110
|
+
"additionalProperties": false,
|
|
2111
|
+
"description": "Article: Metadata of Note"
|
|
2112
|
+
},
|
|
2113
|
+
"MetaBookSchema": {
|
|
2114
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2115
|
+
"type": "object",
|
|
2116
|
+
"properties": {
|
|
2117
|
+
"type": {
|
|
2118
|
+
"type": "string",
|
|
2119
|
+
"const": "[[Sources]]"
|
|
2120
|
+
},
|
|
2121
|
+
"format": {
|
|
2122
|
+
"type": "string",
|
|
2123
|
+
"const": "[[Books]]"
|
|
2124
|
+
},
|
|
2125
|
+
"areas": {
|
|
2126
|
+
"type": "array",
|
|
2127
|
+
"items": {
|
|
2128
|
+
"type": "string",
|
|
2129
|
+
"const": "[[Knowledge]]"
|
|
2130
|
+
}
|
|
2131
|
+
},
|
|
2132
|
+
"color": {
|
|
2133
|
+
"type": "string",
|
|
2134
|
+
"const": "#3171B2"
|
|
2135
|
+
},
|
|
2136
|
+
"icon": {
|
|
2137
|
+
"type": "string",
|
|
2138
|
+
"const": "book"
|
|
2139
|
+
},
|
|
2140
|
+
"cover": {
|
|
2141
|
+
"type": "string"
|
|
2142
|
+
},
|
|
2143
|
+
"url": {
|
|
2144
|
+
"type": "string",
|
|
2145
|
+
"description": "URL of the book in Amazon or similar"
|
|
2146
|
+
},
|
|
2147
|
+
"read_url": {
|
|
2148
|
+
"type": "string",
|
|
2149
|
+
"description": "URL of the reading of the book"
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
2152
|
+
"required": [
|
|
2153
|
+
"type",
|
|
2154
|
+
"format",
|
|
2155
|
+
"areas",
|
|
2156
|
+
"color",
|
|
2157
|
+
"icon",
|
|
2158
|
+
"url",
|
|
2159
|
+
"read_url"
|
|
2160
|
+
],
|
|
2161
|
+
"additionalProperties": false,
|
|
2162
|
+
"description": "Book: Metadata of Note"
|
|
2163
|
+
},
|
|
761
2164
|
"MetaClothingSchema": {
|
|
762
2165
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
763
2166
|
"type": "object",
|
|
@@ -798,6 +2201,185 @@
|
|
|
798
2201
|
],
|
|
799
2202
|
"additionalProperties": false,
|
|
800
2203
|
"description": "Clothing item: Note metadata"
|
|
2204
|
+
},
|
|
2205
|
+
"MetaMovieSchema": {
|
|
2206
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2207
|
+
"type": "object",
|
|
2208
|
+
"properties": {
|
|
2209
|
+
"type": {
|
|
2210
|
+
"type": "string",
|
|
2211
|
+
"const": "[[Sources]]"
|
|
2212
|
+
},
|
|
2213
|
+
"format": {
|
|
2214
|
+
"type": "string",
|
|
2215
|
+
"const": "[[Movies]]"
|
|
2216
|
+
},
|
|
2217
|
+
"areas": {
|
|
2218
|
+
"type": "array",
|
|
2219
|
+
"items": {
|
|
2220
|
+
"type": "string",
|
|
2221
|
+
"const": "[[Creativity]]"
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
"color": {
|
|
2225
|
+
"type": "string",
|
|
2226
|
+
"const": "#BE9207"
|
|
2227
|
+
},
|
|
2228
|
+
"icon": {
|
|
2229
|
+
"type": "string",
|
|
2230
|
+
"const": "movie"
|
|
2231
|
+
},
|
|
2232
|
+
"cover": {
|
|
2233
|
+
"type": "string"
|
|
2234
|
+
},
|
|
2235
|
+
"url": {
|
|
2236
|
+
"type": "string",
|
|
2237
|
+
"description": "URL of the movie in IMDB or similar"
|
|
2238
|
+
},
|
|
2239
|
+
"watch_url": {
|
|
2240
|
+
"type": "string",
|
|
2241
|
+
"description": "URL of the movie in streaming"
|
|
2242
|
+
}
|
|
2243
|
+
},
|
|
2244
|
+
"required": [
|
|
2245
|
+
"type",
|
|
2246
|
+
"format",
|
|
2247
|
+
"areas",
|
|
2248
|
+
"color",
|
|
2249
|
+
"icon",
|
|
2250
|
+
"url",
|
|
2251
|
+
"watch_url"
|
|
2252
|
+
],
|
|
2253
|
+
"additionalProperties": false,
|
|
2254
|
+
"description": "Movie: Metadata of Note"
|
|
2255
|
+
},
|
|
2256
|
+
"MovieSchema": {
|
|
2257
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2258
|
+
"type": "object",
|
|
2259
|
+
"properties": {
|
|
2260
|
+
"title": {
|
|
2261
|
+
"type": "string",
|
|
2262
|
+
"description": "Title of the movie"
|
|
2263
|
+
},
|
|
2264
|
+
"description": {
|
|
2265
|
+
"type": "string",
|
|
2266
|
+
"description": "Description of the movie"
|
|
2267
|
+
},
|
|
2268
|
+
"author": {
|
|
2269
|
+
"type": "array",
|
|
2270
|
+
"items": {
|
|
2271
|
+
"type": "string"
|
|
2272
|
+
},
|
|
2273
|
+
"description": "Authors. Writers, directors, producers, etc."
|
|
2274
|
+
},
|
|
2275
|
+
"actors": {
|
|
2276
|
+
"type": "array",
|
|
2277
|
+
"items": {
|
|
2278
|
+
"type": "string"
|
|
2279
|
+
},
|
|
2280
|
+
"description": "Actors"
|
|
2281
|
+
},
|
|
2282
|
+
"published": {
|
|
2283
|
+
"type": "string",
|
|
2284
|
+
"description": "Year of publication"
|
|
2285
|
+
},
|
|
2286
|
+
"genres": {
|
|
2287
|
+
"type": "array",
|
|
2288
|
+
"items": {
|
|
2289
|
+
"type": "string"
|
|
2290
|
+
},
|
|
2291
|
+
"description": "Genres"
|
|
2292
|
+
},
|
|
2293
|
+
"status": {
|
|
2294
|
+
"type": "string",
|
|
2295
|
+
"enum": [
|
|
2296
|
+
"Pending",
|
|
2297
|
+
"In Progress",
|
|
2298
|
+
"Completed"
|
|
2299
|
+
],
|
|
2300
|
+
"description": "Watching status"
|
|
2301
|
+
},
|
|
2302
|
+
"topics": {
|
|
2303
|
+
"type": "array",
|
|
2304
|
+
"items": {
|
|
2305
|
+
"type": "string"
|
|
2306
|
+
},
|
|
2307
|
+
"description": "Topics"
|
|
2308
|
+
},
|
|
2309
|
+
"rating": {
|
|
2310
|
+
"type": "number",
|
|
2311
|
+
"description": "Rating of the movie"
|
|
2312
|
+
},
|
|
2313
|
+
"online_rating": {
|
|
2314
|
+
"type": "number",
|
|
2315
|
+
"description": "Online rating"
|
|
2316
|
+
},
|
|
2317
|
+
"last_time_watched": {
|
|
2318
|
+
"type": "string",
|
|
2319
|
+
"description": "Last time watched"
|
|
2320
|
+
},
|
|
2321
|
+
"times_watched": {
|
|
2322
|
+
"type": "number",
|
|
2323
|
+
"description": "Times watched"
|
|
2324
|
+
},
|
|
2325
|
+
"type": {
|
|
2326
|
+
"type": "string",
|
|
2327
|
+
"const": "[[Sources]]"
|
|
2328
|
+
},
|
|
2329
|
+
"format": {
|
|
2330
|
+
"type": "string",
|
|
2331
|
+
"const": "[[Movies]]"
|
|
2332
|
+
},
|
|
2333
|
+
"areas": {
|
|
2334
|
+
"type": "array",
|
|
2335
|
+
"items": {
|
|
2336
|
+
"type": "string",
|
|
2337
|
+
"const": "[[Creativity]]"
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
"color": {
|
|
2341
|
+
"type": "string",
|
|
2342
|
+
"const": "#BE9207"
|
|
2343
|
+
},
|
|
2344
|
+
"icon": {
|
|
2345
|
+
"type": "string",
|
|
2346
|
+
"const": "movie"
|
|
2347
|
+
},
|
|
2348
|
+
"cover": {
|
|
2349
|
+
"type": "string"
|
|
2350
|
+
},
|
|
2351
|
+
"url": {
|
|
2352
|
+
"type": "string",
|
|
2353
|
+
"description": "URL of the movie in IMDB or similar"
|
|
2354
|
+
},
|
|
2355
|
+
"watch_url": {
|
|
2356
|
+
"type": "string",
|
|
2357
|
+
"description": "URL of the movie in streaming"
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
"required": [
|
|
2361
|
+
"title",
|
|
2362
|
+
"description",
|
|
2363
|
+
"author",
|
|
2364
|
+
"actors",
|
|
2365
|
+
"published",
|
|
2366
|
+
"genres",
|
|
2367
|
+
"status",
|
|
2368
|
+
"topics",
|
|
2369
|
+
"rating",
|
|
2370
|
+
"online_rating",
|
|
2371
|
+
"last_time_watched",
|
|
2372
|
+
"times_watched",
|
|
2373
|
+
"type",
|
|
2374
|
+
"format",
|
|
2375
|
+
"areas",
|
|
2376
|
+
"color",
|
|
2377
|
+
"icon",
|
|
2378
|
+
"url",
|
|
2379
|
+
"watch_url"
|
|
2380
|
+
],
|
|
2381
|
+
"additionalProperties": false,
|
|
2382
|
+
"description": "Movie"
|
|
801
2383
|
}
|
|
802
2384
|
}
|
|
803
2385
|
}
|