@segha/catalog 4.1.1 → 5.0.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 (43) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/es/Core/Format.ts +4 -0
  3. package/es/Core/Source.ts +1 -0
  4. package/es/DataTypes/ExternalId.ts +7 -0
  5. package/es/DataTypes/StreamUrls.ts +12 -0
  6. package/es/DataTypes/index.ts +2 -0
  7. package/es/DataTypes/types.ts +4 -0
  8. package/es/Movie/index.ts +25 -20
  9. package/es/Note.ts +2 -0
  10. package/es/TVSeries/index.ts +36 -0
  11. package/es/TVSeries/types.ts +6 -0
  12. package/es/index.ts +1 -0
  13. package/es/types.ts +2 -0
  14. package/json-schemas/es/Book/BookSchema.json +9 -9
  15. package/json-schemas/es/Book/index.json +9 -9
  16. package/json-schemas/es/BookSchema.json +9 -9
  17. package/json-schemas/es/Core/Format.json +1 -0
  18. package/json-schemas/es/Core/SourceSchema.json +4 -0
  19. package/json-schemas/es/Core/TVSeries.json +6 -0
  20. package/json-schemas/es/Core/index.json +11 -0
  21. package/json-schemas/es/DataTypes/StreamUrlsSchema.json +47 -0
  22. package/json-schemas/es/DataTypes/index.json +52 -0
  23. package/json-schemas/es/Movie/MovieSchema.json +286 -230
  24. package/json-schemas/es/Movie/index.json +286 -235
  25. package/json-schemas/es/MovieSchema.json +286 -230
  26. package/json-schemas/es/NoteSchema.json +638 -239
  27. package/json-schemas/es/Painting/PaintingSchema.json +4 -0
  28. package/json-schemas/es/Painting/index.json +4 -0
  29. package/json-schemas/es/PaintingSchema.json +4 -0
  30. package/json-schemas/es/TVSeries/TVSeriesSchema.json +336 -0
  31. package/json-schemas/es/TVSeries/index.json +343 -0
  32. package/json-schemas/es/TVSeriesSchema.json +336 -0
  33. package/json-schemas/es/Video/VideoSchema.json +4 -0
  34. package/json-schemas/es/Video/VimeoSchema.json +4 -0
  35. package/json-schemas/es/Video/YoutubeSchema.json +4 -0
  36. package/json-schemas/es/Video/index.json +12 -0
  37. package/json-schemas/es/VideoSchema.json +4 -0
  38. package/json-schemas/es/VimeoSchema.json +4 -0
  39. package/json-schemas/es/YoutubeSchema.json +4 -0
  40. package/json-schemas/es/index.json +1466 -659
  41. package/package.json +2 -2
  42. package/es/Movie/MovieExternalId.ts +0 -7
  43. /package/json-schemas/es/{Movie/MovieExternalId.json → DataTypes/TVExternalId.json} +0 -0
@@ -468,15 +468,6 @@
468
468
  "type": "string",
469
469
  "description": "Título del libro"
470
470
  },
471
- "read_url": {
472
- "description": "URL de la lectura del libro",
473
- "type": "string",
474
- "format": "uri"
475
- },
476
- "subtitle": {
477
- "description": "Subtítulo del libro",
478
- "type": "string"
479
- },
480
471
  "description": {
481
472
  "description": "Descripción",
482
473
  "anyOf": [
@@ -488,6 +479,15 @@
488
479
  }
489
480
  ]
490
481
  },
482
+ "read_url": {
483
+ "description": "URL de la lectura del libro",
484
+ "type": "string",
485
+ "format": "uri"
486
+ },
487
+ "subtitle": {
488
+ "description": "Subtítulo del libro",
489
+ "type": "string"
490
+ },
491
491
  "categories": {
492
492
  "description": "Géneros",
493
493
  "type": "array",
@@ -1299,6 +1299,341 @@
1299
1299
  ],
1300
1300
  "description": "Entrada de Enciclopedia"
1301
1301
  },
1302
+ {
1303
+ "allOf": [
1304
+ {
1305
+ "type": "object",
1306
+ "properties": {
1307
+ "type": {
1308
+ "default": "[[Fuentes]]",
1309
+ "type": "string",
1310
+ "const": "[[Fuentes]]",
1311
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
1312
+ },
1313
+ "areas": {
1314
+ "default": [
1315
+ "[[Creatividad]]"
1316
+ ],
1317
+ "type": "array",
1318
+ "items": {
1319
+ "type": "string",
1320
+ "enum": [
1321
+ "[[Alimentación]]",
1322
+ "[[Salud]]",
1323
+ "[[Conocimiento]]",
1324
+ "[[Pensamiento Estructurado]]",
1325
+ "[[Hogar]]",
1326
+ "[[Productividad]]",
1327
+ "[[Exploración]]",
1328
+ "[[Vínculos]]",
1329
+ "[[Ejercicio]]",
1330
+ "[[Energía Vital]]",
1331
+ "[[Trabajo]]",
1332
+ "[[Finanzas]]",
1333
+ "[[Salud Mental]]",
1334
+ "[[Creatividad]]"
1335
+ ],
1336
+ "description": "Área"
1337
+ },
1338
+ "description": "Áreas"
1339
+ },
1340
+ "color": {
1341
+ "default": "#BE9207",
1342
+ "description": "Color de la nota.",
1343
+ "type": "string",
1344
+ "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1345
+ },
1346
+ "icon": {
1347
+ "default": "movie",
1348
+ "description": "Icono de Lucide.",
1349
+ "type": "string",
1350
+ "pattern": "^[a-z-]+$"
1351
+ },
1352
+ "banner": {
1353
+ "description": "Imagen",
1354
+ "anyOf": [
1355
+ {
1356
+ "type": "string",
1357
+ "format": "uri"
1358
+ },
1359
+ {
1360
+ "type": "string",
1361
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1362
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1363
+ }
1364
+ ]
1365
+ },
1366
+ "cover": {
1367
+ "description": "Portada de la película.",
1368
+ "anyOf": [
1369
+ {
1370
+ "anyOf": [
1371
+ {
1372
+ "type": "string",
1373
+ "format": "uri"
1374
+ },
1375
+ {
1376
+ "type": "string",
1377
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1378
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1379
+ }
1380
+ ],
1381
+ "description": "Imagen: URL o Wikilink de una imagen."
1382
+ },
1383
+ {
1384
+ "type": "null"
1385
+ }
1386
+ ]
1387
+ },
1388
+ "projects": {
1389
+ "description": "Proyectos asociados.",
1390
+ "type": "array",
1391
+ "items": {
1392
+ "type": "string",
1393
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1394
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1395
+ }
1396
+ },
1397
+ "topics": {
1398
+ "description": "Temas: Wikilink o texto libre",
1399
+ "type": "array",
1400
+ "items": {
1401
+ "anyOf": [
1402
+ {
1403
+ "type": "string",
1404
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1405
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1406
+ },
1407
+ {
1408
+ "type": "string"
1409
+ }
1410
+ ]
1411
+ }
1412
+ },
1413
+ "status": {
1414
+ "default": "Pendiente",
1415
+ "anyOf": [
1416
+ {
1417
+ "type": "string",
1418
+ "const": "Pendiente"
1419
+ },
1420
+ {
1421
+ "type": "string",
1422
+ "const": "En Proceso"
1423
+ },
1424
+ {
1425
+ "type": "string",
1426
+ "const": "Visto"
1427
+ }
1428
+ ],
1429
+ "description": "Estado de visualización de la película"
1430
+ },
1431
+ "rating": {
1432
+ "description": "Valoración personal de la fuente.",
1433
+ "anyOf": [
1434
+ {
1435
+ "type": "number",
1436
+ "const": 7,
1437
+ "description": "Perfecto, hay que probarlo, te cambia la vida, haz un esfuerzo por buscarlo."
1438
+ },
1439
+ {
1440
+ "type": "number",
1441
+ "const": 6,
1442
+ "description": "Excelente, vale la pena repetirlo"
1443
+ },
1444
+ {
1445
+ "type": "number",
1446
+ "const": 5,
1447
+ "description": "Bueno, no hagas un esfuerzo especial, pero es agradable."
1448
+ },
1449
+ {
1450
+ "type": "number",
1451
+ "const": 4,
1452
+ "description": "Aceptable, sirve en caso de apuro."
1453
+ },
1454
+ {
1455
+ "type": "number",
1456
+ "const": 3,
1457
+ "description": "Malo, no lo hagas si puedes evitarlo."
1458
+ },
1459
+ {
1460
+ "type": "number",
1461
+ "const": 2,
1462
+ "description": "Atroz, evítalo activamente, repulsivo"
1463
+ },
1464
+ {
1465
+ "type": "number",
1466
+ "const": 1,
1467
+ "description": "Malvado, te cambia la vida para mal."
1468
+ }
1469
+ ]
1470
+ },
1471
+ "aliases": {
1472
+ "description": "Alias de la nota.",
1473
+ "type": "array",
1474
+ "items": {
1475
+ "type": "string"
1476
+ }
1477
+ },
1478
+ "format": {
1479
+ "default": "[[Películas]]",
1480
+ "type": "string",
1481
+ "const": "[[Películas]]",
1482
+ "description": "Películas"
1483
+ },
1484
+ "url": {
1485
+ "type": "string",
1486
+ "format": "uri",
1487
+ "description": "URL de la película en IMDB o similar"
1488
+ },
1489
+ "author": {
1490
+ "description": "Autores de la fuente.",
1491
+ "type": "array",
1492
+ "items": {
1493
+ "type": "string"
1494
+ }
1495
+ },
1496
+ "published": {
1497
+ "description": "Año de publicación",
1498
+ "anyOf": [
1499
+ {
1500
+ "type": "string",
1501
+ "pattern": "^[0-9]{4}$",
1502
+ "description": "Año: YYYY"
1503
+ },
1504
+ {
1505
+ "type": "string",
1506
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
1507
+ "description": "Mes: YYYY-MM"
1508
+ },
1509
+ {
1510
+ "type": "string",
1511
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
1512
+ "description": "Fecha: YYYY-MM-DD"
1513
+ }
1514
+ ]
1515
+ },
1516
+ "title": {
1517
+ "type": "string",
1518
+ "description": "Título de la película"
1519
+ },
1520
+ "description": {
1521
+ "description": "Descripción de la fuente.",
1522
+ "type": "string"
1523
+ },
1524
+ "watch_url": {
1525
+ "description": "URL de la película en streaming",
1526
+ "deprecated": true,
1527
+ "replacement": "hbo_max_url|netflix_url|apple_tv_url|amazon_prime_url|disney_plus_url|hulu_url|pluto_tv_url|youtube_url",
1528
+ "type": "string",
1529
+ "format": "uri"
1530
+ },
1531
+ "external_ids": {
1532
+ "description": "IDs externos de la película",
1533
+ "type": "array",
1534
+ "items": {
1535
+ "type": "string",
1536
+ "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
1537
+ }
1538
+ },
1539
+ "actors": {
1540
+ "description": "Actores",
1541
+ "type": "array",
1542
+ "items": {
1543
+ "type": "string"
1544
+ }
1545
+ },
1546
+ "genres": {
1547
+ "description": "Géneros",
1548
+ "type": "array",
1549
+ "items": {
1550
+ "type": "string"
1551
+ }
1552
+ },
1553
+ "online_rating": {
1554
+ "description": "Puntuación en línea",
1555
+ "type": "number"
1556
+ },
1557
+ "last_time_watched": {
1558
+ "description": "Última vez vista",
1559
+ "anyOf": [
1560
+ {
1561
+ "type": "string",
1562
+ "pattern": "^[0-9]{4}$",
1563
+ "description": "Año: YYYY"
1564
+ },
1565
+ {
1566
+ "type": "string",
1567
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
1568
+ "description": "Mes: YYYY-MM"
1569
+ },
1570
+ {
1571
+ "type": "string",
1572
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
1573
+ "description": "Fecha: YYYY-MM-DD"
1574
+ }
1575
+ ]
1576
+ },
1577
+ "times_watched": {
1578
+ "description": "Veces vista",
1579
+ "default": 0,
1580
+ "type": "number"
1581
+ }
1582
+ },
1583
+ "required": [
1584
+ "url",
1585
+ "title"
1586
+ ]
1587
+ },
1588
+ {
1589
+ "type": "object",
1590
+ "properties": {
1591
+ "hbo_max_url": {
1592
+ "description": "URL de HBO Max",
1593
+ "type": "string",
1594
+ "format": "uri"
1595
+ },
1596
+ "netflix_url": {
1597
+ "description": "URL de Netflix",
1598
+ "type": "string",
1599
+ "format": "uri"
1600
+ },
1601
+ "apple_tv_url": {
1602
+ "description": "URL de Apple TV",
1603
+ "type": "string",
1604
+ "format": "uri"
1605
+ },
1606
+ "amazon_prime_url": {
1607
+ "description": "URL de Amazon Prime",
1608
+ "type": "string",
1609
+ "format": "uri"
1610
+ },
1611
+ "disney_plus_url": {
1612
+ "description": "URL de Disney Plus",
1613
+ "type": "string",
1614
+ "format": "uri"
1615
+ },
1616
+ "hulu_url": {
1617
+ "description": "URL de Hulu",
1618
+ "type": "string",
1619
+ "format": "uri"
1620
+ },
1621
+ "pluto_tv_url": {
1622
+ "description": "URL de Pluto TV",
1623
+ "type": "string",
1624
+ "format": "uri"
1625
+ },
1626
+ "youtube_url": {
1627
+ "description": "URL de YouTube",
1628
+ "type": "string",
1629
+ "format": "uri"
1630
+ }
1631
+ },
1632
+ "description": "URLs de streaming"
1633
+ }
1634
+ ],
1635
+ "description": "Película"
1636
+ },
1302
1637
  {
1303
1638
  "type": "object",
1304
1639
  "properties": {
@@ -1342,7 +1677,7 @@
1342
1677
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1343
1678
  },
1344
1679
  "icon": {
1345
- "default": "movie",
1680
+ "default": "frame",
1346
1681
  "description": "Icono de Lucide.",
1347
1682
  "type": "string",
1348
1683
  "pattern": "^[a-z-]+$"
@@ -1362,7 +1697,7 @@
1362
1697
  ]
1363
1698
  },
