@segha/catalog 4.0.0 → 4.1.1
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 +30 -0
- package/README.md +0 -6
- package/en/index.ts +2 -0
- package/es/Core/Common.ts +2 -2
- package/es/index.ts +2 -0
- package/index.ts +0 -2
- package/json-schemas/es/Article/ArticleSchema.json +1 -2
- package/json-schemas/es/Article/index.json +1 -2
- package/json-schemas/es/ArticleSchema.json +1 -2
- package/json-schemas/es/Book/BookSchema.json +1 -2
- package/json-schemas/es/Book/index.json +1 -2
- package/json-schemas/es/BookSchema.json +1 -2
- package/json-schemas/es/Clothing/ClothingSchema.json +1 -2
- package/json-schemas/es/Clothing/index.json +1 -2
- package/json-schemas/es/ClothingSchema.json +1 -2
- package/json-schemas/es/Core/CommonSchema.json +2 -3
- package/json-schemas/es/Core/ResourceSchema.json +1 -2
- package/json-schemas/es/Core/SourceSchema.json +1 -2
- package/json-schemas/es/Core/index.json +4 -7
- package/json-schemas/es/EncyclopediaEntry/EncyclopediaEntrySchema.json +1 -2
- package/json-schemas/es/EncyclopediaEntry/WikipediaEntrySchema.json +1 -2
- package/json-schemas/es/EncyclopediaEntry/index.json +2 -4
- package/json-schemas/es/EncyclopediaEntrySchema.json +1 -2
- package/json-schemas/es/Movie/MovieSchema.json +1 -2
- package/json-schemas/es/Movie/index.json +1 -2
- package/json-schemas/es/MovieSchema.json +1 -2
- package/json-schemas/es/NoteSchema.json +7 -14
- package/json-schemas/es/Painting/PaintingSchema.json +1 -2
- package/json-schemas/es/Painting/index.json +1 -2
- package/json-schemas/es/PaintingSchema.json +1 -2
- package/json-schemas/es/Video/VideoSchema.json +1 -2
- package/json-schemas/es/Video/VimeoSchema.json +1 -2
- package/json-schemas/es/Video/YoutubeSchema.json +1 -2
- package/json-schemas/es/Video/index.json +3 -6
- package/json-schemas/es/VideoSchema.json +1 -2
- package/json-schemas/es/VimeoSchema.json +1 -2
- package/json-schemas/es/WikipediaEntrySchema.json +1 -2
- package/json-schemas/es/YoutubeSchema.json +1 -2
- package/json-schemas/es/index.json +17 -34
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,36 @@ All notable changes to @segha/catalog will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [4.1.0] - 2026-02-08
|
|
9
|
+
|
|
10
|
+
### Spanish (es)
|
|
11
|
+
|
|
12
|
+
#### Added
|
|
13
|
+
|
|
14
|
+
- **BREAKING** Property `topics` in `ArticleSchema` changed from required to optional
|
|
15
|
+
- **BREAKING** Property `topics` in `BookSchema` changed from required to optional
|
|
16
|
+
- **BREAKING** Property `topics` in `ClothingSchema` changed from required to optional
|
|
17
|
+
- **BREAKING** Property `topics` in `EncyclopediaEntrySchema` changed from required to optional
|
|
18
|
+
- **BREAKING** Property `topics` in `MovieSchema` changed from required to optional
|
|
19
|
+
- **BREAKING** Property `topics` in `PaintingSchema` changed from required to optional
|
|
20
|
+
- **BREAKING** Property `topics` in `VideoSchema` changed from required to optional
|
|
21
|
+
- **BREAKING** Property `topics` in `VimeoSchema` changed from required to optional
|
|
22
|
+
- **BREAKING** Property `topics` in `WikipediaEntrySchema` changed from required to optional
|
|
23
|
+
- **BREAKING** Property `topics` in `YoutubeSchema` changed from required to optional
|
|
24
|
+
|
|
25
|
+
#### Changed
|
|
26
|
+
|
|
27
|
+
- Property `topics` in `ArticleSchema` was modified
|
|
28
|
+
- Property `topics` in `BookSchema` was modified
|
|
29
|
+
- Property `topics` in `ClothingSchema` was modified
|
|
30
|
+
- Property `topics` in `EncyclopediaEntrySchema` was modified
|
|
31
|
+
- Property `topics` in `MovieSchema` was modified
|
|
32
|
+
- Property `topics` in `PaintingSchema` was modified
|
|
33
|
+
- Property `topics` in `VideoSchema` was modified
|
|
34
|
+
- Property `topics` in `VimeoSchema` was modified
|
|
35
|
+
- Property `topics` in `WikipediaEntrySchema` was modified
|
|
36
|
+
- Property `topics` in `YoutubeSchema` was modified
|
|
37
|
+
|
|
8
38
|
## [4.0.0] - 2026-02-08
|
|
9
39
|
|
|
10
40
|
### Spanish (es)
|
package/README.md
CHANGED
|
@@ -27,12 +27,6 @@ const result = ArticleSchema.parse(data);
|
|
|
27
27
|
type Article = z.infer<typeof ArticleSchema>;
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
You can also import specific submodules:
|
|
31
|
-
|
|
32
|
-
```typescript
|
|
33
|
-
import { MetaClothingSchema, CatalogClothingSchema, DetailedClothingSchema } from '@segha/catalog/en/clothing';
|
|
34
|
-
```
|
|
35
|
-
|
|
36
30
|
### Schemas
|
|
37
31
|
|
|
38
32
|
- [Article](#article)
|
package/en/index.ts
CHANGED
package/es/Core/Common.ts
CHANGED
|
@@ -29,8 +29,8 @@ export const CommonSchema = z.object({
|
|
|
29
29
|
topics: z.array(z.union([
|
|
30
30
|
Wikilink,
|
|
31
31
|
z.string(),
|
|
32
|
-
]).optional()
|
|
33
|
-
.describe('Temas: Wikilink o texto libre')
|
|
32
|
+
])).optional()
|
|
33
|
+
.describe('Temas: Wikilink o texto libre'),
|
|
34
34
|
status: z.string()
|
|
35
35
|
.optional()
|
|
36
36
|
.describe('Estado de la nota.'),
|
package/es/index.ts
CHANGED
package/index.ts
CHANGED
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -236,7 +236,6 @@
|
|
|
236
236
|
}
|
|
237
237
|
},
|
|
238
238
|
"required": [
|
|
239
|
-
"topics",
|
|
240
239
|
"url",
|
|
241
240
|
"title"
|
|
242
241
|
],
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
"topics": {
|
|
101
|
+
"description": "Temas: Wikilink o texto libre",
|
|
101
102
|
"type": "array",
|
|
102
103
|
"items": {
|
|
103
|
-
"description": "Temas: Wikilink o texto libre",
|
|
104
104
|
"anyOf": [
|
|
105
105
|
{
|
|
106
106
|
"type": "string",
|
|
@@ -241,7 +241,6 @@
|
|
|
241
241
|
}
|
|
242
242
|
},
|
|
243
243
|
"required": [
|
|
244
|
-
"topics",
|
|
245
244
|
"url",
|
|
246
245
|
"title"
|
|
247
246
|
],
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -236,7 +236,6 @@
|
|
|
236
236
|
}
|
|
237
237
|
},
|
|
238
238
|
"required": [
|
|
239
|
-
"topics",
|
|
240
239
|
"url",
|
|
241
240
|
"title"
|
|
242
241
|
],
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -277,7 +277,6 @@
|
|
|
277
277
|
}
|
|
278
278
|
},
|
|
279
279
|
"required": [
|
|
280
|
-
"topics",
|
|
281
280
|
"title"
|
|
282
281
|
],
|
|
283
282
|
"description": "Libro"
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
"topics": {
|
|
101
|
+
"description": "Temas: Wikilink o texto libre",
|
|
101
102
|
"type": "array",
|
|
102
103
|
"items": {
|
|
103
|
-
"description": "Temas: Wikilink o texto libre",
|
|
104
104
|
"anyOf": [
|
|
105
105
|
{
|
|
106
106
|
"type": "string",
|
|
@@ -282,7 +282,6 @@
|
|
|
282
282
|
}
|
|
283
283
|
},
|
|
284
284
|
"required": [
|
|
285
|
-
"topics",
|
|
286
285
|
"title"
|
|
287
286
|
],
|
|
288
287
|
"description": "Libro"
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -277,7 +277,6 @@
|
|
|
277
277
|
}
|
|
278
278
|
},
|
|
279
279
|
"required": [
|
|
280
|
-
"topics",
|
|
281
280
|
"title"
|
|
282
281
|
],
|
|
283
282
|
"description": "Libro"
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -510,7 +510,6 @@
|
|
|
510
510
|
}
|
|
511
511
|
},
|
|
512
512
|
"required": [
|
|
513
|
-
"topics",
|
|
514
513
|
"name",
|
|
515
514
|
"garment",
|
|
516
515
|
"slot",
|
|
@@ -891,9 +891,9 @@
|
|
|
891
891
|
}
|
|
892
892
|
},
|
|
893
893
|
"topics": {
|
|
894
|
+
"description": "Temas: Wikilink o texto libre",
|
|
894
895
|
"type": "array",
|
|
895
896
|
"items": {
|
|
896
|
-
"description": "Temas: Wikilink o texto libre",
|
|
897
897
|
"anyOf": [
|
|
898
898
|
{
|
|
899
899
|
"type": "string",
|
|
@@ -1308,7 +1308,6 @@
|
|
|
1308
1308
|
}
|
|
1309
1309
|
},
|
|
1310
1310
|
"required": [
|
|
1311
|
-
"topics",
|
|
1312
1311
|
"name",
|
|
1313
1312
|
"garment",
|
|
1314
1313
|
"slot",
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -510,7 +510,6 @@
|
|
|
510
510
|
}
|
|
511
511
|
},
|
|
512
512
|
"required": [
|
|
513
|
-
"topics",
|
|
514
513
|
"name",
|
|
515
514
|
"garment",
|
|
516
515
|
"slot",
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
91
|
"topics": {
|
|
92
|
+
"description": "Temas: Wikilink o texto libre",
|
|
92
93
|
"type": "array",
|
|
93
94
|
"items": {
|
|
94
|
-
"description": "Temas: Wikilink o texto libre",
|
|
95
95
|
"anyOf": [
|
|
96
96
|
{
|
|
97
97
|
"type": "string",
|
|
@@ -158,8 +158,7 @@
|
|
|
158
158
|
},
|
|
159
159
|
"required": [
|
|
160
160
|
"type",
|
|
161
|
-
"areas"
|
|
162
|
-
"topics"
|
|
161
|
+
"areas"
|
|
163
162
|
],
|
|
164
163
|
"description": "Notas"
|
|
165
164
|
}
|
|
@@ -81,9 +81,9 @@
|
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"topics": {
|
|
84
|
+
"description": "Temas: Wikilink o texto libre",
|
|
84
85
|
"type": "array",
|
|
85
86
|
"items": {
|
|
86
|
-
"description": "Temas: Wikilink o texto libre",
|
|
87
87
|
"anyOf": [
|
|
88
88
|
{
|
|
89
89
|
"type": "string",
|
|
@@ -164,7 +164,6 @@
|
|
|
164
164
|
},
|
|
165
165
|
"required": [
|
|
166
166
|
"areas",
|
|
167
|
-
"topics",
|
|
168
167
|
"subtype"
|
|
169
168
|
],
|
|
170
169
|
"description": "Fuentes Bibliográficas"
|
|
@@ -81,9 +81,9 @@
|
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"topics": {
|
|
84
|
+
"description": "Temas: Wikilink o texto libre",
|
|
84
85
|
"type": "array",
|
|
85
86
|
"items": {
|
|
86
|
-
"description": "Temas: Wikilink o texto libre",
|
|
87
87
|
"anyOf": [
|
|
88
88
|
{
|
|
89
89
|
"type": "string",
|
|
@@ -202,7 +202,6 @@
|
|
|
202
202
|
},
|
|
203
203
|
"required": [
|
|
204
204
|
"areas",
|
|
205
|
-
"topics",
|
|
206
205
|
"format"
|
|
207
206
|
],
|
|
208
207
|
"description": "Fuentes Bibliográficas"
|
|
@@ -245,9 +245,9 @@
|
|
|
245
245
|
}
|
|
246
246
|
},
|
|
247
247
|
"topics": {
|
|
248
|
+
"description": "Temas: Wikilink o texto libre",
|
|
248
249
|
"type": "array",
|
|
249
250
|
"items": {
|
|
250
|
-
"description": "Temas: Wikilink o texto libre",
|
|
251
251
|
"anyOf": [
|
|
252
252
|
{
|
|
253
253
|
"type": "string",
|
|
@@ -314,8 +314,7 @@
|
|
|
314
314
|
},
|
|
315
315
|
"required": [
|
|
316
316
|
"type",
|
|
317
|
-
"areas"
|
|
318
|
-
"topics"
|
|
317
|
+
"areas"
|
|
319
318
|
],
|
|
320
319
|
"description": "Notas"
|
|
321
320
|
},
|
|
@@ -534,9 +533,9 @@
|
|
|
534
533
|
}
|
|
535
534
|
},
|
|
536
535
|
"topics": {
|
|
536
|
+
"description": "Temas: Wikilink o texto libre",
|
|
537
537
|
"type": "array",
|
|
538
538
|
"items": {
|
|
539
|
-
"description": "Temas: Wikilink o texto libre",
|
|
540
539
|
"anyOf": [
|
|
541
540
|
{
|
|
542
541
|
"type": "string",
|
|
@@ -617,7 +616,6 @@
|
|
|
617
616
|
},
|
|
618
617
|
"required": [
|
|
619
618
|
"areas",
|
|
620
|
-
"topics",
|
|
621
619
|
"subtype"
|
|
622
620
|
],
|
|
623
621
|
"description": "Fuentes Bibliográficas"
|
|
@@ -716,9 +714,9 @@
|
|
|
716
714
|
}
|
|
717
715
|
},
|
|
718
716
|
"topics": {
|
|
717
|
+
"description": "Temas: Wikilink o texto libre",
|
|
719
718
|
"type": "array",
|
|
720
719
|
"items": {
|
|
721
|
-
"description": "Temas: Wikilink o texto libre",
|
|
722
720
|
"anyOf": [
|
|
723
721
|
{
|
|
724
722
|
"type": "string",
|
|
@@ -837,7 +835,6 @@
|
|
|
837
835
|
},
|
|
838
836
|
"required": [
|
|
839
837
|
"areas",
|
|
840
|
-
"topics",
|
|
841
838
|
"format"
|
|
842
839
|
],
|
|
843
840
|
"description": "Fuentes Bibliográficas"
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"topics": {
|
|
104
|
+
"description": "Temas: Wikilink o texto libre",
|
|
104
105
|
"type": "array",
|
|
105
106
|
"items": {
|
|
106
|
-
"description": "Temas: Wikilink o texto libre",
|
|
107
107
|
"anyOf": [
|
|
108
108
|
{
|
|
109
109
|
"type": "string",
|
|
@@ -244,7 +244,6 @@
|
|
|
244
244
|
}
|
|
245
245
|
},
|
|
246
246
|
"required": [
|
|
247
|
-
"topics",
|
|
248
247
|
"url",
|
|
249
248
|
"title"
|
|
250
249
|
],
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"topics": {
|
|
104
|
+
"description": "Temas: Wikilink o texto libre",
|
|
104
105
|
"type": "array",
|
|
105
106
|
"items": {
|
|
106
|
-
"description": "Temas: Wikilink o texto libre",
|
|
107
107
|
"anyOf": [
|
|
108
108
|
{
|
|
109
109
|
"type": "string",
|
|
@@ -248,7 +248,6 @@
|
|
|
248
248
|
}
|
|
249
249
|
},
|
|
250
250
|
"required": [
|
|
251
|
-
"topics",
|
|
252
251
|
"url",
|
|
253
252
|
"title",
|
|
254
253
|
"platform"
|
|
@@ -106,9 +106,9 @@
|
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
"topics": {
|
|
109
|
+
"description": "Temas: Wikilink o texto libre",
|
|
109
110
|
"type": "array",
|
|
110
111
|
"items": {
|
|
111
|
-
"description": "Temas: Wikilink o texto libre",
|
|
112
112
|
"anyOf": [
|
|
113
113
|
{
|
|
114
114
|
"type": "string",
|
|
@@ -249,7 +249,6 @@
|
|
|
249
249
|
}
|
|
250
250
|
},
|
|
251
251
|
"required": [
|
|
252
|
-
"topics",
|
|
253
252
|
"url",
|
|
254
253
|
"title"
|
|
255
254
|
],
|
|
@@ -358,9 +357,9 @@
|
|
|
358
357
|
}
|
|
359
358
|
},
|
|
360
359
|
"topics": {
|
|
360
|
+
"description": "Temas: Wikilink o texto libre",
|
|
361
361
|
"type": "array",
|
|
362
362
|
"items": {
|
|
363
|
-
"description": "Temas: Wikilink o texto libre",
|
|
364
363
|
"anyOf": [
|
|
365
364
|
{
|
|
366
365
|
"type": "string",
|
|
@@ -505,7 +504,6 @@
|
|
|
505
504
|
}
|
|
506
505
|
},
|
|
507
506
|
"required": [
|
|
508
|
-
"topics",
|
|
509
507
|
"url",
|
|
510
508
|
"title",
|
|
511
509
|
"platform"
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"topics": {
|
|
104
|
+
"description": "Temas: Wikilink o texto libre",
|
|
104
105
|
"type": "array",
|
|
105
106
|
"items": {
|
|
106
|
-
"description": "Temas: Wikilink o texto libre",
|
|
107
107
|
"anyOf": [
|
|
108
108
|
{
|
|
109
109
|
"type": "string",
|
|
@@ -244,7 +244,6 @@
|
|
|
244
244
|
}
|
|
245
245
|
},
|
|
246
246
|
"required": [
|
|
247
|
-
"topics",
|
|
248
247
|
"url",
|
|
249
248
|
"title"
|
|
250
249
|
],
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -273,7 +273,6 @@
|
|
|
273
273
|
}
|
|
274
274
|
},
|
|
275
275
|
"required": [
|
|
276
|
-
"topics",
|
|
277
276
|
"url",
|
|
278
277
|
"title"
|
|
279
278
|
],
|
|
@@ -103,9 +103,9 @@
|
|
|
103
103
|
}
|
|
104
104
|
},
|
|
105
105
|
"topics": {
|
|
106
|
+
"description": "Temas: Wikilink o texto libre",
|
|
106
107
|
"type": "array",
|
|
107
108
|
"items": {
|
|
108
|
-
"description": "Temas: Wikilink o texto libre",
|
|
109
109
|
"anyOf": [
|
|
110
110
|
{
|
|
111
111
|
"type": "string",
|
|
@@ -283,7 +283,6 @@
|
|
|
283
283
|
}
|
|
284
284
|
},
|
|
285
285
|
"required": [
|
|
286
|
-
"topics",
|
|
287
286
|
"url",
|
|
288
287
|
"title"
|
|
289
288
|
],
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -273,7 +273,6 @@
|
|
|
273
273
|
}
|
|
274
274
|
},
|
|
275
275
|
"required": [
|
|
276
|
-
"topics",
|
|
277
276
|
"url",
|
|
278
277
|
"title"
|
|
279
278
|
],
|
|
@@ -95,9 +95,9 @@
|
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
"topics": {
|
|
98
|
+
"description": "Temas: Wikilink o texto libre",
|
|
98
99
|
"type": "array",
|
|
99
100
|
"items": {
|
|
100
|
-
"description": "Temas: Wikilink o texto libre",
|
|
101
101
|
"anyOf": [
|
|
102
102
|
{
|
|
103
103
|
"type": "string",
|
|
@@ -238,7 +238,6 @@
|
|
|
238
238
|
}
|
|
239
239
|
},
|
|
240
240
|
"required": [
|
|
241
|
-
"topics",
|
|
242
241
|
"url",
|
|
243
242
|
"title"
|
|
244
243
|
],
|
|
@@ -338,9 +337,9 @@
|
|
|
338
337
|
}
|
|
339
338
|
},
|
|
340
339
|
"topics": {
|
|
340
|
+
"description": "Temas: Wikilink o texto libre",
|
|
341
341
|
"type": "array",
|
|
342
342
|
"items": {
|
|
343
|
-
"description": "Temas: Wikilink o texto libre",
|
|
344
343
|
"anyOf": [
|
|
345
344
|
{
|
|
346
345
|
"type": "string",
|
|
@@ -522,7 +521,6 @@
|
|
|
522
521
|
}
|
|
523
522
|
},
|
|
524
523
|
"required": [
|
|
525
|
-
"topics",
|
|
526
524
|
"title"
|
|
527
525
|
],
|
|
528
526
|
"description": "Libro"
|
|
@@ -621,9 +619,9 @@
|
|
|
621
619
|
}
|
|
622
620
|
},
|
|
623
621
|
"topics": {
|
|
622
|
+
"description": "Temas: Wikilink o texto libre",
|
|
624
623
|
"type": "array",
|
|
625
624
|
"items": {
|
|
626
|
-
"description": "Temas: Wikilink o texto libre",
|
|
627
625
|
"anyOf": [
|
|
628
626
|
{
|
|
629
627
|
"type": "string",
|
|
@@ -1038,7 +1036,6 @@
|
|
|
1038
1036
|
}
|
|
1039
1037
|
},
|
|
1040
1038
|
"required": [
|
|
1041
|
-
"topics",
|
|
1042
1039
|
"name",
|
|
1043
1040
|
"garment",
|
|
1044
1041
|
"slot",
|
|
@@ -1149,9 +1146,9 @@
|
|
|
1149
1146
|
}
|
|
1150
1147
|
},
|
|
1151
1148
|
"topics": {
|
|
1149
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1152
1150
|
"type": "array",
|
|
1153
1151
|
"items": {
|
|
1154
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1155
1152
|
"anyOf": [
|
|
1156
1153
|
{
|
|
1157
1154
|
"type": "string",
|
|
@@ -1292,7 +1289,6 @@
|
|
|
1292
1289
|
}
|
|
1293
1290
|
},
|
|
1294
1291
|
"required": [
|
|
1295
|
-
"topics",
|
|
1296
1292
|
"url",
|
|
1297
1293
|
"title"
|
|
1298
1294
|
],
|
|
@@ -1392,9 +1388,9 @@
|
|
|
1392
1388
|
}
|
|
1393
1389
|
},
|
|
1394
1390
|
"topics": {
|
|
1391
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1395
1392
|
"type": "array",
|
|
1396
1393
|
"items": {
|
|
1397
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1398
1394
|
"anyOf": [
|
|
1399
1395
|
{
|
|
1400
1396
|
"type": "string",
|
|
@@ -1572,7 +1568,6 @@
|
|
|
1572
1568
|
}
|
|
1573
1569
|
},
|
|
1574
1570
|
"required": [
|
|
1575
|
-
"topics",
|
|
1576
1571
|
"url",
|
|
1577
1572
|
"title"
|
|
1578
1573
|
],
|
|
@@ -1672,9 +1667,9 @@
|
|
|
1672
1667
|
}
|
|
1673
1668
|
},
|
|
1674
1669
|
"topics": {
|
|
1670
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1675
1671
|
"type": "array",
|
|
1676
1672
|
"items": {
|
|
1677
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1678
1673
|
"anyOf": [
|
|
1679
1674
|
{
|
|
1680
1675
|
"type": "string",
|
|
@@ -1804,7 +1799,6 @@
|
|
|
1804
1799
|
}
|
|
1805
1800
|
},
|
|
1806
1801
|
"required": [
|
|
1807
|
-
"topics",
|
|
1808
1802
|
"title"
|
|
1809
1803
|
],
|
|
1810
1804
|
"description": "Pintura"
|
|
@@ -1895,9 +1889,9 @@
|
|
|
1895
1889
|
}
|
|
1896
1890
|
},
|
|
1897
1891
|
"topics": {
|
|
1892
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1898
1893
|
"type": "array",
|
|
1899
1894
|
"items": {
|
|
1900
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1901
1895
|
"anyOf": [
|
|
1902
1896
|
{
|
|
1903
1897
|
"type": "string",
|
|
@@ -2032,7 +2026,6 @@
|
|
|
2032
2026
|
}
|
|
2033
2027
|
},
|
|
2034
2028
|
"required": [
|
|
2035
|
-
"topics",
|
|
2036
2029
|
"title",
|
|
2037
2030
|
"platform"
|
|
2038
2031
|
],
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -225,7 +225,6 @@
|
|
|
225
225
|
}
|
|
226
226
|
},
|
|
227
227
|
"required": [
|
|
228
|
-
"topics",
|
|
229
228
|
"title"
|
|
230
229
|
],
|
|
231
230
|
"description": "Pintura"
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
"topics": {
|
|
101
|
+
"description": "Temas: Wikilink o texto libre",
|
|
101
102
|
"type": "array",
|
|
102
103
|
"items": {
|
|
103
|
-
"description": "Temas: Wikilink o texto libre",
|
|
104
104
|
"anyOf": [
|
|
105
105
|
{
|
|
106
106
|
"type": "string",
|
|
@@ -230,7 +230,6 @@
|
|
|
230
230
|
}
|
|
231
231
|
},
|
|
232
232
|
"required": [
|
|
233
|
-
"topics",
|
|
234
233
|
"title"
|
|
235
234
|
],
|
|
236
235
|
"description": "Pintura"
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"topics": {
|
|
96
|
+
"description": "Temas: Wikilink o texto libre",
|
|
96
97
|
"type": "array",
|
|
97
98
|
"items": {
|
|
98
|
-
"description": "Temas: Wikilink o texto libre",
|
|
99
99
|
"anyOf": [
|
|
100
100
|
{
|
|
101
101
|
"type": "string",
|
|
@@ -225,7 +225,6 @@
|
|
|
225
225
|
}
|
|
226
226
|
},
|
|
227
227
|
"required": [
|
|
228
|
-
"topics",
|
|
229
228
|
"title"
|
|
230
229
|
],
|
|
231
230
|
"description": "Pintura"
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"topics": {
|
|
88
|
+
"description": "Temas: Wikilink o texto libre",
|
|
88
89
|
"type": "array",
|
|
89
90
|
"items": {
|
|
90
|
-
"description": "Temas: Wikilink o texto libre",
|
|
91
91
|
"anyOf": [
|
|
92
92
|
{
|
|
93
93
|
"type": "string",
|
|
@@ -222,7 +222,6 @@
|
|
|
222
222
|
}
|
|
223
223
|
},
|
|
224
224
|
"required": [
|
|
225
|
-
"topics",
|
|
226
225
|
"title",
|
|
227
226
|
"platform"
|
|
228
227
|
],
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"topics": {
|
|
88
|
+
"description": "Temas: Wikilink o texto libre",
|
|
88
89
|
"type": "array",
|
|
89
90
|
"items": {
|
|
90
|
-
"description": "Temas: Wikilink o texto libre",
|
|
91
91
|
"anyOf": [
|
|
92
92
|
{
|
|
93
93
|
"type": "string",
|
|
@@ -213,7 +213,6 @@
|
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
215
|
"required": [
|
|
216
|
-
"topics",
|
|
217
216
|
"title",
|
|
218
217
|
"platform"
|
|
219
218
|
],
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"topics": {
|
|
88
|
+
"description": "Temas: Wikilink o texto libre",
|
|
88
89
|
"type": "array",
|
|
89
90
|
"items": {
|
|
90
|
-
"description": "Temas: Wikilink o texto libre",
|
|
91
91
|
"anyOf": [
|
|
92
92
|
{
|
|
93
93
|
"type": "string",
|
|
@@ -213,7 +213,6 @@
|
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
215
|
"required": [
|
|
216
|
-
"topics",
|
|
217
216
|
"title",
|
|
218
217
|
"platform"
|
|
219
218
|
],
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
"topics": {
|
|
93
|
+
"description": "Temas: Wikilink o texto libre",
|
|
93
94
|
"type": "array",
|
|
94
95
|
"items": {
|
|
95
|
-
"description": "Temas: Wikilink o texto libre",
|
|
96
96
|
"anyOf": [
|
|
97
97
|
{
|
|
98
98
|
"type": "string",
|
|
@@ -227,7 +227,6 @@
|
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
229
|
"required": [
|
|
230
|
-
"topics",
|
|
231
230
|
"title",
|
|
232
231
|
"platform"
|
|
233
232
|
],
|
|
@@ -320,9 +319,9 @@
|
|
|
320
319
|
}
|
|
321
320
|
},
|
|
322
321
|
"topics": {
|
|
322
|
+
"description": "Temas: Wikilink o texto libre",
|
|
323
323
|
"type": "array",
|
|
324
324
|
"items": {
|
|
325
|
-
"description": "Temas: Wikilink o texto libre",
|
|
326
325
|
"anyOf": [
|
|
327
326
|
{
|
|
328
327
|
"type": "string",
|
|
@@ -448,7 +447,6 @@
|
|
|
448
447
|
}
|
|
449
448
|
},
|
|
450
449
|
"required": [
|
|
451
|
-
"topics",
|
|
452
450
|
"title",
|
|
453
451
|
"platform"
|
|
454
452
|
],
|
|
@@ -541,9 +539,9 @@
|
|
|
541
539
|
}
|
|
542
540
|
},
|
|
543
541
|
"topics": {
|
|
542
|
+
"description": "Temas: Wikilink o texto libre",
|
|
544
543
|
"type": "array",
|
|
545
544
|
"items": {
|
|
546
|
-
"description": "Temas: Wikilink o texto libre",
|
|
547
545
|
"anyOf": [
|
|
548
546
|
{
|
|
549
547
|
"type": "string",
|
|
@@ -669,7 +667,6 @@
|
|
|
669
667
|
}
|
|
670
668
|
},
|
|
671
669
|
"required": [
|
|
672
|
-
"topics",
|
|
673
670
|
"title",
|
|
674
671
|
"platform"
|
|
675
672
|
],
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"topics": {
|
|
88
|
+
"description": "Temas: Wikilink o texto libre",
|
|
88
89
|
"type": "array",
|
|
89
90
|
"items": {
|
|
90
|
-
"description": "Temas: Wikilink o texto libre",
|
|
91
91
|
"anyOf": [
|
|
92
92
|
{
|
|
93
93
|
"type": "string",
|
|
@@ -222,7 +222,6 @@
|
|
|
222
222
|
}
|
|
223
223
|
},
|
|
224
224
|
"required": [
|
|
225
|
-
"topics",
|
|
226
225
|
"title",
|
|
227
226
|
"platform"
|
|
228
227
|
],
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"topics": {
|
|
88
|
+
"description": "Temas: Wikilink o texto libre",
|
|
88
89
|
"type": "array",
|
|
89
90
|
"items": {
|
|
90
|
-
"description": "Temas: Wikilink o texto libre",
|
|
91
91
|
"anyOf": [
|
|
92
92
|
{
|
|
93
93
|
"type": "string",
|
|
@@ -213,7 +213,6 @@
|
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
215
|
"required": [
|
|
216
|
-
"topics",
|
|
217
216
|
"title",
|
|
218
217
|
"platform"
|
|
219
218
|
],
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"topics": {
|
|
104
|
+
"description": "Temas: Wikilink o texto libre",
|
|
104
105
|
"type": "array",
|
|
105
106
|
"items": {
|
|
106
|
-
"description": "Temas: Wikilink o texto libre",
|
|
107
107
|
"anyOf": [
|
|
108
108
|
{
|
|
109
109
|
"type": "string",
|
|
@@ -248,7 +248,6 @@
|
|
|
248
248
|
}
|
|
249
249
|
},
|
|
250
250
|
"required": [
|
|
251
|
-
"topics",
|
|
252
251
|
"url",
|
|
253
252
|
"title",
|
|
254
253
|
"platform"
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"topics": {
|
|
88
|
+
"description": "Temas: Wikilink o texto libre",
|
|
88
89
|
"type": "array",
|
|
89
90
|
"items": {
|
|
90
|
-
"description": "Temas: Wikilink o texto libre",
|
|
91
91
|
"anyOf": [
|
|
92
92
|
{
|
|
93
93
|
"type": "string",
|
|
@@ -213,7 +213,6 @@
|
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
215
|
"required": [
|
|
216
|
-
"topics",
|
|
217
216
|
"title",
|
|
218
217
|
"platform"
|
|
219
218
|
],
|
|
@@ -100,9 +100,9 @@
|
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"topics": {
|
|
103
|
+
"description": "Temas: Wikilink o texto libre",
|
|
103
104
|
"type": "array",
|
|
104
105
|
"items": {
|
|
105
|
-
"description": "Temas: Wikilink o texto libre",
|
|
106
106
|
"anyOf": [
|
|
107
107
|
{
|
|
108
108
|
"type": "string",
|
|
@@ -243,7 +243,6 @@
|
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
"required": [
|
|
246
|
-
"topics",
|
|
247
246
|
"url",
|
|
248
247
|
"title"
|
|
249
248
|
],
|
|
@@ -343,9 +342,9 @@
|
|
|
343
342
|
}
|
|
344
343
|
},
|
|
345
344
|
"topics": {
|
|
345
|
+
"description": "Temas: Wikilink o texto libre",
|
|
346
346
|
"type": "array",
|
|
347
347
|
"items": {
|
|
348
|
-
"description": "Temas: Wikilink o texto libre",
|
|
349
348
|
"anyOf": [
|
|
350
349
|
{
|
|
351
350
|
"type": "string",
|
|
@@ -527,7 +526,6 @@
|
|
|
527
526
|
}
|
|
528
527
|
},
|
|
529
528
|
"required": [
|
|
530
|
-
"topics",
|
|
531
529
|
"title"
|
|
532
530
|
],
|
|
533
531
|
"description": "Libro"
|
|
@@ -626,9 +624,9 @@
|
|
|
626
624
|
}
|
|
627
625
|
},
|
|
628
626
|
"topics": {
|
|
627
|
+
"description": "Temas: Wikilink o texto libre",
|
|
629
628
|
"type": "array",
|
|
630
629
|
"items": {
|
|
631
|
-
"description": "Temas: Wikilink o texto libre",
|
|
632
630
|
"anyOf": [
|
|
633
631
|
{
|
|
634
632
|
"type": "string",
|
|
@@ -1043,7 +1041,6 @@
|
|
|
1043
1041
|
}
|
|
1044
1042
|
},
|
|
1045
1043
|
"required": [
|
|
1046
|
-
"topics",
|
|
1047
1044
|
"name",
|
|
1048
1045
|
"garment",
|
|
1049
1046
|
"slot",
|
|
@@ -1154,9 +1151,9 @@
|
|
|
1154
1151
|
}
|
|
1155
1152
|
},
|
|
1156
1153
|
"topics": {
|
|
1154
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1157
1155
|
"type": "array",
|
|
1158
1156
|
"items": {
|
|
1159
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1160
1157
|
"anyOf": [
|
|
1161
1158
|
{
|
|
1162
1159
|
"type": "string",
|
|
@@ -1297,7 +1294,6 @@
|
|
|
1297
1294
|
}
|
|
1298
1295
|
},
|
|
1299
1296
|
"required": [
|
|
1300
|
-
"topics",
|
|
1301
1297
|
"url",
|
|
1302
1298
|
"title"
|
|
1303
1299
|
],
|
|
@@ -1397,9 +1393,9 @@
|
|
|
1397
1393
|
}
|
|
1398
1394
|
},
|
|
1399
1395
|
"topics": {
|
|
1396
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1400
1397
|
"type": "array",
|
|
1401
1398
|
"items": {
|
|
1402
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1403
1399
|
"anyOf": [
|
|
1404
1400
|
{
|
|
1405
1401
|
"type": "string",
|
|
@@ -1577,7 +1573,6 @@
|
|
|
1577
1573
|
}
|
|
1578
1574
|
},
|
|
1579
1575
|
"required": [
|
|
1580
|
-
"topics",
|
|
1581
1576
|
"url",
|
|
1582
1577
|
"title"
|
|
1583
1578
|
],
|
|
@@ -1677,9 +1672,9 @@
|
|
|
1677
1672
|
}
|
|
1678
1673
|
},
|
|
1679
1674
|
"topics": {
|
|
1675
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1680
1676
|
"type": "array",
|
|
1681
1677
|
"items": {
|
|
1682
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1683
1678
|
"anyOf": [
|
|
1684
1679
|
{
|
|
1685
1680
|
"type": "string",
|
|
@@ -1809,7 +1804,6 @@
|
|
|
1809
1804
|
}
|
|
1810
1805
|
},
|
|
1811
1806
|
"required": [
|
|
1812
|
-
"topics",
|
|
1813
1807
|
"title"
|
|
1814
1808
|
],
|
|
1815
1809
|
"description": "Pintura"
|
|
@@ -1900,9 +1894,9 @@
|
|
|
1900
1894
|
}
|
|
1901
1895
|
},
|
|
1902
1896
|
"topics": {
|
|
1897
|
+
"description": "Temas: Wikilink o texto libre",
|
|
1903
1898
|
"type": "array",
|
|
1904
1899
|
"items": {
|
|
1905
|
-
"description": "Temas: Wikilink o texto libre",
|
|
1906
1900
|
"anyOf": [
|
|
1907
1901
|
{
|
|
1908
1902
|
"type": "string",
|
|
@@ -2037,7 +2031,6 @@
|
|
|
2037
2031
|
}
|
|
2038
2032
|
},
|
|
2039
2033
|
"required": [
|
|
2040
|
-
"topics",
|
|
2041
2034
|
"title",
|
|
2042
2035
|
"platform"
|
|
2043
2036
|
],
|
|
@@ -2141,9 +2134,9 @@
|
|
|
2141
2134
|
}
|
|
2142
2135
|
},
|
|
2143
2136
|
"topics": {
|
|
2137
|
+
"description": "Temas: Wikilink o texto libre",
|
|
2144
2138
|
"type": "array",
|
|
2145
2139
|
"items": {
|
|
2146
|
-
"description": "Temas: Wikilink o texto libre",
|
|
2147
2140
|
"anyOf": [
|
|
2148
2141
|
{
|
|
2149
2142
|
"type": "string",
|
|
@@ -2284,7 +2277,6 @@
|
|
|
2284
2277
|
}
|
|
2285
2278
|
},
|
|
2286
2279
|
"required": [
|
|
2287
|
-
"topics",
|
|
2288
2280
|
"url",
|
|
2289
2281
|
"title"
|
|
2290
2282
|
],
|
|
@@ -2385,9 +2377,9 @@
|
|
|
2385
2377
|
}
|
|
2386
2378
|
},
|
|
2387
2379
|
"topics": {
|
|
2380
|
+
"description": "Temas: Wikilink o texto libre",
|
|
2388
2381
|
"type": "array",
|
|
2389
2382
|
"items": {
|
|
2390
|
-
"description": "Temas: Wikilink o texto libre",
|
|
2391
2383
|
"anyOf": [
|
|
2392
2384
|
{
|
|
2393
2385
|
"type": "string",
|
|
@@ -2569,7 +2561,6 @@
|
|
|
2569
2561
|
}
|
|
2570
2562
|
},
|
|
2571
2563
|
"required": [
|
|
2572
|
-
"topics",
|
|
2573
2564
|
"title"
|
|
2574
2565
|
],
|
|
2575
2566
|
"description": "Libro"
|
|
@@ -2669,9 +2660,9 @@
|
|
|
2669
2660
|
}
|
|
2670
2661
|
},
|
|
2671
2662
|
"topics": {
|
|
2663
|
+
"description": "Temas: Wikilink o texto libre",
|
|
2672
2664
|
"type": "array",
|
|
2673
2665
|
"items": {
|
|
2674
|
-
"description": "Temas: Wikilink o texto libre",
|
|
2675
2666
|
"anyOf": [
|
|
2676
2667
|
{
|
|
2677
2668
|
"type": "string",
|
|
@@ -3086,7 +3077,6 @@
|
|
|
3086
3077
|
}
|
|
3087
3078
|
},
|
|
3088
3079
|
"required": [
|
|
3089
|
-
"topics",
|
|
3090
3080
|
"name",
|
|
3091
3081
|
"garment",
|
|
3092
3082
|
"slot",
|
|
@@ -3198,9 +3188,9 @@
|
|
|
3198
3188
|
}
|
|
3199
3189
|
},
|
|
3200
3190
|
"topics": {
|
|
3191
|
+
"description": "Temas: Wikilink o texto libre",
|
|
3201
3192
|
"type": "array",
|
|
3202
3193
|
"items": {
|
|
3203
|
-
"description": "Temas: Wikilink o texto libre",
|
|
3204
3194
|
"anyOf": [
|
|
3205
3195
|
{
|
|
3206
3196
|
"type": "string",
|
|
@@ -3341,7 +3331,6 @@
|
|
|
3341
3331
|
}
|
|
3342
3332
|
},
|
|
3343
3333
|
"required": [
|
|
3344
|
-
"topics",
|
|
3345
3334
|
"url",
|
|
3346
3335
|
"title"
|
|
3347
3336
|
],
|
|
@@ -3442,9 +3431,9 @@
|
|
|
3442
3431
|
}
|
|
3443
3432
|
},
|
|
3444
3433
|
"topics": {
|
|
3434
|
+
"description": "Temas: Wikilink o texto libre",
|
|
3445
3435
|
"type": "array",
|
|
3446
3436
|
"items": {
|
|
3447
|
-
"description": "Temas: Wikilink o texto libre",
|
|
3448
3437
|
"anyOf": [
|
|
3449
3438
|
{
|
|
3450
3439
|
"type": "string",
|
|
@@ -3622,7 +3611,6 @@
|
|
|
3622
3611
|
}
|
|
3623
3612
|
},
|
|
3624
3613
|
"required": [
|
|
3625
|
-
"topics",
|
|
3626
3614
|
"url",
|
|
3627
3615
|
"title"
|
|
3628
3616
|
],
|
|
@@ -3723,9 +3711,9 @@
|
|
|
3723
3711
|
}
|
|
3724
3712
|
},
|
|
3725
3713
|
"topics": {
|
|
3714
|
+
"description": "Temas: Wikilink o texto libre",
|
|
3726
3715
|
"type": "array",
|
|
3727
3716
|
"items": {
|
|
3728
|
-
"description": "Temas: Wikilink o texto libre",
|
|
3729
3717
|
"anyOf": [
|
|
3730
3718
|
{
|
|
3731
3719
|
"type": "string",
|
|
@@ -3855,7 +3843,6 @@
|
|
|
3855
3843
|
}
|
|
3856
3844
|
},
|
|
3857
3845
|
"required": [
|
|
3858
|
-
"topics",
|
|
3859
3846
|
"title"
|
|
3860
3847
|
],
|
|
3861
3848
|
"description": "Pintura"
|
|
@@ -3947,9 +3934,9 @@
|
|
|
3947
3934
|
}
|
|
3948
3935
|
},
|
|
3949
3936
|
"topics": {
|
|
3937
|
+
"description": "Temas: Wikilink o texto libre",
|
|
3950
3938
|
"type": "array",
|
|
3951
3939
|
"items": {
|
|
3952
|
-
"description": "Temas: Wikilink o texto libre",
|
|
3953
3940
|
"anyOf": [
|
|
3954
3941
|
{
|
|
3955
3942
|
"type": "string",
|
|
@@ -4084,7 +4071,6 @@
|
|
|
4084
4071
|
}
|
|
4085
4072
|
},
|
|
4086
4073
|
"required": [
|
|
4087
|
-
"topics",
|
|
4088
4074
|
"title",
|
|
4089
4075
|
"platform"
|
|
4090
4076
|
],
|
|
@@ -4177,9 +4163,9 @@
|
|
|
4177
4163
|
}
|
|
4178
4164
|
},
|
|
4179
4165
|
"topics": {
|
|
4166
|
+
"description": "Temas: Wikilink o texto libre",
|
|
4180
4167
|
"type": "array",
|
|
4181
4168
|
"items": {
|
|
4182
|
-
"description": "Temas: Wikilink o texto libre",
|
|
4183
4169
|
"anyOf": [
|
|
4184
4170
|
{
|
|
4185
4171
|
"type": "string",
|
|
@@ -4305,7 +4291,6 @@
|
|
|
4305
4291
|
}
|
|
4306
4292
|
},
|
|
4307
4293
|
"required": [
|
|
4308
|
-
"topics",
|
|
4309
4294
|
"title",
|
|
4310
4295
|
"platform"
|
|
4311
4296
|
],
|
|
@@ -4414,9 +4399,9 @@
|
|
|
4414
4399
|
}
|
|
4415
4400
|
},
|
|
4416
4401
|
"topics": {
|
|
4402
|
+
"description": "Temas: Wikilink o texto libre",
|
|
4417
4403
|
"type": "array",
|
|
4418
4404
|
"items": {
|
|
4419
|
-
"description": "Temas: Wikilink o texto libre",
|
|
4420
4405
|
"anyOf": [
|
|
4421
4406
|
{
|
|
4422
4407
|
"type": "string",
|
|
@@ -4561,7 +4546,6 @@
|
|
|
4561
4546
|
}
|
|
4562
4547
|
},
|
|
4563
4548
|
"required": [
|
|
4564
|
-
"topics",
|
|
4565
4549
|
"url",
|
|
4566
4550
|
"title",
|
|
4567
4551
|
"platform"
|
|
@@ -4655,9 +4639,9 @@
|
|
|
4655
4639
|
}
|
|
4656
4640
|
},
|
|
4657
4641
|
"topics": {
|
|
4642
|
+
"description": "Temas: Wikilink o texto libre",
|
|
4658
4643
|
"type": "array",
|
|
4659
4644
|
"items": {
|
|
4660
|
-
"description": "Temas: Wikilink o texto libre",
|
|
4661
4645
|
"anyOf": [
|
|
4662
4646
|
{
|
|
4663
4647
|
"type": "string",
|
|
@@ -4783,7 +4767,6 @@
|
|
|
4783
4767
|
}
|
|
4784
4768
|
},
|
|
4785
4769
|
"required": [
|
|
4786
|
-
"topics",
|
|
4787
4770
|
"title",
|
|
4788
4771
|
"platform"
|
|
4789
4772
|
],
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@segha/catalog",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"description": "Schemas for Petroglyph Catalog",
|
|
6
|
+
"segha": {
|
|
7
|
+
"multiLanguage": true
|
|
8
|
+
},
|
|
6
9
|
"keywords": [
|
|
7
10
|
"schemas",
|
|
8
11
|
"zod",
|
|
@@ -38,17 +41,19 @@
|
|
|
38
41
|
"exports": {
|
|
39
42
|
".": "./index.ts",
|
|
40
43
|
"./en": "./en/index.ts",
|
|
41
|
-
"./en/
|
|
42
|
-
"./en/clothing/types": "./en/Clothing/types.ts",
|
|
44
|
+
"./en/types": "./en/types.ts",
|
|
43
45
|
"./en/json-schema": "./json-schemas/en/index.json",
|
|
44
46
|
"./en/json-schemas/*": "./json-schemas/en/*.json",
|
|
47
|
+
"./en/clothing": "./en/Clothing/index.ts",
|
|
48
|
+
"./en/clothing/types": "./en/Clothing/types.ts",
|
|
45
49
|
"./en/clothing/json-schema": "./json-schemas/en/Clothing/index.json",
|
|
46
50
|
"./en/clothing/json-schemas/*": "./json-schemas/en/Clothing/*.json",
|
|
47
51
|
"./es": "./es/index.ts",
|
|
48
|
-
"./es/
|
|
49
|
-
"./es/clothing/types": "./es/Clothing/types.ts",
|
|
52
|
+
"./es/types": "./es/types.ts",
|
|
50
53
|
"./es/json-schema": "./json-schemas/es/index.json",
|
|
51
54
|
"./es/json-schemas/*": "./json-schemas/es/*.json",
|
|
55
|
+
"./es/clothing": "./es/Clothing/index.ts",
|
|
56
|
+
"./es/clothing/types": "./es/Clothing/types.ts",
|
|
52
57
|
"./es/clothing/json-schema": "./json-schemas/es/Clothing/index.json",
|
|
53
58
|
"./es/clothing/json-schemas/*": "./json-schemas/es/Clothing/*.json",
|
|
54
59
|
"./types": "./types.ts"
|