@segha/catalog 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +272 -4
- package/en/Areas.ts +24 -0
- package/en/Article/index.ts +29 -0
- package/en/Article/types.ts +9 -0
- package/en/Book/index.ts +33 -0
- package/en/Book/types.ts +9 -0
- package/en/Clothing/index.ts +9 -9
- package/en/Movie/index.ts +34 -0
- package/en/Movie/types.ts +9 -0
- package/en/Note.ts +13 -0
- package/en/index.ts +4 -1
- package/en/types.ts +7 -0
- package/es/Areas.ts +24 -0
- package/es/Article/index.ts +29 -0
- package/es/Article/types.ts +9 -0
- package/es/Book/index.ts +33 -0
- package/es/Book/types.ts +9 -0
- package/es/Clothing/index.ts +10 -10
- package/es/Movie/index.ts +34 -0
- package/es/Movie/types.ts +9 -0
- package/es/Note.ts +13 -0
- package/es/index.ts +4 -0
- package/es/types.ts +7 -0
- package/json-schemas/ArticleSchema.json +103 -0
- package/json-schemas/BookSchema.json +124 -0
- package/json-schemas/CatalogArticleSchema.json +35 -0
- package/json-schemas/CatalogBookSchema.json +44 -0
- package/json-schemas/CatalogMovieSchema.json +49 -0
- package/json-schemas/DetailedArticleSchema.json +42 -0
- package/json-schemas/DetailedBookSchema.json +49 -0
- package/json-schemas/DetailedMovieSchema.json +48 -0
- package/json-schemas/MetaArticleSchema.json +46 -0
- package/json-schemas/MetaBookSchema.json +51 -0
- package/json-schemas/MetaMovieSchema.json +51 -0
- package/json-schemas/MovieSchema.json +128 -0
- package/json-schemas/NoteSchema.json +745 -0
- package/json-schemas/en/Area.json +21 -0
- package/json-schemas/en/Areas.json +25 -0
- package/json-schemas/en/Article/ArticleSchema.json +103 -0
- package/json-schemas/en/Article/CatalogArticleSchema.json +35 -0
- package/json-schemas/en/Article/DetailedArticleSchema.json +42 -0
- package/json-schemas/en/Article/MetaArticleSchema.json +46 -0
- package/json-schemas/en/Article/index.json +233 -0
- package/json-schemas/en/ArticleSchema.json +103 -0
- package/json-schemas/en/Book/BookSchema.json +124 -0
- package/json-schemas/en/Book/CatalogBookSchema.json +44 -0
- package/json-schemas/en/Book/DetailedBookSchema.json +49 -0
- package/json-schemas/en/Book/MetaBookSchema.json +51 -0
- package/json-schemas/en/Book/index.json +275 -0
- package/json-schemas/en/BookSchema.json +124 -0
- package/json-schemas/en/CatalogArticleSchema.json +35 -0
- package/json-schemas/en/CatalogBookSchema.json +44 -0
- package/json-schemas/en/CatalogMovieSchema.json +49 -0
- package/json-schemas/en/DetailedArticleSchema.json +42 -0
- package/json-schemas/en/DetailedBookSchema.json +49 -0
- package/json-schemas/en/DetailedMovieSchema.json +48 -0
- package/json-schemas/en/FirstLevelArea.json +21 -0
- package/json-schemas/en/MetaArticleSchema.json +46 -0
- package/json-schemas/en/MetaBookSchema.json +51 -0
- package/json-schemas/en/MetaMovieSchema.json +51 -0
- package/json-schemas/en/Movie/CatalogMovieSchema.json +49 -0
- package/json-schemas/en/Movie/DetailedMovieSchema.json +48 -0
- package/json-schemas/en/Movie/MetaMovieSchema.json +51 -0
- package/json-schemas/en/Movie/MovieSchema.json +128 -0
- package/json-schemas/en/Movie/index.json +283 -0
- package/json-schemas/en/MovieSchema.json +128 -0
- package/json-schemas/en/NoteSchema.json +745 -0
- package/json-schemas/en/index.json +1582 -0
- package/json-schemas/es/Area.json +21 -0
- package/json-schemas/es/Areas.json +25 -0
- package/json-schemas/es/Article/ArticleSchema.json +103 -0
- package/json-schemas/es/Article/CatalogArticleSchema.json +35 -0
- package/json-schemas/es/Article/DetailedArticleSchema.json +42 -0
- package/json-schemas/es/Article/MetaArticleSchema.json +46 -0
- package/json-schemas/es/Article/index.json +233 -0
- package/json-schemas/es/ArticleSchema.json +103 -0
- package/json-schemas/es/Book/BookSchema.json +124 -0
- package/json-schemas/es/Book/CatalogBookSchema.json +44 -0
- package/json-schemas/es/Book/DetailedBookSchema.json +49 -0
- package/json-schemas/es/Book/MetaBookSchema.json +51 -0
- package/json-schemas/es/Book/index.json +275 -0
- package/json-schemas/es/BookSchema.json +124 -0
- package/json-schemas/es/CatalogArticleSchema.json +35 -0
- package/json-schemas/es/CatalogBookSchema.json +44 -0
- package/json-schemas/es/CatalogMovieSchema.json +49 -0
- package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -1
- package/json-schemas/es/Clothing/index.json +1 -1
- package/json-schemas/es/DetailedArticleSchema.json +42 -0
- package/json-schemas/es/DetailedBookSchema.json +49 -0
- package/json-schemas/es/DetailedClothingSchema.json +1 -1
- package/json-schemas/es/DetailedMovieSchema.json +48 -0
- package/json-schemas/es/FirstLevelArea.json +21 -0
- package/json-schemas/es/MetaArticleSchema.json +46 -0
- package/json-schemas/es/MetaBookSchema.json +51 -0
- package/json-schemas/es/MetaMovieSchema.json +51 -0
- package/json-schemas/es/Movie/CatalogMovieSchema.json +49 -0
- package/json-schemas/es/Movie/DetailedMovieSchema.json +48 -0
- package/json-schemas/es/Movie/MetaMovieSchema.json +51 -0
- package/json-schemas/es/Movie/MovieSchema.json +128 -0
- package/json-schemas/es/Movie/index.json +283 -0
- package/json-schemas/es/MovieSchema.json +128 -0
- package/json-schemas/es/NoteSchema.json +746 -0
- package/json-schemas/es/index.json +1584 -1
- package/json-schemas/index.json +1515 -0
- package/package.json +1 -1
|
@@ -0,0 +1,124 @@
|
|
|
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 del libro"
|
|
8
|
+
},
|
|
9
|
+
"subtitle": {
|
|
10
|
+
"description": "Subtítulo del libro",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"description": {
|
|
14
|
+
"description": "Descripción del libro",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"type": "array",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"description": "Autores"
|
|
23
|
+
},
|
|
24
|
+
"published": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"description": "Año de publicación"
|
|
27
|
+
},
|
|
28
|
+
"categories": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"description": "Géneros"
|
|
34
|
+
},
|
|
35
|
+
"status": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"enum": [
|
|
38
|
+
"Pendiente",
|
|
39
|
+
"En Proceso",
|
|
40
|
+
"Leído",
|
|
41
|
+
"Consolidado"
|
|
42
|
+
],
|
|
43
|
+
"description": "Estado de lectura"
|
|
44
|
+
},
|
|
45
|
+
"topics": {
|
|
46
|
+
"type": "array",
|
|
47
|
+
"items": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"description": "Temas"
|
|
51
|
+
},
|
|
52
|
+
"rating": {
|
|
53
|
+
"type": "number",
|
|
54
|
+
"description": "Puntuación del libro"
|
|
55
|
+
},
|
|
56
|
+
"online_rating": {
|
|
57
|
+
"type": "number",
|
|
58
|
+
"description": "Puntuación en línea"
|
|
59
|
+
},
|
|
60
|
+
"last_time_read": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "Última vez leído"
|
|
63
|
+
},
|
|
64
|
+
"times_read": {
|
|
65
|
+
"type": "number",
|
|
66
|
+
"description": "Veces leído"
|
|
67
|
+
},
|
|
68
|
+
"type": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"const": "[[Fuentes]]"
|
|
71
|
+
},
|
|
72
|
+
"format": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"const": "[[Libros]]"
|
|
75
|
+
},
|
|
76
|
+
"areas": {
|
|
77
|
+
"type": "array",
|
|
78
|
+
"items": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"const": "[[Knowledge]]"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"color": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"const": "#3171B2"
|
|
86
|
+
},
|
|
87
|
+
"icon": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"const": "book"
|
|
90
|
+
},
|
|
91
|
+
"cover": {
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
"url": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"description": "URL del libro en Amazon o similar"
|
|
97
|
+
},
|
|
98
|
+
"read_url": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"description": "URL de la lectura del libro"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"required": [
|
|
104
|
+
"title",
|
|
105
|
+
"author",
|
|
106
|
+
"published",
|
|
107
|
+
"categories",
|
|
108
|
+
"status",
|
|
109
|
+
"topics",
|
|
110
|
+
"rating",
|
|
111
|
+
"online_rating",
|
|
112
|
+
"last_time_read",
|
|
113
|
+
"times_read",
|
|
114
|
+
"type",
|
|
115
|
+
"format",
|
|
116
|
+
"areas",
|
|
117
|
+
"color",
|
|
118
|
+
"icon",
|
|
119
|
+
"url",
|
|
120
|
+
"read_url"
|
|
121
|
+
],
|
|
122
|
+
"additionalProperties": false,
|
|
123
|
+
"description": "Libro"
|
|
124
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
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 del libro"
|
|
8
|
+
},
|
|
9
|
+
"subtitle": {
|
|
10
|
+
"description": "Subtítulo del libro",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"description": {
|
|
14
|
+
"description": "Descripción del libro",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"type": "array",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"description": "Autores"
|
|
23
|
+
},
|
|
24
|
+
"published": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"description": "Año de publicación"
|
|
27
|
+
},
|
|
28
|
+
"categories": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"description": "Géneros"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"required": [
|
|
37
|
+
"title",
|
|
38
|
+
"author",
|
|
39
|
+
"published",
|
|
40
|
+
"categories"
|
|
41
|
+
],
|
|
42
|
+
"additionalProperties": false,
|
|
43
|
+
"description": "Libro: Datos obtenibles de catalogación"
|
|
44
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
"topics": {
|
|
16
|
+
"type": "array",
|
|
17
|
+
"items": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"description": "Temas"
|
|
21
|
+
},
|
|
22
|
+
"rating": {
|
|
23
|
+
"type": "number",
|
|
24
|
+
"description": "Puntuación del libro"
|
|
25
|
+
},
|
|
26
|
+
"online_rating": {
|
|
27
|
+
"type": "number",
|
|
28
|
+
"description": "Puntuación en línea"
|
|
29
|
+
},
|
|
30
|
+
"last_time_read": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "Última vez leído"
|
|
33
|
+
},
|
|
34
|
+
"times_read": {
|
|
35
|
+
"type": "number",
|
|
36
|
+
"description": "Veces leído"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"required": [
|
|
40
|
+
"status",
|
|
41
|
+
"topics",
|
|
42
|
+
"rating",
|
|
43
|
+
"online_rating",
|
|
44
|
+
"last_time_read",
|
|
45
|
+
"times_read"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false,
|
|
48
|
+
"description": "Libro: Datos adicionales"
|
|
49
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
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": "[[Libros]]"
|
|
12
|
+
},
|
|
13
|
+
"areas": {
|
|
14
|
+
"type": "array",
|
|
15
|
+
"items": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"const": "[[Knowledge]]"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"color": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"const": "#3171B2"
|
|
23
|
+
},
|
|
24
|
+
"icon": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"const": "book"
|
|
27
|
+
},
|
|
28
|
+
"cover": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"url": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "URL del libro en Amazon o similar"
|
|
34
|
+
},
|
|
35
|
+
"read_url": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "URL de la lectura del libro"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"required": [
|
|
41
|
+
"type",
|
|
42
|
+
"format",
|
|
43
|
+
"areas",
|
|
44
|
+
"color",
|
|
45
|
+
"icon",
|
|
46
|
+
"url",
|
|
47
|
+
"read_url"
|
|
48
|
+
],
|
|
49
|
+
"additionalProperties": false,
|
|
50
|
+
"description": "Libro: Metadatos de Nota"
|
|
51
|
+
}
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "@segha/catalog/es/Book",
|
|
4
|
+
"description": "Schemas for Petroglyph Catalog",
|
|
5
|
+
"$defs": {
|
|
6
|
+
"BookSchema": {
|
|
7
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"title": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "Título del libro"
|
|
13
|
+
},
|
|
14
|
+
"subtitle": {
|
|
15
|
+
"description": "Subtítulo del libro",
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"description": {
|
|
19
|
+
"description": "Descripción del libro",
|
|
20
|
+
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"author": {
|
|
23
|
+
"type": "array",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"description": "Autores"
|
|
28
|
+
},
|
|
29
|
+
"published": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "Año de publicación"
|
|
32
|
+
},
|
|
33
|
+
"categories": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
"description": "Géneros"
|
|
39
|
+
},
|
|
40
|
+
"status": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"enum": [
|
|
43
|
+
"Pendiente",
|
|
44
|
+
"En Proceso",
|
|
45
|
+
"Leído",
|
|
46
|
+
"Consolidado"
|
|
47
|
+
],
|
|
48
|
+
"description": "Estado de lectura"
|
|
49
|
+
},
|
|
50
|
+
"topics": {
|
|
51
|
+
"type": "array",
|
|
52
|
+
"items": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"description": "Temas"
|
|
56
|
+
},
|
|
57
|
+
"rating": {
|
|
58
|
+
"type": "number",
|
|
59
|
+
"description": "Puntuación del libro"
|
|
60
|
+
},
|
|
61
|
+
"online_rating": {
|
|
62
|
+
"type": "number",
|
|
63
|
+
"description": "Puntuación en línea"
|
|
64
|
+
},
|
|
65
|
+
"last_time_read": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"description": "Última vez leído"
|
|
68
|
+
},
|
|
69
|
+
"times_read": {
|
|
70
|
+
"type": "number",
|
|
71
|
+
"description": "Veces leído"
|
|
72
|
+
},
|
|
73
|
+
"type": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"const": "[[Fuentes]]"
|
|
76
|
+
},
|
|
77
|
+
"format": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"const": "[[Libros]]"
|
|
80
|
+
},
|
|
81
|
+
"areas": {
|
|
82
|
+
"type": "array",
|
|
83
|
+
"items": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"const": "[[Knowledge]]"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"color": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"const": "#3171B2"
|
|
91
|
+
},
|
|
92
|
+
"icon": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"const": "book"
|
|
95
|
+
},
|
|
96
|
+
"cover": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"url": {
|
|
100
|
+
"type": "string",
|
|
101
|
+
"description": "URL del libro en Amazon o similar"
|
|
102
|
+
},
|
|
103
|
+
"read_url": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"description": "URL de la lectura del libro"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"required": [
|
|
109
|
+
"title",
|
|
110
|
+
"author",
|
|
111
|
+
"published",
|
|
112
|
+
"categories",
|
|
113
|
+
"status",
|
|
114
|
+
"topics",
|
|
115
|
+
"rating",
|
|
116
|
+
"online_rating",
|
|
117
|
+
"last_time_read",
|
|
118
|
+
"times_read",
|
|
119
|
+
"type",
|
|
120
|
+
"format",
|
|
121
|
+
"areas",
|
|
122
|
+
"color",
|
|
123
|
+
"icon",
|
|
124
|
+
"url",
|
|
125
|
+
"read_url"
|
|
126
|
+
],
|
|
127
|
+
"additionalProperties": false,
|
|
128
|
+
"description": "Libro"
|
|
129
|
+
},
|
|
130
|
+
"CatalogBookSchema": {
|
|
131
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"title": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "Título del libro"
|
|
137
|
+
},
|
|
138
|
+
"subtitle": {
|
|
139
|
+
"description": "Subtítulo del libro",
|
|
140
|
+
"type": "string"
|
|
141
|
+
},
|
|
142
|
+
"description": {
|
|
143
|
+
"description": "Descripción del libro",
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
"author": {
|
|
147
|
+
"type": "array",
|
|
148
|
+
"items": {
|
|
149
|
+
"type": "string"
|
|
150
|
+
},
|
|
151
|
+
"description": "Autores"
|
|
152
|
+
},
|
|
153
|
+
"published": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"description": "Año de publicación"
|
|
156
|
+
},
|
|
157
|
+
"categories": {
|
|
158
|
+
"type": "array",
|
|
159
|
+
"items": {
|
|
160
|
+
"type": "string"
|
|
161
|
+
},
|
|
162
|
+
"description": "Géneros"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"required": [
|
|
166
|
+
"title",
|
|
167
|
+
"author",
|
|
168
|
+
"published",
|
|
169
|
+
"categories"
|
|
170
|
+
],
|
|
171
|
+
"additionalProperties": false,
|
|
172
|
+
"description": "Libro: Datos obtenibles de catalogación"
|
|
173
|
+
},
|
|
174
|
+
"DetailedBookSchema": {
|
|
175
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
176
|
+
"type": "object",
|
|
177
|
+
"properties": {
|
|
178
|
+
"status": {
|
|
179
|
+
"type": "string",
|
|
180
|
+
"enum": [
|
|
181
|
+
"Pendiente",
|
|
182
|
+
"En Proceso",
|
|
183
|
+
"Leído",
|
|
184
|
+
"Consolidado"
|
|
185
|
+
],
|
|
186
|
+
"description": "Estado de lectura"
|
|
187
|
+
},
|
|
188
|
+
"topics": {
|
|
189
|
+
"type": "array",
|
|
190
|
+
"items": {
|
|
191
|
+
"type": "string"
|
|
192
|
+
},
|
|
193
|
+
"description": "Temas"
|
|
194
|
+
},
|
|
195
|
+
"rating": {
|
|
196
|
+
"type": "number",
|
|
197
|
+
"description": "Puntuación del libro"
|
|
198
|
+
},
|
|
199
|
+
"online_rating": {
|
|
200
|
+
"type": "number",
|
|
201
|
+
"description": "Puntuación en línea"
|
|
202
|
+
},
|
|
203
|
+
"last_time_read": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"description": "Última vez leído"
|
|
206
|
+
},
|
|
207
|
+
"times_read": {
|
|
208
|
+
"type": "number",
|
|
209
|
+
"description": "Veces leído"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"required": [
|
|
213
|
+
"status",
|
|
214
|
+
"topics",
|
|
215
|
+
"rating",
|
|
216
|
+
"online_rating",
|
|
217
|
+
"last_time_read",
|
|
218
|
+
"times_read"
|
|
219
|
+
],
|
|
220
|
+
"additionalProperties": false,
|
|
221
|
+
"description": "Libro: Datos adicionales"
|
|
222
|
+
},
|
|
223
|
+
"MetaBookSchema": {
|
|
224
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
225
|
+
"type": "object",
|
|
226
|
+
"properties": {
|
|
227
|
+
"type": {
|
|
228
|
+
"type": "string",
|
|
229
|
+
"const": "[[Fuentes]]"
|
|
230
|
+
},
|
|
231
|
+
"format": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"const": "[[Libros]]"
|
|
234
|
+
},
|
|
235
|
+
"areas": {
|
|
236
|
+
"type": "array",
|
|
237
|
+
"items": {
|
|
238
|
+
"type": "string",
|
|
239
|
+
"const": "[[Knowledge]]"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"color": {
|
|
243
|
+
"type": "string",
|
|
244
|
+
"const": "#3171B2"
|
|
245
|
+
},
|
|
246
|
+
"icon": {
|
|
247
|
+
"type": "string",
|
|
248
|
+
"const": "book"
|
|
249
|
+
},
|
|
250
|
+
"cover": {
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
"url": {
|
|
254
|
+
"type": "string",
|
|
255
|
+
"description": "URL del libro en Amazon o similar"
|
|
256
|
+
},
|
|
257
|
+
"read_url": {
|
|
258
|
+
"type": "string",
|
|
259
|
+
"description": "URL de la lectura del libro"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"required": [
|
|
263
|
+
"type",
|
|
264
|
+
"format",
|
|
265
|
+
"areas",
|
|
266
|
+
"color",
|
|
267
|
+
"icon",
|
|
268
|
+
"url",
|
|
269
|
+
"read_url"
|
|
270
|
+
],
|
|
271
|
+
"additionalProperties": false,
|
|
272
|
+
"description": "Libro: Metadatos de Nota"
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
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 del libro"
|
|
8
|
+
},
|
|
9
|
+
"subtitle": {
|
|
10
|
+
"description": "Subtítulo del libro",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"description": {
|
|
14
|
+
"description": "Descripción del libro",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"type": "array",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"description": "Autores"
|
|
23
|
+
},
|
|
24
|
+
"published": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"description": "Año de publicación"
|
|
27
|
+
},
|
|
28
|
+
"categories": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"description": "Géneros"
|
|
34
|
+
},
|
|
35
|
+
"status": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"enum": [
|
|
38
|
+
"Pendiente",
|
|
39
|
+
"En Proceso",
|
|
40
|
+
"Leído",
|
|
41
|
+
"Consolidado"
|
|
42
|
+
],
|
|
43
|
+
"description": "Estado de lectura"
|
|
44
|
+
},
|
|
45
|
+
"topics": {
|
|
46
|
+
"type": "array",
|
|
47
|
+
"items": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"description": "Temas"
|
|
51
|
+
},
|
|
52
|
+
"rating": {
|
|
53
|
+
"type": "number",
|
|
54
|
+
"description": "Puntuación del libro"
|
|
55
|
+
},
|
|
56
|
+
"online_rating": {
|
|
57
|
+
"type": "number",
|
|
58
|
+
"description": "Puntuación en línea"
|
|
59
|
+
},
|
|
60
|
+
"last_time_read": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "Última vez leído"
|
|
63
|
+
},
|
|
64
|
+
"times_read": {
|
|
65
|
+
"type": "number",
|
|
66
|
+
"description": "Veces leído"
|
|
67
|
+
},
|
|
68
|
+
"type": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"const": "[[Fuentes]]"
|
|
71
|
+
},
|
|
72
|
+
"format": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"const": "[[Libros]]"
|
|
75
|
+
},
|
|
76
|
+
"areas": {
|
|
77
|
+
"type": "array",
|
|
78
|
+
"items": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"const": "[[Knowledge]]"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"color": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"const": "#3171B2"
|
|
86
|
+
},
|
|
87
|
+
"icon": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"const": "book"
|
|
90
|
+
},
|
|
91
|
+
"cover": {
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
"url": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"description": "URL del libro en Amazon o similar"
|
|
97
|
+
},
|
|
98
|
+
"read_url": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"description": "URL de la lectura del libro"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"required": [
|
|
104
|
+
"title",
|
|
105
|
+
"author",
|
|
106
|
+
"published",
|
|
107
|
+
"categories",
|
|
108
|
+
"status",
|
|
109
|
+
"topics",
|
|
110
|
+
"rating",
|
|
111
|
+
"online_rating",
|
|
112
|
+
"last_time_read",
|
|
113
|
+
"times_read",
|
|
114
|
+
"type",
|
|
115
|
+
"format",
|
|
116
|
+
"areas",
|
|
117
|
+
"color",
|
|
118
|
+
"icon",
|
|
119
|
+
"url",
|
|
120
|
+
"read_url"
|
|
121
|
+
],
|
|
122
|
+
"additionalProperties": false,
|
|
123
|
+
"description": "Libro"
|
|
124
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 del artículo"
|
|
8
|
+
},
|
|
9
|
+
"description": {
|
|
10
|
+
"description": "Descripción",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"excerpt": {
|
|
14
|
+
"description": "Extracto del artículo",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"type": "array",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"description": "Autores"
|
|
23
|
+
},
|
|
24
|
+
"published": {
|
|
25
|
+
"description": "Año de publicación",
|
|
26
|
+
"type": "string"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"required": [
|
|
30
|
+
"title",
|
|
31
|
+
"author"
|
|
32
|
+
],
|
|
33
|
+
"additionalProperties": false,
|
|
34
|
+
"description": "Artículo: Datos obtenibles de catalogación"
|
|
35
|
+
}
|