1364
1699
  "cover": {
1365
- "description": "Portada de la película.",
1700
+ "description": "Portada de la pintura.",
1366
1701
  "anyOf": [
1367
1702
  {
1368
1703
  "anyOf": [
@@ -1424,7 +1759,7 @@
1424
1759
  "const": "Visto"
1425
1760
  }
1426
1761
  ],
1427
- "description": "Estado de visualización de la película"
1762
+ "description": "Estado de procesamiento de la pintura"
1428
1763
  },
1429
1764
  "rating": {
1430
1765
  "description": "Valoración personal de la fuente.",
@@ -1474,15 +1809,15 @@
1474
1809
  }
1475
1810
  },
1476
1811
  "format": {
1477
- "default": "[[Películas]]",
1812
+ "default": "[[Pinturas]]",
1478
1813
  "type": "string",
1479
- "const": "[[Películas]]",
1480
- "description": "Películas"
1814
+ "const": "[[Pinturas]]",
1815
+ "description": "Pinturas"
1481
1816
  },
1482
1817
  "url": {
1818
+ "description": "URL de la fuente.",
1483
1819
  "type": "string",
1484
- "format": "uri",
1485
- "description": "URL de la película en IMDB o similar"
1820
+ "format": "uri"
1486
1821
  },
1487
1822
  "author": {
1488
1823
  "description": "Autores de la fuente.",
@@ -1515,81 +1850,371 @@
1515
1850
  "type": "string",
1516
1851
  "description": "Título de la película"
1517
1852
  },
