@segha/catalog 2.0.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (175) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +355 -4
  3. package/en/Areas.ts +24 -0
  4. package/en/Article/index.ts +29 -0
  5. package/en/Article/types.ts +9 -0
  6. package/en/Book/index.ts +33 -0
  7. package/en/Book/types.ts +9 -0
  8. package/en/Clothing/index.ts +9 -9
  9. package/en/Movie/index.ts +34 -0
  10. package/en/Movie/types.ts +9 -0
  11. package/en/Note.ts +15 -0
  12. package/en/Wikipedia/index.ts +18 -0
  13. package/en/Wikipedia/types.ts +10 -0
  14. package/en/index.ts +5 -1
  15. package/en/types.ts +7 -0
  16. package/es/Areas.ts +24 -0
  17. package/es/Article/index.ts +34 -0
  18. package/es/Article/types.ts +9 -0
  19. package/es/Book/index.ts +36 -0
  20. package/es/Book/types.ts +9 -0
  21. package/es/Clothing/index.ts +11 -10
  22. package/es/Icon.ts +1673 -0
  23. package/es/Movie/index.ts +36 -0
  24. package/es/Movie/types.ts +9 -0
  25. package/es/Note.ts +19 -0
  26. package/es/Painting/index.ts +30 -0
  27. package/es/Painting/types.ts +9 -0
  28. package/es/Wikipedia/index.ts +18 -0
  29. package/es/Wikipedia/types.ts +10 -0
  30. package/es/Youtube/index.ts +19 -0
  31. package/es/Youtube/types.ts +10 -0
  32. package/es/index.ts +7 -0
  33. package/es/types.ts +10 -0
  34. package/json-schemas/ArticleSchema.json +102 -0
  35. package/json-schemas/BookSchema.json +123 -0
  36. package/json-schemas/CatalogArticleSchema.json +34 -0
  37. package/json-schemas/CatalogBookSchema.json +43 -0
  38. package/json-schemas/CatalogClothingSchema.json +0 -1
  39. package/json-schemas/CatalogMovieSchema.json +48 -0
  40. package/json-schemas/CatalogWikipediaSchema.json +34 -0
  41. package/json-schemas/ClothingSchema.json +0 -2
  42. package/json-schemas/DetailedArticleSchema.json +41 -0
  43. package/json-schemas/DetailedBookSchema.json +48 -0
  44. package/json-schemas/DetailedClothingSchema.json +0 -2
  45. package/json-schemas/DetailedMovieSchema.json +47 -0
  46. package/json-schemas/DetailedWikipediaSchema.json +41 -0
  47. package/json-schemas/MetaArticleSchema.json +45 -0
  48. package/json-schemas/MetaBookSchema.json +50 -0
  49. package/json-schemas/MetaClothingSchema.json +0 -1
  50. package/json-schemas/MetaMovieSchema.json +50 -0
  51. package/json-schemas/MetaWikipediaSchema.json +50 -0
  52. package/json-schemas/MovieSchema.json +127 -0
  53. package/json-schemas/NoteSchema.json +846 -0
  54. package/json-schemas/WikipediaSchema.json +107 -0
  55. package/json-schemas/en/Area.json +21 -0
  56. package/json-schemas/en/Areas.json +25 -0
  57. package/json-schemas/en/Article/ArticleSchema.json +102 -0
  58. package/json-schemas/en/Article/CatalogArticleSchema.json +34 -0
  59. package/json-schemas/en/Article/DetailedArticleSchema.json +41 -0
  60. package/json-schemas/en/Article/MetaArticleSchema.json +45 -0
  61. package/json-schemas/en/Article/index.json +229 -0
  62. package/json-schemas/en/ArticleSchema.json +102 -0
  63. package/json-schemas/en/Book/BookSchema.json +123 -0
  64. package/json-schemas/en/Book/CatalogBookSchema.json +43 -0
  65. package/json-schemas/en/Book/DetailedBookSchema.json +48 -0
  66. package/json-schemas/en/Book/MetaBookSchema.json +50 -0
  67. package/json-schemas/en/Book/index.json +271 -0
  68. package/json-schemas/en/BookSchema.json +123 -0
  69. package/json-schemas/en/CatalogArticleSchema.json +34 -0
  70. package/json-schemas/en/CatalogBookSchema.json +43 -0
  71. package/json-schemas/en/CatalogClothingSchema.json +0 -1
  72. package/json-schemas/en/CatalogMovieSchema.json +48 -0
  73. package/json-schemas/en/CatalogWikipediaSchema.json +34 -0
  74. package/json-schemas/en/Clothing/CatalogClothingSchema.json +0 -1
  75. package/json-schemas/en/Clothing/ClothingSchema.json +0 -2
  76. package/json-schemas/en/Clothing/DetailedClothingSchema.json +0 -2
  77. package/json-schemas/en/Clothing/MetaClothingSchema.json +0 -1
  78. package/json-schemas/en/Clothing/index.json +0 -6
  79. package/json-schemas/en/ClothingSchema.json +0 -2
  80. package/json-schemas/en/DetailedArticleSchema.json +41 -0
  81. package/json-schemas/en/DetailedBookSchema.json +48 -0
  82. package/json-schemas/en/DetailedClothingSchema.json +0 -2
  83. package/json-schemas/en/DetailedMovieSchema.json +47 -0
  84. package/json-schemas/en/DetailedWikipediaSchema.json +41 -0
  85. package/json-schemas/en/FirstLevelArea.json +21 -0
  86. package/json-schemas/en/MetaArticleSchema.json +45 -0
  87. package/json-schemas/en/MetaBookSchema.json +50 -0
  88. package/json-schemas/en/MetaClothingSchema.json +0 -1
  89. package/json-schemas/en/MetaMovieSchema.json +50 -0
  90. package/json-schemas/en/MetaWikipediaSchema.json +50 -0
  91. package/json-schemas/en/Movie/CatalogMovieSchema.json +48 -0
  92. package/json-schemas/en/Movie/DetailedMovieSchema.json +47 -0
  93. package/json-schemas/en/Movie/MetaMovieSchema.json +50 -0
  94. package/json-schemas/en/Movie/MovieSchema.json +127 -0
  95. package/json-schemas/en/Movie/index.json +279 -0
  96. package/json-schemas/en/MovieSchema.json +127 -0
  97. package/json-schemas/en/NoteSchema.json +846 -0
  98. package/json-schemas/en/Wikipedia/CatalogWikipediaSchema.json +34 -0
  99. package/json-schemas/en/Wikipedia/DetailedWikipediaSchema.json +41 -0
  100. package/json-schemas/en/Wikipedia/MetaWikipediaSchema.json +50 -0
  101. package/json-schemas/en/Wikipedia/WikipediaSchema.json +107 -0
  102. package/json-schemas/en/Wikipedia/index.json +239 -0
  103. package/json-schemas/en/WikipediaSchema.json +107 -0
  104. package/json-schemas/en/index.json +1923 -26
  105. package/json-schemas/es/Area.json +21 -0
  106. package/json-schemas/es/Areas.json +25 -0
  107. package/json-schemas/es/Article/ArticleSchema.json +138 -0
  108. package/json-schemas/es/Article/CatalogArticleSchema.json +47 -0
  109. package/json-schemas/es/Article/DetailedArticleSchema.json +38 -0
  110. package/json-schemas/es/Article/MetaArticleSchema.json +71 -0
  111. package/json-schemas/es/Article/index.json +301 -0
  112. package/json-schemas/es/ArticleSchema.json +138 -0
  113. package/json-schemas/es/Book/BookSchema.json +141 -0
  114. package/json-schemas/es/Book/CatalogBookSchema.json +48 -0
  115. package/json-schemas/es/Book/DetailedBookSchema.json +43 -0
  116. package/json-schemas/es/Book/MetaBookSchema.json +68 -0
  117. package/json-schemas/es/Book/index.json +307 -0
  118. package/json-schemas/es/BookSchema.json +141 -0
  119. package/json-schemas/es/CatalogArticleSchema.json +47 -0
  120. package/json-schemas/es/CatalogBookSchema.json +48 -0
  121. package/json-schemas/es/CatalogClothingSchema.json +0 -1
  122. package/json-schemas/es/CatalogMovieSchema.json +50 -0
  123. package/json-schemas/es/CatalogPaintingSchema.json +26 -0
  124. package/json-schemas/es/CatalogWikipediaSchema.json +47 -0
  125. package/json-schemas/es/CatalogYoutubeSchema.json +47 -0
  126. package/json-schemas/es/Clothing/CatalogClothingSchema.json +0 -1
  127. package/json-schemas/es/Clothing/ClothingSchema.json +30 -12
  128. package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -3
  129. package/json-schemas/es/Clothing/MetaClothingSchema.json +30 -11
  130. package/json-schemas/es/Clothing/index.json +61 -27
  131. package/json-schemas/es/ClothingSchema.json +30 -12
  132. package/json-schemas/es/DetailedArticleSchema.json +38 -0
  133. package/json-schemas/es/DetailedBookSchema.json +43 -0
  134. package/json-schemas/es/DetailedClothingSchema.json +1 -3
  135. package/json-schemas/es/DetailedMovieSchema.json +49 -0
  136. package/json-schemas/es/DetailedPaintingSchema.json +33 -0
  137. package/json-schemas/es/DetailedWikipediaSchema.json +38 -0
  138. package/json-schemas/es/DetailedYoutubeSchema.json +37 -0
  139. package/json-schemas/es/FirstLevelArea.json +21 -0
  140. package/json-schemas/es/Icon.json +1675 -0
  141. package/json-schemas/es/MetaArticleSchema.json +71 -0
  142. package/json-schemas/es/MetaBookSchema.json +68 -0
  143. package/json-schemas/es/MetaClothingSchema.json +30 -11
  144. package/json-schemas/es/MetaMovieSchema.json +69 -0
  145. package/json-schemas/es/MetaPaintingSchema.json +61 -0
  146. package/json-schemas/es/MetaWikipediaSchema.json +76 -0
  147. package/json-schemas/es/MetaYoutubeSchema.json +76 -0
  148. package/json-schemas/es/Movie/CatalogMovieSchema.json +50 -0
  149. package/json-schemas/es/Movie/DetailedMovieSchema.json +49 -0
  150. package/json-schemas/es/Movie/MetaMovieSchema.json +69 -0
  151. package/json-schemas/es/Movie/MovieSchema.json +150 -0
  152. package/json-schemas/es/Movie/index.json +325 -0
  153. package/json-schemas/es/MovieSchema.json +150 -0
  154. package/json-schemas/es/NoteSchema.json +1226 -0
  155. package/json-schemas/es/Painting/CatalogPaintingSchema.json +26 -0
  156. package/json-schemas/es/Painting/DetailedPaintingSchema.json +33 -0
  157. package/json-schemas/es/Painting/MetaPaintingSchema.json +61 -0
  158. package/json-schemas/es/Painting/PaintingSchema.json +106 -0
  159. package/json-schemas/es/Painting/index.json +233 -0
  160. package/json-schemas/es/PaintingSchema.json +106 -0
  161. package/json-schemas/es/Wikipedia/CatalogWikipediaSchema.json +47 -0
  162. package/json-schemas/es/Wikipedia/DetailedWikipediaSchema.json +38 -0
  163. package/json-schemas/es/Wikipedia/MetaWikipediaSchema.json +76 -0
  164. package/json-schemas/es/Wikipedia/WikipediaSchema.json +143 -0
  165. package/json-schemas/es/Wikipedia/index.json +311 -0
  166. package/json-schemas/es/WikipediaSchema.json +143 -0
  167. package/json-schemas/es/Youtube/CatalogYoutubeSchema.json +47 -0
  168. package/json-schemas/es/Youtube/DetailedYoutubeSchema.json +37 -0
  169. package/json-schemas/es/Youtube/MetaYoutubeSchema.json +76 -0
  170. package/json-schemas/es/Youtube/YoutubeSchema.json +142 -0
  171. package/json-schemas/es/Youtube/index.json +309 -0
  172. package/json-schemas/es/YoutubeSchema.json +142 -0
  173. package/json-schemas/es/index.json +4849 -103
  174. package/json-schemas/index.json +1850 -20
  175. package/package.json +3 -3
