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