1518
- "watch_url": {
1519
- "description": "URL de la película en streaming",
1520
- "type": "string",
1521
- "format": "uri"
1522
- },
1523
- "external_ids": {
1524
- "description": "IDs externos de la película",
1525
- "type": "array",
1526
- "items": {
1527
- "type": "string",
1528
- "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
1529
- }
1530
- },
1531
- "actors": {
1532
- "description": "Actores",
1533
- "type": "array",
1534
- "items": {
1535
- "type": "string"
1536
- }
1537
- },
1538
- "genres": {
1539
- "description": "Géneros",
1540
- "type": "array",
1541
- "items": {
1542
- "type": "string"
1543
- }
1544
- },
1545
- "online_rating": {
1546
- "description": "Puntuación en línea",
1547
- "type": "number"
1853
+ "description": {
1854
+ "description": "Descripción de la fuente.",
1855
+ "type": "string"
1548
1856
  },
1549
- "last_time_watched": {
1550
- "description": "Última vez vista",
1551
- "anyOf": [
1552
- {
1553
- "type": "string",
1554
- "pattern": "^[0-9]{4}$",
1555
- "description": "Año: YYYY"
1556
- },
1557
- {
1558
- "type": "string",
1559
- "pattern": "^[0-9]{4}-[0-9]{2}$",
1560
- "description": "Mes: YYYY-MM"
1561
- },
1562
- {
1563
- "type": "string",
1564
- "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
1565
- "description": "Fecha: YYYY-MM-DD"
1566
- }
1567
- ]
1857
+ "collection": {
1858
+ "description": "Colección",
1859
+ "type": "string"
1568
1860
  },
1569
- "times_watched": {
1570
- "description": "Veces vista",
1571
- "default": 0,
1572
- "type": "number"
1861
+ "position": {
1862
+ "description": "Posición en la colección",
1863
+ "type": "string"
1573
1864
  }
1574
1865
  },
1575
1866
  "required": [
1576
- "url",
1577
1867
  "title"
1578
1868
  ],
1579
- "description": "Película"
1869
+ "description": "Pintura"
1580
1870
  },
1581
1871
  {
1582
- "type": "object",
1583
- "properties": {
1584
- "type": {
1585
- "default": "[[Fuentes]]",
1586
- "type": "string",
1587
- "const": "[[Fuentes]]",
1588
- "description": "Bibliografías, recursos validados sobre los que acumular información."
1589
- },
1590
- "areas": {
1591
- "default": [
1592
- "[[Creatividad]]"
1872
+ "allOf": [
1873
+ {
1874
+ "type": "object",
1875
+ "properties": {
1876
+ "type": {
1877
+ "default": "[[Fuentes]]",
1878
+ "type": "string",
1879
+ "const": "[[Fuentes]]",
1880
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
1881
+ },
1882
+ "areas": {
1883
+ "default": [
1884
+ "[[Creatividad]]"
1885
+ ],
1886
+ "type": "array",
1887
+ "items": {
1888
+ "type": "string",
1889
+ "enum": [
1890
+ "[[Alimentación]]",
1891
+ "[[Salud]]",
1892
+ "[[Conocimiento]]",
1893
+ "[[Pensamiento Estructurado]]",
1894
+ "[[Hogar]]",
1895
+ "[[Productividad]]",
1896
+ "[[Exploración]]",
1897
+ "[[Vínculos]]",
1898
+ "[[Ejercicio]]",
1899
+ "[[Energía Vital]]",
1900
+ "[[Trabajo]]",
1901
+ "[[Finanzas]]",
1902
+ "[[Salud Mental]]",
1903
+ "[[Creatividad]]"
1904
+ ],
1905
+ "description": "Área"
1906
+ },
1907
+ "description": "Áreas"
1908
+ },
1909
+ "color": {
1910
+ "default": "#BE9207",
1911
+ "description": "Color de la nota.",
1912
+ "type": "string",
1913
+ "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1914
+ },
1915
+ "icon": {
1916
+ "default": "tv",
1917
+ "description": "Icono de Lucide.",
1918
+ "type": "string",
1919
+ "pattern": "^[a-z-]+$"
1920
+ },
1921
+ "banner": {
1922
+ "description": "Imagen",
1923
+ "anyOf": [
1924
+ {
1925
+ "type": "string",
1926
+ "format": "uri"
1927
+ },
1928
+ {
1929
+ "type": "string",
1930
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1931
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1932
+ }
1933
+ ]
1934
+ },
1935
+ "cover": {
1936
+ "description": "Portada de la serie de TV.",
1937
+ "anyOf": [
1938
+ {
1939
+ "anyOf": [
1940
+ {
1941
+ "type": "string",
1942
+ "format": "uri"
1943
+ },
1944
+ {
1945
+ "type": "string",
1946
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1947
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1948
+ }
1949
+ ],
1950
+ "description": "Imagen: URL o Wikilink de una imagen."
1951
+ },
1952
+ {
1953
+ "type": "null"
1954
+ }
1955
+ ]
1956
+ },
1957
+ "projects": {
1958
+ "description": "Proyectos asociados.",
1959
+ "type": "array",
1960
+ "items": {
1961
+ "type": "string",
1962
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1963
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1964
+ }
1965
+ },
1966
+ "topics": {
1967
+ "description": "Temas: Wikilink o texto libre",
1968
+ "type": "array",
1969
+ "items": {
1970
+ "anyOf": [
1971
+ {
1972
+ "type": "string",
1973
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1974
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1975
+ },
1976
+ {
1977
+ "type": "string"
1978
+ }
1979
+ ]
1980
+ }
1981
+ },
1982
+ "status": {
1983
+ "default": "Pendiente",
1984
+ "anyOf": [
1985
+ {
1986
+ "type": "string",
1987
+ "const": "Pendiente"
1988
+ },
1989
+ {
1990
+ "type": "string",
1991
+ "const": "En Proceso"
1992
+ },
1993
+ {
1994
+ "type": "string",
1995
+ "const": "Visto"
1996
+ }
1997
+ ],
1998
+ "description": "Estado de visualización de la serie de TV"
1999
+ },
2000
+ "rating": {
2001
+ "description": "Valoración personal de la fuente.",
2002
+ "anyOf": [
2003
+ {
2004
+ "type": "number",
2005
+ "const": 7,
2006
+ "description": "Perfecto, hay que probarlo, te cambia la vida, haz un esfuerzo por buscarlo."
2007
+ },
2008
+ {
2009
+ "type": "number",
2010
+ "const": 6,
2011
+ "description": "Excelente, vale la pena repetirlo"
2012
+ },
2013
+ {
2014
+ "type": "number",
2015
+ "const": 5,
2016
+ "description": "Bueno, no hagas un esfuerzo especial, pero es agradable."
2017
+ },
2018
+ {
2019
+ "type": "number",
2020
+ "const": 4,
2021
+ "description": "Aceptable, sirve en caso de apuro."
2022
+ },
2023
+ {
2024
+ "type": "number",
2025
+ "const": 3,
2026
+ "description": "Malo, no lo hagas si puedes evitarlo."
2027
+ },
2028
+ {
2029
+ "type": "number",
2030
+ "const": 2,
2031
+ "description": "Atroz, evítalo activamente, repulsivo"
2032
+ },
2033
+ {
2034
+ "type": "number",
2035
+ "const": 1,
2036
+ "description": "Malvado, te cambia la vida para mal."
2037
+ }
2038
+ ]
2039
+ },
2040
+ "aliases": {
2041
+ "description": "Alias de la nota.",
2042
+ "type": "array",
2043
+ "items": {
2044
+ "type": "string"
2045
+ }
2046
+ },
2047
+ "format": {
2048
+ "default": "[[Series]]",
2049
+ "type": "string",
2050
+ "const": "[[Series]]",
2051
+ "description": "Series"
2052
+ },
2053
+ "url": {
2054
+ "type": "string",
2055
+ "format": "uri",
2056
+ "description": "URL de la serie de TV en IMDB o similar"
2057
+ },
2058
+ "author": {
2059
+ "description": "Autores de la fuente.",
2060
+ "type": "array",
2061
+ "items": {
2062
+ "type": "string"
2063
+ }
2064
+ },
2065
+ "published": {
2066
+ "description": "Año de publicación",
2067
+ "anyOf": [
2068
+ {
2069
+ "type": "string",
2070
+ "pattern": "^[0-9]{4}$",
2071
+ "description": "Año: YYYY"
2072
+ },
2073
+ {
2074
+ "type": "string",
2075
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
2076
+ "description": "Mes: YYYY-MM"
2077
+ },
2078
+ {
2079
+ "type": "string",
2080
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
2081
+ "description": "Fecha: YYYY-MM-DD"
2082
+ }
2083
+ ]
2084
+ },
2085
+ "title": {
2086
+ "type": "string",
2087
+ "description": "Título de la serie de TV"
2088
+ },
2089
+ "description": {
2090
+ "description": "Descripción de la fuente.",
2091
+ "type": "string"
2092
+ },
2093
+ "watch_url": {
2094
+ "description": "URL de la serie de TV en streaming",
2095
+ "deprecated": true,
2096
+ "replacement": "hbo_max_url|netflix_url|apple_tv_url|amazon_prime_url|disney_plus_url|hulu_url|pluto_tv_url|youtube_url",
2097
+ "type": "string",
2098
+ "format": "uri"
2099
+ },
2100
+ "external_ids": {
2101
+ "description": "IDs externos de la serie de TV",
2102
+ "type": "array",
2103
+ "items": {
2104
+ "type": "string",
2105
+ "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
2106
+ }
2107
+ },
2108
+ "actors": {
2109
+ "description": "Actores",
2110
+ "type": "array",
2111
+ "items": {
2112
+ "type": "string"
2113
+ }
2114
+ },
2115
+ "genres": {
2116
+ "description": "Géneros",
2117
+ "type": "array",
2118
+ "items": {
2119
+ "type": "string"
2120
+ }
2121
+ },
2122
+ "online_rating": {
2123
+ "description": "Puntuación en línea",
2124
+ "type": "number"
2125
+ },
2126
+ "last_time_watched": {
2127
+ "description": "Última vez vista",
2128
+ "anyOf": [
2129
+ {
2130
+ "type": "string",
2131
+ "pattern": "^[0-9]{4}$",
2132
+ "description": "Año: YYYY"
2133
+ },
2134
+ {
2135
+ "type": "string",
2136
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
2137
+ "description": "Mes: YYYY-MM"
2138
+ },
2139
+ {
2140
+ "type": "string",
2141
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
2142
+ "description": "Fecha: YYYY-MM-DD"
2143
+ }
2144
+ ]
2145
+ },
2146
+ "times_watched": {
2147
+ "description": "Veces vista",
2148
+ "default": 0,
2149
+ "type": "number"
2150
+ }
2151
+ },
2152
+ "required": [
2153
+ "url",
2154
+ "title"
2155
+ ]
2156
+ },
2157
+ {
2158
+ "type": "object",
2159
+ "properties": {
2160
+ "hbo_max_url": {
2161
+ "description": "URL de HBO Max",
2162
+ "type": "string",
2163
+ "format": "uri"
2164
+ },
2165
+ "netflix_url": {
2166
+ "description": "URL de Netflix",
2167
+ "type": "string",
2168
+ "format": "uri"
2169
+ },
2170
+ "apple_tv_url": {
2171
+ "description": "URL de Apple TV",
2172
+ "type": "string",
2173
+ "format": "uri"
2174
+ },
2175
+ "amazon_prime_url": {
2176
+ "description": "URL de Amazon Prime",
2177
+ "type": "string",
2178
+ "format": "uri"
2179
+ },
2180
+ "disney_plus_url": {
2181
+ "description": "URL de Disney Plus",
2182
+ "type": "string",
2183
+ "format": "uri"
2184
+ },
2185
+ "hulu_url": {
2186
+ "description": "URL de Hulu",
2187
+ "type": "string",
2188
+ "format": "uri"
2189
+ },
2190
+ "pluto_tv_url": {
2191
+ "description": "URL de Pluto TV",
2192
+ "type": "string",
2193
+ "format": "uri"
2194
+ },
2195
+ "youtube_url": {
2196
+ "description": "URL de YouTube",
2197
+ "type": "string",
2198
+ "format": "uri"
2199
+ }
2200
+ },
2201
+ "description": "URLs de streaming"
2202
+ }
2203
+ ],
2204
+ "description": "Serie de TV"
2205
+ },
2206
+ {
2207
+ "type": "object",
2208
+ "properties": {
2209
+ "type": {
2210
+ "default": "[[Fuentes]]",
2211
+ "type": "string",
2212
+ "const": "[[Fuentes]]",
2213
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
2214
+ },
2215
+ "areas": {
2216
+ "default": [
2217
+ "[[Conocimiento]]"
1593
2218
  ],
1594
2219
  "type": "array",
1595
2220
  "items": {
@@ -1615,13 +2240,13 @@
1615
2240
  "description": "Áreas"
1616
2241
  },
1617
2242
  "color": {
1618
- "default": "#BE9207",
2243
+ "default": "#3171B2",
1619
2244
  "description": "Color de la nota.",
1620
2245
  "type": "string",
1621
2246
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1622
2247
  },
1623
2248
  "icon": {
1624
- "default": "frame",
2249
+ "default": "video",
1625
2250
  "description": "Icono de Lucide.",
1626
2251
  "type": "string",
1627
2252
  "pattern": "^[a-z-]+$"
@@ -1641,24 +2266,16 @@
1641
2266
  ]
1642
2267
  },
1643
2268
  "cover": {
1644
- "description": "Portada de la pintura.",
2269
+ "description": "Cubierta",
1645
2270
  "anyOf": [
1646
2271
  {
1647
- "anyOf": [
1648
- {
1649
- "type": "string",
1650
- "format": "uri"
1651
- },
1652
- {
1653
- "type": "string",
1654
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1655
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1656
- }
1657
- ],
1658
- "description": "Imagen: URL o Wikilink de una imagen."
2272
+ "type": "string",
2273
+ "format": "uri"
1659
2274
  },
1660
2275
  {
1661
- "type": "null"
2276
+ "type": "string",
2277
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
2278
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1662
2279
  }
1663
2280
  ]
1664
2281
  },
@@ -1703,7 +2320,7 @@
1703
2320
  "const": "Visto"
1704
2321
  }
1705
2322
  ],
1706
- "description": "Estado de procesamiento de la pintura"
2323
+ "description": "Estado de visualización de la película"
1707
2324
  },
1708
2325
  "rating": {
1709
2326
  "description": "Valoración personal de la fuente.",
@@ -1753,10 +2370,10 @@
1753
2370
  }
1754
2371
  },
1755
2372
  "format": {
1756
- "default": "[[Pinturas]]",
2373
+ "default": "[[Vídeos]]",
1757
2374
  "type": "string",
1758
- "const": "[[Pinturas]]",
1759
- "description": "Pinturas"
2375
+ "const": "[[Vídeos]]",
2376
+ "description": "Vídeos"
1760
2377
  },
1761
2378
  "url": {
1762
2379
  "description": "URL de la fuente.",
@@ -1771,7 +2388,7 @@
1771
2388
  }
1772
2389
  },
1773
2390
  "published": {
1774
- "description": "Año de publicación",
2391
+ "description": "Fecha de publicación de la fuente.",
1775
2392
  "anyOf": [
1776
2393
  {
1777
2394
  "type": "string",
@@ -1794,260 +2411,42 @@
1794
2411
  "type": "string",
1795
2412
  "description": "Título de la película"
1796
2413
  },
1797
- "collection": {
1798
- "description": "Colección",
2414
+ "description": {
2415
+ "description": "Descripción de la fuente.",
1799
2416
  "type": "string"
1800
2417
  },
1801
- "position": {
1802
- "description": "Posición en la colección",
1803
- "type": "string"
2418
+ "platform": {
2419
+ "anyOf": [
2420
+ {
2421
+ "type": "string",
2422
+ "const": "YouTube"
2423
+ },
2424
+ {
2425
+ "type": "string",
2426
+ "const": "Vimeo"
2427
+ }
2428
+ ],
2429
+ "description": "Plataforma de visualización del vídeo"
1804
2430
  }
1805
2431
  },
1806
2432
  "required": [
1807
- "title"
2433
+ "title",
2434
+ "platform"
1808
2435
  ],
1809
- "description": "Pintura"
1810
- },
1811
- {
1812
- "type": "object",
1813
- "properties": {
1814
- "type": {
1815
- "default": "[[Fuentes]]",
1816
- "type": "string",
1817
- "const": "[[Fuentes]]",
1818
- "description": "Bibliografías, recursos validados sobre los que acumular información."
1819
- },
1820
- "areas": {
1821
- "default": [
1822
- "[[Conocimiento]]"
1823
- ],
1824
- "type": "array",
1825
- "items": {
1826
- "type": "string",
1827
- "enum": [
1828
- "[[Alimentación]]",
1829
- "[[Salud]]",
1830
- "[[Conocimiento]]",
1831
- "[[Pensamiento Estructurado]]",
1832
- "[[Hogar]]",
1833
- "[[Productividad]]",
1834
- "[[Exploración]]",
1835
- "[[Vínculos]]",
1836
- "[[Ejercicio]]",
1837
- "[[Energía Vital]]",
1838
- "[[Trabajo]]",
1839
- "[[Finanzas]]",
1840
- "[[Salud Mental]]",
1841
- "[[Creatividad]]"
1842
- ],
1843
- "description": "Área"
1844
- },
1845
- "description": "Áreas"
1846
- },
1847
- "color": {
1848
- "default": "#3171B2",
1849
- "description": "Color de la nota.",
1850
- "type": "string",
1851
- "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1852
- },
1853
- "icon": {
1854
- "default": "video",
1855
- "description": "Icono de Lucide.",
1856
- "type": "string",
1857
- "pattern": "^[a-z-]+$"
1858
- },
1859
- "banner": {
1860
- "description": "Imagen",
1861
- "anyOf": [
1862
- {
1863
- "type": "string",
1864
- "format": "uri"
1865
- },
1866
- {
1867
- "type": "string",
1868
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1869
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1870
- }
1871
- ]
1872
- },
1873
- "cover": {
1874
- "description": "Cubierta",
1875
- "anyOf": [
1876
- {
1877
- "type": "string",
1878
- "format": "uri"
1879
- },
1880
- {
1881
- "type": "string",
1882
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1883
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1884
- }
1885
- ]
1886
- },
1887
- "projects": {
1888
- "description": "Proyectos asociados.",
1889
- "type": "array",
1890
- "items": {
1891
- "type": "string",
1892
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1893
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1894
- }
1895
- },
1896
- "topics": {
1897
- "description": "Temas: Wikilink o texto libre",
1898
- "type": "array",
1899
- "items": {
1900
- "anyOf": [
1901
- {
1902
- "type": "string",
1903
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
1904
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
1905
- },
1906
- {
1907
- "type": "string"
1908
- }
1909
- ]
1910
- }
1911
- },
1912
- "status": {
1913
- "default": "Pendiente",
1914
- "anyOf": [
1915
- {
1916
- "type": "string",
1917
- "const": "Pendiente"
1918
- },
1919
- {
1920
- "type": "string",
1921
- "const": "En Proceso"
1922
- },
1923
- {
1924
- "type": "string",
1925
- "const": "Visto"
1926
- }
1927
- ],
1928
- "description": "Estado de visualización de la película"
1929
- },
1930
- "rating": {
1931
- "description": "Valoración personal de la fuente.",
1932
- "anyOf": [
1933
- {
1934
- "type": "number",
1935
- "const": 7,
1936
- "description": "Perfecto, hay que probarlo, te cambia la vida, haz un esfuerzo por buscarlo."
1937
- },
1938
- {
1939
- "type": "number",
1940
- "const": 6,
1941
- "description": "Excelente, vale la pena repetirlo"
1942
- },
1943
- {
1944
- "type": "number",
1945
- "const": 5,
1946
- "description": "Bueno, no hagas un esfuerzo especial, pero es agradable."
1947
- },
1948
- {
1949
- "type": "number",
1950
- "const": 4,
1951
- "description": "Aceptable, sirve en caso de apuro."
1952
- },
1953
- {
1954
- "type": "number",
1955
- "const": 3,
1956
- "description": "Malo, no lo hagas si puedes evitarlo."
1957
- },
1958
- {
1959
- "type": "number",
1960
- "const": 2,
1961
- "description": "Atroz, evítalo activamente, repulsivo"
1962
- },
1963
- {
1964
- "type": "number",
1965
- "const": 1,
1966
- "description": "Malvado, te cambia la vida para mal."
1967
- }
1968
- ]
1969
- },
1970
- "aliases": {
1971
- "description": "Alias de la nota.",
1972
- "type": "array",
1973
- "items": {
1974
- "type": "string"
1975
- }
1976
- },
1977
- "format": {
1978
- "default": "[[Vídeos]]",
1979
- "type": "string",
1980
- "const": "[[Vídeos]]",
1981
- "description": "Vídeos"
1982
- },
1983
- "url": {
1984
- "description": "URL de la fuente.",
1985
- "type": "string",
1986
- "format": "uri"
1987
- },
1988
- "author": {
1989
- "description": "Autores de la fuente.",
1990
- "type": "array",
1991
- "items": {
1992
- "type": "string"
1993
- }
1994
- },
1995
- "published": {
1996
- "description": "Fecha de publicación de la fuente.",
1997
- "anyOf": [
1998
- {
1999
- "type": "string",
2000
- "pattern": "^[0-9]{4}$",
2001
- "description": "Año: YYYY"
2002
- },
2003
- {
2004
- "type": "string",
2005
- "pattern": "^[0-9]{4}-[0-9]{2}$",
2006
- "description": "Mes: YYYY-MM"
2007
- },
2008
- {
2009
- "type": "string",
2010
- "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
2011
- "description": "Fecha: YYYY-MM-DD"
2012
- }
2013
- ]
2014
- },
2015
- "title": {
2016
- "type": "string",
2017
- "description": "Título de la película"
2018
- },
2019
- "platform": {
2020
- "anyOf": [
2021
- {
2022
- "type": "string",
2023
- "const": "YouTube"
2024
- },
2025
- {
2026
- "type": "string",
2027
- "const": "Vimeo"
2028
- }
2029
- ],
2030
- "description": "Plataforma de visualización del vídeo"
2031
- }
2032
- },
2033
- "required": [
2034
- "title",
2035
- "platform"
2036
- ],
2037
- "description": "Vídeo"
2038
- }
2039
- ],
2040
- "description": "Nota: Unión de todos los tipos de notas"
2041
- },
2042
- "ArticleSchema": {
2043
- "$schema": "https://json-schema.org/draft/2020-12/schema",
2044
- "type": "object",
2045
- "properties": {
2046
- "type": {
2047
- "default": "[[Fuentes]]",
2048
- "type": "string",
2049
- "const": "[[Fuentes]]",
2050
- "description": "Bibliografías, recursos validados sobre los que acumular información."
2436
+ "description": "Vídeo"
2437
+ }
2438
+ ],
2439
+ "description": "Nota: Unión de todos los tipos de notas"
2440
+ },
2441
+ "ArticleSchema": {
2442
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
2443
+ "type": "object",
2444
+ "properties": {
2445
+ "type": {
2446
+ "default": "[[Fuentes]]",
2447
+ "type": "string",
2448
+ "const": "[[Fuentes]]",
2449
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
2051
2450
  },
2052
2451
  "areas": {
2053
2452
  "default": [
@@ -2503,15 +2902,6 @@
2503
2902
  "type": "string",
2504
2903
  "description": "Título del libro"
2505
2904
  },
2506
- "read_url": {
2507
- "description": "URL de la lectura del libro",
2508
- "type": "string",
2509
- "format": "uri"
2510
- },
2511
- "subtitle": {
2512
- "description": "Subtítulo del libro",
2513
- "type": "string"
2514
- },
2515
2905
  "description": {
2516
2906
  "description": "Descripción",
2517
2907
  "anyOf": [
@@ -2523,6 +2913,15 @@
2523
2913
  }
2524
2914
  ]
2525
2915
  },
2916
+ "read_url": {
2917
+ "description": "URL de la lectura del libro",
2918
+ "type": "string",
2919
+ "format": "uri"
2920
+ },
2921
+ "subtitle": {
2922
+ "description": "Subtítulo del libro",
2923
+ "type": "string"
2924
+ },
2526
2925
  "categories": {
2527
2926
  "description": "Géneros",
2528
2927
  "type": "array",
@@ -3338,32 +3737,368 @@
3338
3737
  },
3339
3738
  "MovieSchema": {
3340
3739
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3341
- "type": "object",
3342
- "properties": {
3343
- "type": {
3344
- "default": "[[Fuentes]]",
3345
- "type": "string",
3346
- "const": "[[Fuentes]]",
3347
- "description": "Bibliografías, recursos validados sobre los que acumular información."
3348
- },
3349
- "areas": {
3350
- "default": [
3351
- "[[Creatividad]]"
3352
- ],
3353
- "type": "array",
3354
- "items": {
3355
- "type": "string",
3356
- "enum": [
3357
- "[[Alimentación]]",
3358
- "[[Salud]]",
3359
- "[[Conocimiento]]",
3360
- "[[Pensamiento Estructurado]]",
3361
- "[[Hogar]]",
3362
- "[[Productividad]]",
3363
- "[[Exploración]]",
3364
- "[[Vínculos]]",
3365
- "[[Ejercicio]]",
3366
- "[[Energía Vital]]",
3740
+ "allOf": [
3741
+ {
3742
+ "type": "object",
3743
+ "properties": {
3744
+ "type": {
3745
+ "default": "[[Fuentes]]",
3746
+ "type": "string",
3747
+ "const": "[[Fuentes]]",
3748
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
3749
+ },
3750
+ "areas": {
3751
+ "default": [
3752
+ "[[Creatividad]]"
3753
+ ],
3754
+ "type": "array",
3755
+ "items": {
3756
+ "type": "string",
3757
+ "enum": [
3758
+ "[[Alimentación]]",
3759
+ "[[Salud]]",
3760
+ "[[Conocimiento]]",
3761
+ "[[Pensamiento Estructurado]]",
3762
+ "[[Hogar]]",
3763
+ "[[Productividad]]",
3764
+ "[[Exploración]]",
3765
+ "[[Vínculos]]",
3766
+ "[[Ejercicio]]",
3767
+ "[[Energía Vital]]",
3768
+ "[[Trabajo]]",
3769
+ "[[Finanzas]]",
3770
+ "[[Salud Mental]]",
3771
+ "[[Creatividad]]"
3772
+ ],
3773
+ "description": "Área"
3774
+ },
3775
+ "description": "Áreas"
3776
+ },
3777
+ "color": {
3778
+ "default": "#BE9207",
3779
+ "description": "Color de la nota.",
3780
+ "type": "string",
3781
+ "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
3782
+ },
3783
+ "icon": {
3784
+ "default": "movie",
3785
+ "description": "Icono de Lucide.",
3786
+ "type": "string",
3787
+ "pattern": "^[a-z-]+$"
3788
+ },
3789
+ "banner": {
3790
+ "description": "Imagen",
3791
+ "anyOf": [
3792
+ {
3793
+ "type": "string",
3794
+ "format": "uri"
3795
+ },
3796
+ {
3797
+ "type": "string",
3798
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3799
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3800
+ }
3801
+ ]
3802
+ },
3803
+ "cover": {
3804
+ "description": "Portada de la película.",
3805
+ "anyOf": [
3806
+ {
3807
+ "anyOf": [
3808
+ {
3809
+ "type": "string",
3810
+ "format": "uri"
3811
+ },
3812
+ {
3813
+ "type": "string",
3814
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3815
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3816
+ }
3817
+ ],
3818
+ "description": "Imagen: URL o Wikilink de una imagen."
3819
+ },
3820
+ {
3821
+ "type": "null"
3822
+ }
3823
+ ]
3824
+ },
3825
+ "projects": {
3826
+ "description": "Proyectos asociados.",
3827
+ "type": "array",
3828
+ "items": {
3829
+ "type": "string",
3830
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3831
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3832
+ }
3833
+ },
3834
+ "topics": {
3835
+ "description": "Temas: Wikilink o texto libre",
3836
+ "type": "array",
3837
+ "items": {
3838
+ "anyOf": [
3839
+ {
3840
+ "type": "string",
3841
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3842
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3843
+ },
3844
+ {
3845
+ "type": "string"
3846
+ }
3847
+ ]
3848
+ }
3849
+ },
3850
+ "status": {
3851
+ "default": "Pendiente",
3852
+ "anyOf": [
3853
+ {
3854
+ "type": "string",
3855
+ "const": "Pendiente"
3856
+ },
3857
+ {
3858
+ "type": "string",
3859
+ "const": "En Proceso"
3860
+ },
3861
+ {
3862
+ "type": "string",
3863
+ "const": "Visto"
3864
+ }
3865
+ ],
3866
+ "description": "Estado de visualización de la película"
3867
+ },
3868
+ "rating": {
3869
+ "description": "Valoración personal de la fuente.",
3870
+ "anyOf": [
3871
+ {
3872
+ "type": "number",
3873
+ "const": 7,
3874
+ "description": "Perfecto, hay que probarlo, te cambia la vida, haz un esfuerzo por buscarlo."
3875
+ },
3876
+ {
3877
+ "type": "number",
3878
+ "const": 6,
3879
+ "description": "Excelente, vale la pena repetirlo"
3880
+ },
3881
+ {
3882
+ "type": "number",
3883
+ "const": 5,
3884
+ "description": "Bueno, no hagas un esfuerzo especial, pero es agradable."
3885
+ },
3886
+ {
3887
+ "type": "number",
3888
+ "const": 4,
3889
+ "description": "Aceptable, sirve en caso de apuro."
3890
+ },
3891
+ {
3892
+ "type": "number",
3893
+ "const": 3,
3894
+ "description": "Malo, no lo hagas si puedes evitarlo."
3895
+ },
3896
+ {
3897
+ "type": "number",
3898
+ "const": 2,
3899
+ "description": "Atroz, evítalo activamente, repulsivo"
3900
+ },
3901
+ {
3902
+ "type": "number",
3903
+ "const": 1,
3904
+ "description": "Malvado, te cambia la vida para mal."
3905
+ }
3906
+ ]
3907
+ },
3908
+ "aliases": {
3909
+ "description": "Alias de la nota.",
3910
+ "type": "array",
3911
+ "items": {
3912
+ "type": "string"
3913
+ }
3914
+ },
3915
+ "format": {
3916
+ "default": "[[Películas]]",
3917
+ "type": "string",
3918
+ "const": "[[Películas]]",
3919
+ "description": "Películas"
3920
+ },
3921
+ "url": {
3922
+ "type": "string",
3923
+ "format": "uri",
3924
+ "description": "URL de la película en IMDB o similar"
3925
+ },
3926
+ "author": {
3927
+ "description": "Autores de la fuente.",
3928
+ "type": "array",
3929
+ "items": {
3930
+ "type": "string"
3931
+ }
3932
+ },
3933
+ "published": {
3934
+ "description": "Año de publicación",
3935
+ "anyOf": [
3936
+ {
3937
+ "type": "string",
3938
+ "pattern": "^[0-9]{4}$",
3939
+ "description": "Año: YYYY"
3940
+ },
3941
+ {
3942
+ "type": "string",
3943
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
3944
+ "description": "Mes: YYYY-MM"
3945
+ },
3946
+ {
3947
+ "type": "string",
3948
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
3949
+ "description": "Fecha: YYYY-MM-DD"
3950
+ }
3951
+ ]
3952
+ },
3953
+ "title": {
3954
+ "type": "string",
3955
+ "description": "Título de la película"
3956
+ },
3957
+ "description": {
3958
+ "description": "Descripción de la fuente.",
3959
+ "type": "string"
3960
+ },
3961
+ "watch_url": {
3962
+ "description": "URL de la película en streaming",
3963
+ "deprecated": true,
3964
+ "replacement": "hbo_max_url|netflix_url|apple_tv_url|amazon_prime_url|disney_plus_url|hulu_url|pluto_tv_url|youtube_url",
3965
+ "type": "string",
3966
+ "format": "uri"
3967
+ },
3968
+ "external_ids": {
3969
+ "description": "IDs externos de la película",
3970
+ "type": "array",
3971
+ "items": {
3972
+ "type": "string",
3973
+ "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
3974
+ }
3975
+ },
3976
+ "actors": {
3977
+ "description": "Actores",
3978
+ "type": "array",
3979
+ "items": {
3980
+ "type": "string"
3981
+ }
3982
+ },
3983
+ "genres": {
3984
+ "description": "Géneros",
3985
+ "type": "array",
3986
+ "items": {
3987
+ "type": "string"
3988
+ }
3989
+ },
3990
+ "online_rating": {
3991
+ "description": "Puntuación en línea",
3992
+ "type": "number"
3993
+ },
3994
+ "last_time_watched": {
3995
+ "description": "Última vez vista",
3996
+ "anyOf": [
3997
+ {
3998
+ "type": "string",
3999
+ "pattern": "^[0-9]{4}$",
4000
+ "description": "Año: YYYY"
4001
+ },
4002
+ {
4003
+ "type": "string",
4004
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
4005
+ "description": "Mes: YYYY-MM"
4006
+ },
4007
+ {
4008
+ "type": "string",
4009
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
4010
+ "description": "Fecha: YYYY-MM-DD"
4011
+ }
4012
+ ]
4013
+ },
4014
+ "times_watched": {
4015
+ "description": "Veces vista",
4016
+ "default": 0,
4017
+ "type": "number"
4018
+ }
4019
+ },
4020
+ "required": [
4021
+ "url",
4022
+ "title"
4023
+ ]
4024
+ },
4025
+ {
4026
+ "type": "object",
4027
+ "properties": {
4028
+ "hbo_max_url": {
4029
+ "description": "URL de HBO Max",
4030
+ "type": "string",
4031
+ "format": "uri"
4032
+ },
4033
+ "netflix_url": {
4034
+ "description": "URL de Netflix",
4035
+ "type": "string",
4036
+ "format": "uri"
4037
+ },
4038
+ "apple_tv_url": {
4039
+ "description": "URL de Apple TV",
4040
+ "type": "string",
4041
+ "format": "uri"
4042
+ },
4043
+ "amazon_prime_url": {
4044
+ "description": "URL de Amazon Prime",
4045
+ "type": "string",
4046
+ "format": "uri"
4047
+ },
4048
+ "disney_plus_url": {
4049
+ "description": "URL de Disney Plus",
4050
+ "type": "string",
4051
+ "format": "uri"
4052
+ },
4053
+ "hulu_url": {
4054
+ "description": "URL de Hulu",
4055
+ "type": "string",
4056
+ "format": "uri"
4057
+ },
4058
+ "pluto_tv_url": {
4059
+ "description": "URL de Pluto TV",
4060
+ "type": "string",
4061
+ "format": "uri"
4062
+ },
4063
+ "youtube_url": {
4064
+ "description": "URL de YouTube",
4065
+ "type": "string",
4066
+ "format": "uri"
4067
+ }
4068
+ },
4069
+ "description": "URLs de streaming"
4070
+ }
4071
+ ],
4072
+ "description": "Película"
4073
+ },
4074
+ "PaintingSchema": {
4075
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4076
+ "type": "object",
4077
+ "properties": {
4078
+ "type": {
4079
+ "default": "[[Fuentes]]",
4080
+ "type": "string",
4081
+ "const": "[[Fuentes]]",
4082
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
4083
+ },
4084
+ "areas": {
4085
+ "default": [
4086
+ "[[Creatividad]]"
4087
+ ],
4088
+ "type": "array",
4089
+ "items": {
4090
+ "type": "string",
4091
+ "enum": [
4092
+ "[[Alimentación]]",
4093
+ "[[Salud]]",
4094
+ "[[Conocimiento]]",
4095
+ "[[Pensamiento Estructurado]]",
4096
+ "[[Hogar]]",
4097
+ "[[Productividad]]",
4098
+ "[[Exploración]]",
4099
+ "[[Vínculos]]",
4100
+ "[[Ejercicio]]",
4101
+ "[[Energía Vital]]",
3367
4102
  "[[Trabajo]]",
3368
4103
  "[[Finanzas]]",
3369
4104
  "[[Salud Mental]]",
@@ -3380,7 +4115,7 @@
3380
4115
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
3381
4116
  },
3382
4117
  "icon": {
3383
- "default": "movie",
4118
+ "default": "frame",
3384
4119
  "description": "Icono de Lucide.",
3385
4120
  "type": "string",
3386
4121
  "pattern": "^[a-z-]+$"
@@ -3400,7 +4135,7 @@
3400
4135
  ]
3401
4136
  },
3402
4137
  "cover": {
3403
- "description": "Portada de la película.",
4138
+ "description": "Portada de la pintura.",
3404
4139
  "anyOf": [
3405
4140
  {
3406
4141
  "anyOf": [
@@ -3462,7 +4197,7 @@
3462
4197
  "const": "Visto"
3463
4198
  }
3464
4199
  ],
3465
- "description": "Estado de visualización de la película"
4200
+ "description": "Estado de procesamiento de la pintura"
3466
4201
  },
3467
4202
  "rating": {
3468
4203
  "description": "Valoración personal de la fuente.",
@@ -3512,80 +4247,25 @@
3512
4247
  }
3513
4248
  },
3514
4249
  "format": {
3515
- "default": "[[Películas]]",
3516
- "type": "string",
3517
- "const": "[[Películas]]",
3518
- "description": "Películas"
3519
- },
3520
- "url": {
3521
- "type": "string",
3522
- "format": "uri",
3523
- "description": "URL de la película en IMDB o similar"
3524
- },
3525
- "author": {
3526
- "description": "Autores de la fuente.",
3527
- "type": "array",
3528
- "items": {
3529
- "type": "string"
3530
- }
3531
- },
3532
- "published": {
3533
- "description": "Año de publicación",
3534
- "anyOf": [
3535
- {
3536
- "type": "string",
3537
- "pattern": "^[0-9]{4}$",
3538
- "description": "Año: YYYY"
3539
- },
3540
- {
3541
- "type": "string",
3542
- "pattern": "^[0-9]{4}-[0-9]{2}$",
3543
- "description": "Mes: YYYY-MM"
3544
- },
3545
- {
3546
- "type": "string",
3547
- "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
3548
- "description": "Fecha: YYYY-MM-DD"
3549
- }
3550
- ]
3551
- },
3552
- "title": {
3553
- "type": "string",
3554
- "description": "Título de la película"
3555
- },
3556
- "watch_url": {
3557
- "description": "URL de la película en streaming",
4250
+ "default": "[[Pinturas]]",
3558
4251
  "type": "string",
3559
- "format": "uri"
3560
- },
3561
- "external_ids": {
3562
- "description": "IDs externos de la película",
3563
- "type": "array",
3564
- "items": {
3565
- "type": "string",
3566
- "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
3567
- }
4252
+ "const": "[[Pinturas]]",
4253
+ "description": "Pinturas"
3568
4254
  },
3569
- "actors": {
3570
- "description": "Actores",
3571
- "type": "array",
3572
- "items": {
3573
- "type": "string"
3574
- }
4255
+ "url": {
4256
+ "description": "URL de la fuente.",
4257
+ "type": "string",
4258
+ "format": "uri"
3575
4259
  },
3576
- "genres": {
3577
- "description": "Géneros",
4260
+ "author": {
4261
+ "description": "Autores de la fuente.",
3578
4262
  "type": "array",
3579
4263
  "items": {
3580
4264
  "type": "string"
3581
4265
  }
3582
4266
  },
3583
- "online_rating": {
3584
- "description": "Puntuación en línea",
3585
- "type": "number"
3586
- },
3587
- "last_time_watched": {
3588
- "description": "Última vez vista",
4267
+ "published": {
4268
+ "description": "Año de publicación",
3589
4269
  "anyOf": [
3590
4270
  {
3591
4271
  "type": "string",
@@ -3604,248 +4284,363 @@
3604
4284
  }
3605
4285
  ]
3606
4286
  },
3607
- "times_watched": {
3608
- "description": "Veces vista",
3609
- "default": 0,
3610
- "type": "number"
4287
+ "title": {
4288
+ "type": "string",
4289
+ "description": "Título de la película"
4290
+ },
4291
+ "description": {
4292
+ "description": "Descripción de la fuente.",
4293
+ "type": "string"
4294
+ },
4295
+ "collection": {
4296
+ "description": "Colección",
4297
+ "type": "string"
4298
+ },
4299
+ "position": {
4300
+ "description": "Posición en la colección",
4301
+ "type": "string"
3611
4302
  }
3612
4303
  },
3613
4304
  "required": [
3614
- "url",
3615
4305
  "title"
3616
4306
  ],
3617
- "description": "Película"
4307
+ "description": "Pintura"
3618
4308
  },
3619
- "PaintingSchema": {
4309
+ "TVSeriesSchema": {
3620
4310
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3621
- "type": "object",
3622
- "properties": {
3623
- "type": {
3624
- "default": "[[Fuentes]]",
3625
- "type": "string",
3626
- "const": "[[Fuentes]]",
3627
- "description": "Bibliografías, recursos validados sobre los que acumular información."
3628
- },
3629
- "areas": {
3630
- "default": [
3631
- "[[Creatividad]]"
3632
- ],
3633
- "type": "array",
3634
- "items": {
3635
- "type": "string",
3636
- "enum": [
3637
- "[[Alimentación]]",
3638
- "[[Salud]]",
3639
- "[[Conocimiento]]",
3640
- "[[Pensamiento Estructurado]]",
3641
- "[[Hogar]]",
3642
- "[[Productividad]]",
3643
- "[[Exploración]]",
3644
- "[[Vínculos]]",
3645
- "[[Ejercicio]]",
3646
- "[[Energía Vital]]",
3647
- "[[Trabajo]]",
3648
- "[[Finanzas]]",
3649
- "[[Salud Mental]]",
3650
- "[[Creatividad]]"
3651
- ],
3652
- "description": "Área"
3653
- },
3654
- "description": "Áreas"
3655
- },
3656
- "color": {
3657
- "default": "#BE9207",
3658
- "description": "Color de la nota.",
3659
- "type": "string",
3660
- "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
3661
- },
3662
- "icon": {
3663
- "default": "frame",
3664
- "description": "Icono de Lucide.",
3665
- "type": "string",
3666
- "pattern": "^[a-z-]+$"
3667
- },
3668
- "banner": {
3669
- "description": "Imagen",
3670
- "anyOf": [
3671
- {
4311
+ "allOf": [
4312
+ {
4313
+ "type": "object",
4314
+ "properties": {
4315
+ "type": {
4316
+ "default": "[[Fuentes]]",
4317
+ "type": "string",
4318
+ "const": "[[Fuentes]]",
4319
+ "description": "Bibliografías, recursos validados sobre los que acumular información."
4320
+ },
4321
+ "areas": {
4322
+ "default": [
4323
+ "[[Creatividad]]"
4324
+ ],
4325
+ "type": "array",
4326
+ "items": {
4327
+ "type": "string",
4328
+ "enum": [
4329
+ "[[Alimentación]]",
4330
+ "[[Salud]]",
4331
+ "[[Conocimiento]]",
4332
+ "[[Pensamiento Estructurado]]",
4333
+ "[[Hogar]]",
4334
+ "[[Productividad]]",
4335
+ "[[Exploración]]",
4336
+ "[[Vínculos]]",
4337
+ "[[Ejercicio]]",
4338
+ "[[Energía Vital]]",
4339
+ "[[Trabajo]]",
4340
+ "[[Finanzas]]",
4341
+ "[[Salud Mental]]",
4342
+ "[[Creatividad]]"
4343
+ ],
4344
+ "description": "Área"
4345
+ },
4346
+ "description": "Áreas"
4347
+ },
4348
+ "color": {
4349
+ "default": "#BE9207",
4350
+ "description": "Color de la nota.",
4351
+ "type": "string",
4352
+ "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
4353
+ },
4354
+ "icon": {
4355
+ "default": "tv",
4356
+ "description": "Icono de Lucide.",
4357
+ "type": "string",
4358
+ "pattern": "^[a-z-]+$"
4359
+ },
4360
+ "banner": {
4361
+ "description": "Imagen",
4362
+ "anyOf": [
4363
+ {
4364
+ "type": "string",
4365
+ "format": "uri"
4366
+ },
4367
+ {
4368
+ "type": "string",
4369
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
4370
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
4371
+ }
4372
+ ]
4373
+ },
4374
+ "cover": {
4375
+ "description": "Portada de la serie de TV.",
4376
+ "anyOf": [
4377
+ {
4378
+ "anyOf": [
4379
+ {
4380
+ "type": "string",
4381
+ "format": "uri"
4382
+ },
4383
+ {
4384
+ "type": "string",
4385
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
4386
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
4387
+ }
4388
+ ],
4389
+ "description": "Imagen: URL o Wikilink de una imagen."
4390
+ },
4391
+ {
4392
+ "type": "null"
4393
+ }
4394
+ ]
4395
+ },
4396
+ "projects": {
4397
+ "description": "Proyectos asociados.",
4398
+ "type": "array",
4399
+ "items": {
4400
+ "type": "string",
4401
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
4402
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
4403
+ }
4404
+ },
4405
+ "topics": {
4406
+ "description": "Temas: Wikilink o texto libre",
4407
+ "type": "array",
4408
+ "items": {
4409
+ "anyOf": [
4410
+ {
4411
+ "type": "string",
4412
+ "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
4413
+ "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
4414
+ },
4415
+ {
4416
+ "type": "string"
4417
+ }
4418
+ ]
4419
+ }
4420
+ },
4421
+ "status": {
4422
+ "default": "Pendiente",
4423
+ "anyOf": [
4424
+ {
4425
+ "type": "string",
4426
+ "const": "Pendiente"
4427
+ },
4428
+ {
4429
+ "type": "string",
4430
+ "const": "En Proceso"
4431
+ },
4432
+ {
4433
+ "type": "string",
4434
+ "const": "Visto"
4435
+ }
4436
+ ],
4437
+ "description": "Estado de visualización de la serie de TV"
4438
+ },
4439
+ "rating": {
4440
+ "description": "Valoración personal de la fuente.",
4441
+ "anyOf": [
4442
+ {
4443
+ "type": "number",
4444
+ "const": 7,
4445
+ "description": "Perfecto, hay que probarlo, te cambia la vida, haz un esfuerzo por buscarlo."
4446
+ },
4447
+ {
4448
+ "type": "number",
4449
+ "const": 6,
4450
+ "description": "Excelente, vale la pena repetirlo"
4451
+ },
4452
+ {
4453
+ "type": "number",
4454
+ "const": 5,
4455
+ "description": "Bueno, no hagas un esfuerzo especial, pero es agradable."
4456
+ },
4457
+ {
4458
+ "type": "number",
4459
+ "const": 4,
4460
+ "description": "Aceptable, sirve en caso de apuro."
4461
+ },
4462
+ {
4463
+ "type": "number",
4464
+ "const": 3,
4465
+ "description": "Malo, no lo hagas si puedes evitarlo."
4466
+ },
4467
+ {
4468
+ "type": "number",
4469
+ "const": 2,
4470
+ "description": "Atroz, evítalo activamente, repulsivo"
4471
+ },
4472
+ {
4473
+ "type": "number",
4474
+ "const": 1,
4475
+ "description": "Malvado, te cambia la vida para mal."
4476
+ }
4477
+ ]
4478
+ },
4479
+ "aliases": {
4480
+ "description": "Alias de la nota.",
4481
+ "type": "array",
4482
+ "items": {
4483
+ "type": "string"
4484
+ }
4485
+ },
4486
+ "format": {
4487
+ "default": "[[Series]]",
3672
4488
  "type": "string",
3673
- "format": "uri"
4489
+ "const": "[[Series]]",
4490
+ "description": "Series"
3674
4491
  },
3675
- {
4492
+ "url": {
3676
4493
  "type": "string",
3677
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3678
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3679
- }
3680
- ]
3681
- },
3682
- "cover": {
3683
- "description": "Portada de la pintura.",
3684
- "anyOf": [
3685
- {
4494
+ "format": "uri",
4495
+ "description": "URL de la serie de TV en IMDB o similar"
4496
+ },
4497
+ "author": {
4498
+ "description": "Autores de la fuente.",
4499
+ "type": "array",
4500
+ "items": {
4501
+ "type": "string"
4502
+ }
4503
+ },
4504
+ "published": {
4505
+ "description": "Año de publicación",
3686
4506
  "anyOf": [
3687
4507
  {
3688
4508
  "type": "string",
3689
- "format": "uri"
4509
+ "pattern": "^[0-9]{4}$",
4510
+ "description": "Año: YYYY"
3690
4511
  },
3691
4512
  {
3692
4513
  "type": "string",
3693
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3694
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
4514
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
4515
+ "description": "Mes: YYYY-MM"
4516
+ },
4517
+ {
4518
+ "type": "string",
4519
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
4520
+ "description": "Fecha: YYYY-MM-DD"
3695
4521
  }
3696
- ],
3697
- "description": "Imagen: URL o Wikilink de una imagen."
4522
+ ]
3698
4523
  },
3699
- {
3700
- "type": "null"
3701
- }
3702
- ]
3703
- },
3704
- "projects": {
3705
- "description": "Proyectos asociados.",
3706
- "type": "array",
3707
- "items": {
3708
- "type": "string",
3709
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3710
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3711
- }
3712
- },
3713
- "topics": {
3714
- "description": "Temas: Wikilink o texto libre",
3715
- "type": "array",
3716
- "items": {
3717
- "anyOf": [
3718
- {
3719
- "type": "string",
3720
- "pattern": "\\[\\[([^\\]|]+)(?:\\|([^\\]]+))?\\]\\]",
3721
- "description": "Wikilink: [[Wikilink]] o [[Wikilink|Display Text]]"
3722
- },
3723
- {
3724
- "type": "string"
3725
- }
3726
- ]
3727
- }
3728
- },
3729
- "status": {
3730
- "default": "Pendiente",
3731
- "anyOf": [
3732
- {
4524
+ "title": {
3733
4525
  "type": "string",
3734
- "const": "Pendiente"
4526
+ "description": "Título de la serie de TV"
3735
4527
  },
3736
- {
3737
- "type": "string",
3738
- "const": "En Proceso"
4528
+ "description": {
4529
+ "description": "Descripción de la fuente.",
4530
+ "type": "string"
3739
4531
  },
3740
- {
4532
+ "watch_url": {
4533
+ "description": "URL de la serie de TV en streaming",
4534
+ "deprecated": true,
4535
+ "replacement": "hbo_max_url|netflix_url|apple_tv_url|amazon_prime_url|disney_plus_url|hulu_url|pluto_tv_url|youtube_url",
3741
4536
  "type": "string",
3742
- "const": "Visto"
3743
- }
3744
- ],
3745
- "description": "Estado de procesamiento de la pintura"
3746
- },
3747
- "rating": {
3748
- "description": "Valoración personal de la fuente.",
3749
- "anyOf": [
3750
- {
3751
- "type": "number",
3752
- "const": 7,
3753
- "description": "Perfecto, hay que probarlo, te cambia la vida, haz un esfuerzo por buscarlo."
4537
+ "format": "uri"
3754
4538
  },
3755
- {
3756
- "type": "number",
3757
- "const": 6,
3758
- "description": "Excelente, vale la pena repetirlo"
4539
+ "external_ids": {
4540
+ "description": "IDs externos de la serie de TV",
4541
+ "type": "array",
4542
+ "items": {
4543
+ "type": "string",
4544
+ "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
4545
+ }
3759
4546
  },
3760
- {
3761
- "type": "number",
3762
- "const": 5,
3763
- "description": "Bueno, no hagas un esfuerzo especial, pero es agradable."
4547
+ "actors": {
4548
+ "description": "Actores",
4549
+ "type": "array",
4550
+ "items": {
4551
+ "type": "string"
4552
+ }
3764
4553
  },
3765
- {
3766
- "type": "number",
3767
- "const": 4,
3768
- "description": "Aceptable, sirve en caso de apuro."
4554
+ "genres": {
4555
+ "description": "Géneros",
4556
+ "type": "array",
4557
+ "items": {
4558
+ "type": "string"
4559
+ }
3769
4560
  },
3770
- {
3771
- "type": "number",
3772
- "const": 3,
3773
- "description": "Malo, no lo hagas si puedes evitarlo."
4561
+ "online_rating": {
4562
+ "description": "Puntuación en línea",
4563
+ "type": "number"
3774
4564
  },
3775
- {
3776
- "type": "number",
3777
- "const": 2,
3778
- "description": "Atroz, evítalo activamente, repulsivo"
4565
+ "last_time_watched": {
4566
+ "description": "Última vez vista",
4567
+ "anyOf": [
4568
+ {
4569
+ "type": "string",
4570
+ "pattern": "^[0-9]{4}$",
4571
+ "description": "Año: YYYY"
4572
+ },
4573
+ {
4574
+ "type": "string",
4575
+ "pattern": "^[0-9]{4}-[0-9]{2}$",
4576
+ "description": "Mes: YYYY-MM"
4577
+ },
4578
+ {
4579
+ "type": "string",
4580
+ "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
4581
+ "description": "Fecha: YYYY-MM-DD"
4582
+ }
4583
+ ]
3779
4584
  },
3780
- {
3781
- "type": "number",
3782
- "const": 1,
3783
- "description": "Malvado, te cambia la vida para mal."
4585
+ "times_watched": {
4586
+ "description": "Veces vista",
4587
+ "default": 0,
4588
+ "type": "number"
3784
4589
  }
4590
+ },
4591
+ "required": [
4592
+ "url",
4593
+ "title"
3785
4594
  ]
3786
4595
  },
3787
- "aliases": {
3788
- "description": "Alias de la nota.",
3789
- "type": "array",
3790
- "items": {
3791
- "type": "string"
3792
- }
3793
- },
3794
- "format": {
3795
- "default": "[[Pinturas]]",
3796
- "type": "string",
3797
- "const": "[[Pinturas]]",
3798
- "description": "Pinturas"
3799
- },
3800
- "url": {
3801
- "description": "URL de la fuente.",
3802
- "type": "string",
3803
- "format": "uri"
3804
- },
3805
- "author": {
3806
- "description": "Autores de la fuente.",
3807
- "type": "array",
3808
- "items": {
3809
- "type": "string"
3810
- }
3811
- },
3812
- "published": {
3813
- "description": "Año de publicación",
3814
- "anyOf": [
3815
- {
4596
+ {
4597
+ "type": "object",
4598
+ "properties": {
4599
+ "hbo_max_url": {
4600
+ "description": "URL de HBO Max",
3816
4601
  "type": "string",
3817
- "pattern": "^[0-9]{4}$",
3818
- "description": "Año: YYYY"
4602
+ "format": "uri"
3819
4603
  },
3820
- {
4604
+ "netflix_url": {
4605
+ "description": "URL de Netflix",
3821
4606
  "type": "string",
3822
- "pattern": "^[0-9]{4}-[0-9]{2}$",
3823
- "description": "Mes: YYYY-MM"
4607
+ "format": "uri"
3824
4608
  },
3825
- {
4609
+ "apple_tv_url": {
4610
+ "description": "URL de Apple TV",
3826
4611
  "type": "string",
3827
- "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
3828
- "description": "Fecha: YYYY-MM-DD"
4612
+ "format": "uri"
4613
+ },
4614
+ "amazon_prime_url": {
4615
+ "description": "URL de Amazon Prime",
4616
+ "type": "string",
4617
+ "format": "uri"
4618
+ },
4619
+ "disney_plus_url": {
4620
+ "description": "URL de Disney Plus",
4621
+ "type": "string",
4622
+ "format": "uri"
4623
+ },
4624
+ "hulu_url": {
4625
+ "description": "URL de Hulu",
4626
+ "type": "string",
4627
+ "format": "uri"
4628
+ },
4629
+ "pluto_tv_url": {
4630
+ "description": "URL de Pluto TV",
4631
+ "type": "string",
4632
+ "format": "uri"
4633
+ },
4634
+ "youtube_url": {
4635
+ "description": "URL de YouTube",
4636
+ "type": "string",
4637
+ "format": "uri"
3829
4638
  }
3830
- ]
3831
- },
3832
- "title": {
3833
- "type": "string",
3834
- "description": "Título de la película"
3835
- },
3836
- "collection": {
3837
- "description": "Colección",
3838
- "type": "string"
3839
- },
3840
- "position": {
3841
- "description": "Posición en la colección",
3842
- "type": "string"
4639
+ },
4640
+ "description": "URLs de streaming"
3843
4641
  }
3844
- },
3845
- "required": [
3846
- "title"
3847
4642
  ],
3848
- "description": "Pintura"
4643
+ "description": "Serie de TV"
3849
4644
  },
3850
4645
  "VideoSchema": {
3851
4646
  "$schema": "https://json-schema.org/draft/2020-12/schema",
@@ -4056,6 +4851,10 @@
4056
4851
  "type": "string",
4057
4852
  "description": "Título de la película"
4058
4853
  },
4854
+ "description": {
4855
+ "description": "Descripción de la fuente.",
4856
+ "type": "string"
4857
+ },
4059
4858
  "platform": {
4060
4859
  "anyOf": [
4061
4860
  {
@@ -4285,6 +5084,10 @@
4285
5084
  "type": "string",
4286
5085
  "description": "Título de la película"
4287
5086
  },
5087
+ "description": {
5088
+ "description": "Descripción de la fuente.",
5089
+ "type": "string"
5090
+ },
4288
5091
  "platform": {
4289
5092
  "type": "string",
4290
5093
  "const": "Vimeo"
@@ -4761,6 +5564,10 @@
4761
5564
  "type": "string",
4762
5565
  "description": "Título de la película"
4763
5566
  },
5567
+ "description": {
5568
+ "description": "Descripción de la fuente.",
5569
+ "type": "string"
5570
+ },
4764
5571
  "platform": {
4765
5572
  "type": "string",
4766
5573
  "const": "YouTube"