@@ -0,0 +1,26 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "title": {
6
+ "description": "Título de la pintura",
7
+ "type": "string"
8
+ },
9
+ "description": {
10
+ "description": "Descripción",
11
+ "type": "string"
12
+ },
13
+ "author": {
14
+ "description": "Autores",
15
+ "type": "array",
16
+ "items": {
17
+ "type": "string"
18
+ }
19
+ },
20
+ "published": {
21
+ "description": "Año de publicación",
22
+ "type": "string"
23
+ }
24
+ },
25
+ "description": "Pintura: Datos obtenibles de catalogación"
26
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "collection": {
6
+ "description": "Colección",
7
+ "type": "string"
8
+ },
9
+ "position": {
10
+ "description": "Posición en la colección",
11
+ "type": "string"
12
+ },
13
+ "projects": {
14
+ "description": "Proyectos",
15
+ "type": "array",
16
+ "items": {
17
+ "type": "string"
18
+ }
19
+ },
20
+ "topics": {
21
+ "description": "Temas",
22
+ "type": "array",
23
+ "items": {
24
+ "type": "string"
25
+ }
26
+ },
27
+ "rating": {
28
+ "description": "Puntuación del artículo",
29
+ "type": "number"
30
+ }
31
+ },
32
+ "description": "Pintura: Datos adicionales"
33
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "type": {
6
+ "type": "string",
7
+ "const": "[[Fuentes]]"
8
+ },
9
+ "format": {
10
+ "type": "string",
11
+ "const": "[[Pinturas]]"
12
+ },
13
+ "areas": {
14
+ "default": [
15
+ "[[Creatividad]]"
16
+ ],
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string",
20
+ "enum": [
21
+ "[[Alimentación]]",
22
+ "[[Salud]]",
23
+ "[[Conocimiento]]",
24
+ "[[Pensamiento Estructurado]]",
25
+ "[[Hogar]]",
26
+ "[[Productividad]]",
27
+ "[[Exploración]]",
28
+ "[[Vínculos]]",
29
+ "[[Ejercicio]]",
30
+ "[[Energía Vital]]",
31
+ "[[Trabajo]]",
32
+ "[[Finanzas]]",
33
+ "[[Salud Mental]]",
34
+ "[[Creatividad]]"
35
+ ],
36
+ "description": "Área"
37
+ },
38
+ "description": "Áreas"
39
+ },
40
+ "color": {
41
+ "default": "#BE9207",
42
+ "description": "Color de la nota.",
43
+ "type": "string"
44
+ },
45
+ "icon": {
46
+ "default": "frame",
47
+ "description": "Icono de Lucide.",
48
+ "type": "string"
49
+ },
50
+ "cover": {
51
+ "type": "string",
52
+ "description": "Imagen de la pintura."
53
+ }
54
+ },
55
+ "required": [
56
+ "type",
57
+ "format",
58
+ "cover"
59
+ ],
60
+ "description": "Pintura: Metadatos de Nota"
61
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "title": {
6
+ "description": "Título de la pintura",
7
+ "type": "string"
8
+ },
9
+ "description": {
10
+ "description": "Descripción",
11
+ "type": "string"
12
+ },
13
+ "author": {
14
+ "description": "Autores",
15
+ "type": "array",
16
+ "items": {
17
+ "type": "string"
18
+ }
19
+ },
20
+ "published": {
21
+ "description": "Año de publicación",
22
+ "type": "string"
23
+ },
24
+ "collection": {
25
+ "description": "Colección",
26
+ "type": "string"
27
+ },
28
+ "position": {
29
+ "description": "Posición en la colección",
30
+ "type": "string"
31
+ },
32
+ "projects": {
33
+ "description": "Proyectos",
34
+ "type": "array",
35
+ "items": {
36
+ "type": "string"
37
+ }
38
+ },
39
+ "topics": {
40
+ "description": "Temas",
41
+ "type": "array",
42
+ "items": {
43
+ "type": "string"
44
+ }
45
+ },
46
+ "rating": {
47
+ "description": "Puntuación del artículo",
48
+ "type": "number"
49
+ },
50
+ "type": {
51
+ "type": "string",
52
+ "const": "[[Fuentes]]"
53
+ },
54
+ "format": {
55
+ "type": "string",
56
+ "const": "[[Pinturas]]"
57
+ },
58
+ "areas": {
59
+ "default": [
60
+ "[[Creatividad]]"
61
+ ],
62
+ "type": "array",
63
+ "items": {
64
+ "type": "string",
65
+ "enum": [
66
+ "[[Alimentación]]",
67
+ "[[Salud]]",
68
+ "[[Conocimiento]]",
69
+ "[[Pensamiento Estructurado]]",
70
+ "[[Hogar]]",
71
+ "[[Productividad]]",
72
+ "[[Exploración]]",
73
+ "[[Vínculos]]",
74
+ "[[Ejercicio]]",
75
+ "[[Energía Vital]]",
76
+ "[[Trabajo]]",
77
+ "[[Finanzas]]",
78
+ "[[Salud Mental]]",
79
+ "[[Creatividad]]"
80
+ ],
81
+ "description": "Área"
82
+ },
83
+ "description": "Áreas"
84
+ },
85
+ "color": {
86
+ "default": "#BE9207",
87
+ "description": "Color de la nota.",
88
+ "type": "string"
89
+ },
90
+ "icon": {
91
+ "default": "frame",
92
+ "description": "Icono de Lucide.",
93
+ "type": "string"
94
+ },
95
+ "cover": {
96
+ "type": "string",
97
+ "description": "Imagen de la pintura."
98
+ }
99
+ },
100
+ "required": [
101
+ "type",
102
+ "format",
103
+ "cover"
104
+ ],
105
+ "description": "Pintura"
106
+ }
@@ -0,0 +1,233 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "@segha/catalog/es/Painting",
4
+ "description": "Schemas for Petroglyph Catalog",
5
+ "$defs": {
6
+ "CatalogPaintingSchema": {
7
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
8
+ "type": "object",
9
+ "properties": {
10
+ "title": {
11
+ "description": "Título de la pintura",
12
+ "type": "string"
13
+ },
14
+ "description": {
15
+ "description": "Descripción",
16
+ "type": "string"
17
+ },
18
+ "author": {
19
+ "description": "Autores",
20
+ "type": "array",
21
+ "items": {
22
+ "type": "string"
23
+ }
24
+ },
25
+ "published": {
26
+ "description": "Año de publicación",
27
+ "type": "string"
28
+ }
29
+ },
30
+ "description": "Pintura: Datos obtenibles de catalogación"
31
+ },
32
+ "DetailedPaintingSchema": {
33
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
34
+ "type": "object",
35
+ "properties": {
36
+ "collection": {
37
+ "description": "Colección",
38
+ "type": "string"
39
+ },
40
+ "position": {
41
+ "description": "Posición en la colección",
42
+ "type": "string"
43
+ },
44
+ "projects": {
45
+ "description": "Proyectos",
46
+ "type": "array",
47
+ "items": {
48
+ "type": "string"
49
+ }
50
+ },
51
+ "topics": {
52
+ "description": "Temas",
53
+ "type": "array",
54
+ "items": {
55
+ "type": "string"
56
+ }
57
+ },
58
+ "rating": {
59
+ "description": "Puntuación del artículo",
60
+ "type": "number"
61
+ }
62
+ },
63
+ "description": "Pintura: Datos adicionales"
64
+ },
65
+ "MetaPaintingSchema": {
66
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
67
+ "type": "object",
68
+ "properties": {
69
+ "type": {
70
+ "type": "string",
71
+ "const": "[[Fuentes]]"
72
+ },
73
+ "format": {
74
+ "type": "string",
75
+ "const": "[[Pinturas]]"
76
+ },
77
+ "areas": {
78
+ "default": [
79
+ "[[Creatividad]]"
80
+ ],
81
+ "type": "array",
82
+ "items": {
83
+ "type": "string",
84
+ "enum": [
85
+ "[[Alimentación]]",
86
+ "[[Salud]]",
87
+ "[[Conocimiento]]",
88
+ "[[Pensamiento Estructurado]]",
89
+ "[[Hogar]]",
90
+ "[[Productividad]]",
91
+ "[[Exploración]]",
92
+ "[[Vínculos]]",
93
+ "[[Ejercicio]]",
94
+ "[[Energía Vital]]",
95
+ "[[Trabajo]]",
96
+ "[[Finanzas]]",
97
+ "[[Salud Mental]]",
98
+ "[[Creatividad]]"
99
+ ],
100
+ "description": "Área"
101
+ },
102
+ "description": "Áreas"
103
+ },
104
+ "color": {
105
+ "default": "#BE9207",
106
+ "description": "Color de la nota.",
107
+ "type": "string"
108
+ },
109
+ "icon": {
110
+ "default": "frame",
111
+ "description": "Icono de Lucide.",
112
+ "type": "string"
113
+ },
114
+ "cover": {
115
+ "type": "string",
116
+ "description": "Imagen de la pintura."
117
+ }
118
+ },
119
+ "required": [
120
+ "type",
121
+ "format",
122
+ "cover"
123
+ ],
124
+ "description": "Pintura: Metadatos de Nota"
125
+ },
126
+ "PaintingSchema": {
127
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
128
+ "type": "object",
129
+ "properties": {
130
+ "title": {
131
+ "description": "Título de la pintura",
132
+ "type": "string"
133
+ },
134
+ "description": {
135
+ "description": "Descripción",
136
+ "type": "string"
137
+ },
138
+ "author": {
139
+ "description": "Autores",
140
+ "type": "array",
141
+ "items": {
142
+ "type": "string"
143
+ }
144
+ },
145
+ "published": {
146
+ "description": "Año de publicación",
147
+ "type": "string"
148
+ },
149
+ "collection": {
150
+ "description": "Colección",
151
+ "type": "string"
152
+ },
153
+ "position": {
154
+ "description": "Posición en la colección",
155
+ "type": "string"
156
+ },
157
+ "projects": {
158
+ "description": "Proyectos",
159
+ "type": "array",
160
+ "items": {
161
+ "type": "string"
162
+ }
163
+ },
164
+ "topics": {
165
+ "description": "Temas",
166
+ "type": "array",
167
+ "items": {
168
+ "type": "string"
169
+ }
170
+ },
171
+ "rating": {
172
+ "description": "Puntuación del artículo",
173
+ "type": "number"
174
+ },
175
+ "type": {
176
+ "type": "string",
177
+ "const": "[[Fuentes]]"
178
+ },
179
+ "format": {
180
+ "type": "string",
181
+ "const": "[[Pinturas]]"
182
+ },
183
+ "areas": {
184
+ "default": [
185
+ "[[Creatividad]]"
186
+ ],
187
+ "type": "array",
188
+ "items": {
189
+ "type": "string",
190
+ "enum": [
191
+ "[[Alimentación]]",
192
+ "[[Salud]]",
193
+ "[[Conocimiento]]",
194
+ "[[Pensamiento Estructurado]]",
195
+ "[[Hogar]]",
196
+ "[[Productividad]]",
197
+ "[[Exploración]]",
198
+ "[[Vínculos]]",
199
+ "[[Ejercicio]]",
200
+ "[[Energía Vital]]",
201
+ "[[Trabajo]]",
202
+ "[[Finanzas]]",
203
+ "[[Salud Mental]]",
204
+ "[[Creatividad]]"
205
+ ],
206
+ "description": "Área"
207
+ },
208
+ "description": "Áreas"
209
+ },
210
+ "color": {
211
+ "default": "#BE9207",
212
+ "description": "Color de la nota.",
213
+ "type": "string"
214
+ },
215
+ "icon": {
216
+ "default": "frame",
217
+ "description": "Icono de Lucide.",
218
+ "type": "string"
219
+ },
220
+ "cover": {
221
+ "type": "string",
222
+ "description": "Imagen de la pintura."
223
+ }
224
+ },
225
+ "required": [
226
+ "type",
227
+ "format",
228
+ "cover"
229
+ ],
230
+ "description": "Pintura"
231
+ }
232
+ }
233
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "title": {
6
+ "description": "Título de la pintura",
7
+ "type": "string"
8
+ },
9
+ "description": {
10
+ "description": "Descripción",
11
+ "type": "string"
12
+ },
13
+ "author": {
14
+ "description": "Autores",
15
+ "type": "array",
16
+ "items": {
17
+ "type": "string"
18
+ }
19
+ },
20
+ "published": {
21
+ "description": "Año de publicación",
22
+ "type": "string"
23
+ },
24
+ "collection": {
25
+ "description": "Colección",
26
+ "type": "string"
27
+ },
28
+ "position": {
29
+ "description": "Posición en la colección",
30
+ "type": "string"
31
+ },
32
+ "projects": {
33
+ "description": "Proyectos",
34
+ "type": "array",
35
+ "items": {
36
+ "type": "string"
37
+ }
38
+ },
39
+ "topics": {
40
+ "description": "Temas",
41
+ "type": "array",
42
+ "items": {
43
+ "type": "string"
44
+ }
45
+ },
46
+ "rating": {
47
+ "description": "Puntuación del artículo",
48
+ "type": "number"
49
+ },
50
+ "type": {
51
+ "type": "string",
52
+ "const": "[[Fuentes]]"
53
+ },
54
+ "format": {
55
+ "type": "string",
56
+ "const": "[[Pinturas]]"
57
+ },
58
+ "areas": {
59
+ "default": [
60
+ "[[Creatividad]]"
61
+ ],
62
+ "type": "array",
63
+ "items": {
64
+ "type": "string",
65
+ "enum": [
66
+ "[[Alimentación]]",
67
+ "[[Salud]]",
68
+ "[[Conocimiento]]",
69
+ "[[Pensamiento Estructurado]]",
70
+ "[[Hogar]]",
71
+ "[[Productividad]]",
72
+ "[[Exploración]]",
73
+ "[[Vínculos]]",
74
+ "[[Ejercicio]]",
75
+ "[[Energía Vital]]",
76
+ "[[Trabajo]]",
77
+ "[[Finanzas]]",
78
+ "[[Salud Mental]]",
79
+ "[[Creatividad]]"
80
+ ],
81
+ "description": "Área"
82
+ },
83
+ "description": "Áreas"
84
+ },
85
+ "color": {
86
+ "default": "#BE9207",
87
+ "description": "Color de la nota.",
88
+ "type": "string"
89
+ },
90
+ "icon": {
91
+ "default": "frame",
92
+ "description": "Icono de Lucide.",
93
+ "type": "string"
94
+ },
95
+ "cover": {
96
+ "type": "string",
97
+ "description": "Imagen de la pintura."
98
+ }
99
+ },
100
+ "required": [
101
+ "type",
102
+ "format",
103
+ "cover"
104
+ ],
105
+ "description": "Pintura"
106
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "title": {
6
+ "type": "string",
7
+ "description": "Título de la entrada de Wikipedia"
8
+ },
9
+ "description": {
10
+ "description": "Descripción",
11
+ "anyOf": [
12
+ {
13
+ "type": "string"
14
+ },
15
+ {
16
+ "type": "null"
17
+ }
18
+ ]
19
+ },
20
+ "excerpt": {
21
+ "description": "Extracto del artículo",
22
+ "type": "string"
23
+ },
24
+ "author": {
25
+ "description": "Autores",
26
+ "type": "array",
27
+ "items": {
28
+ "type": "string"
29
+ }
30
+ },
31
+ "published": {
32
+ "description": "Año de publicación",
33
+ "anyOf": [
34
+ {
35
+ "type": "string"
36
+ },
37
+ {
38
+ "type": "number"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ "required": [
44
+ "title"
45
+ ],
46
+ "description": "Entrada de Wikipedia: Datos obtenibles de catalogación"
47
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "status": {
6
+ "type": "string",
7
+ "enum": [
8
+ "Pendiente",
9
+ "En Proceso",
10
+ "Leído",
11
+ "Consolidado"
12
+ ],
13
+ "description": "Estado de lectura"
14
+ },
15
+ "projects": {
16
+ "description": "Proyectos",
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string"
20
+ }
21
+ },
22
+ "topics": {
23
+ "description": "Temas",
24
+ "type": "array",
25
+ "items": {
26
+ "type": "string"
27
+ }
28
+ },
29
+ "rating": {
30
+ "description": "Puntuación del artículo",
31
+ "type": "number"
32
+ }
33
+ },
34
+ "required": [
35
+ "status"
36
+ ],
37
+ "description": "Entrada de Wikipedia: Datos adicionales"
38
+ }