@netwerk-digitaal-erfgoed/network-of-terms-catalog 5.8.1 → 5.9.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/build/catalog.d.ts.map +1 -1
- package/build/catalog.js +7 -3
- package/build/catalog.js.map +1 -1
- package/catalog/datasets/abr.jsonld +10 -0
- package/catalog/datasets/adamlink-straten.jsonld +10 -0
- package/catalog/datasets/brinkman.jsonld +10 -0
- package/catalog/datasets/cht.jsonld +10 -0
- package/catalog/datasets/eurovoc.jsonld +10 -0
- package/catalog/datasets/gtaa-classificatie.jsonld +10 -0
- package/catalog/datasets/gtaa-genres.jsonld +10 -0
- package/catalog/datasets/gtaa-geografische-namen.jsonld +10 -0
- package/catalog/datasets/gtaa-namen.jsonld +10 -0
- package/catalog/datasets/gtaa-onderwerpen-beng.jsonld +10 -0
- package/catalog/datasets/gtaa-onderwerpen.jsonld +10 -0
- package/catalog/datasets/gtaa-persoonsnamen.jsonld +10 -0
- package/catalog/datasets/muziekschatten-onderwerpen.jsonld +10 -0
- package/catalog/datasets/muziekschatten-personen.jsonld +10 -0
- package/catalog/datasets/mw-genresstijlen.jsonld +10 -0
- package/catalog/datasets/mw-personengroepen.jsonld +10 -0
- package/catalog/datasets/nmvw.jsonld +10 -0
- package/catalog/datasets/nta.jsonld +10 -0
- package/catalog/datasets/rkdartists.jsonld +10 -0
- package/catalog/datasets/stcn-drukkers.jsonld +10 -0
- package/catalog/datasets/wo2thesaurus.jsonld +10 -0
- package/package.json +2 -2
package/build/catalog.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../src/catalog.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,GAAG,MAAM,QAAQ,CAAC;AAO9B,OAAO,EACL,OAAO,
|
|
1
|
+
{"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../src/catalog.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,GAAG,MAAM,QAAQ,CAAC;AAO9B,OAAO,EACL,OAAO,EAMR,MAAM,kDAAkD,CAAC;AAG1D,wBAAsB,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC,CAQvD;AAED,wBAAsB,SAAS,CAAC,KAAK,EAAE,GAAG,CAAC,KAAK,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC,CAqEpE;AAED;;;GAGG;AACH,wBAAsB,SAAS,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAIvE;AAED,wBAAsB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAU/D"}
|
package/build/catalog.js
CHANGED
|
@@ -5,7 +5,7 @@ import { Transform } from 'stream';
|
|
|
5
5
|
import { dirname, resolve } from 'path';
|
|
6
6
|
import { globby } from 'globby';
|
|
7
7
|
import { storeStream } from 'rdf-store-stream';
|
|
8
|
-
import { Catalog, Dataset, IRI, Organization, SparqlDistribution, } from '@netwerk-digitaal-erfgoed/network-of-terms-query';
|
|
8
|
+
import { Catalog, Dataset, Feature, IRI, Organization, SparqlDistribution, } from '@netwerk-digitaal-erfgoed/network-of-terms-query';
|
|
9
9
|
import { fileURLToPath } from 'url';
|
|
10
10
|
export async function defaultCatalog() {
|
|
11
11
|
const directory = resolve(dirname(fileURLToPath(import.meta.url)), '../', 'catalog/');
|
|
@@ -17,7 +17,7 @@ export async function fromStore(store) {
|
|
|
17
17
|
const properties = '?dataset ?name ?creator ?creatorName ?creatorAlternateName ?distribution ?endpointUrl ?searchQuery ?lookupQuery ?alternateName';
|
|
18
18
|
const query = `
|
|
19
19
|
PREFIX schema: <http://schema.org/>
|
|
20
|
-
SELECT ${properties} (GROUP_CONCAT(?url) as ?url) WHERE {
|
|
20
|
+
SELECT ${properties} (GROUP_CONCAT(?url) as ?url) (COALESCE(GROUP_CONCAT(?features), "") as ?features) WHERE {
|
|
21
21
|
?dataset a schema:Dataset ;
|
|
22
22
|
schema:name ?name ;
|
|
23
23
|
schema:creator ?creator ;
|
|
@@ -31,6 +31,7 @@ export async function fromStore(store) {
|
|
|
31
31
|
schema:potentialAction
|
|
32
32
|
[a schema:SearchAction ; schema:query ?searchQuery ] ,
|
|
33
33
|
[a schema:FindAction ; schema:query ?lookupQuery ] .
|
|
34
|
+
OPTIONAL { ?distribution schema:potentialAction [ schema:target [ schema:actionApplication ?features ] ]. }
|
|
34
35
|
}
|
|
35
36
|
GROUP BY ${properties}
|
|
36
37
|
ORDER BY LCASE(?name)`;
|
|
@@ -47,7 +48,10 @@ export async function fromStore(store) {
|
|
|
47
48
|
.map((url) => new IRI(url)), [
|
|
48
49
|
new Organization(new IRI(bindings.get('creator').value), bindings.get('creatorName').value, bindings.get('creatorAlternateName').value),
|
|
49
50
|
], [
|
|
50
|
-
new SparqlDistribution(new IRI(bindings.get('distribution').value), new IRI(bindings.get('endpointUrl').value), bindings.get('searchQuery').value, bindings.get('lookupQuery').value
|
|
51
|
+
new SparqlDistribution(new IRI(bindings.get('distribution').value), new IRI(bindings.get('endpointUrl').value), bindings.get('searchQuery').value, bindings.get('lookupQuery').value, bindings
|
|
52
|
+
.get('features')
|
|
53
|
+
.value.split(' ')
|
|
54
|
+
.filter((feature) => Object.values(Feature).includes(feature))),
|
|
51
55
|
], (_a = bindings.get('alternateName')) === null || _a === void 0 ? void 0 : _a.value));
|
|
52
56
|
});
|
|
53
57
|
bindingsStream.on('end', () => resolve(datasets));
|
package/build/catalog.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../src/catalog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,SAAS,MAAM,WAAW,CAAC;AAElC,OAAO,EAAC,WAAW,EAAC,MAAM,8BAA8B,CAAC;AACzD,OAAO,EAAC,SAAS,EAAoB,MAAM,QAAQ,CAAC;AACpD,OAAO,EAAC,OAAO,EAAE,OAAO,EAAC,MAAM,MAAM,CAAC;AACtC,OAAO,EAAC,MAAM,EAAC,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAC;AAE7C,OAAO,EACL,OAAO,EACP,OAAO,EACP,GAAG,EACH,YAAY,EACZ,kBAAkB,GACnB,MAAM,kDAAkD,CAAC;AAC1D,OAAO,EAAC,aAAa,EAAC,MAAM,KAAK,CAAC;AAElC,MAAM,CAAC,KAAK,UAAU,cAAc;IAClC,MAAM,SAAS,GAAG,OAAO,CACvB,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EACvC,KAAK,EACL,UAAU,CACX,CAAC;IACF,MAAM,KAAK,GAAG,MAAM,SAAS,CAAC,SAAS,CAAC,CAAC;IACzC,OAAO,SAAS,CAAC,KAAK,CAAC,CAAC;AAC1B,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,SAAS,CAAC,KAAkB;IAChD,8GAA8G;IAC9G,MAAM,UAAU,GACd,gIAAgI,CAAC;IACnI,MAAM,KAAK,GAAG;;iBAEC,UAAU
|
|
1
|
+
{"version":3,"file":"catalog.js","sourceRoot":"","sources":["../src/catalog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,SAAS,MAAM,WAAW,CAAC;AAElC,OAAO,EAAC,WAAW,EAAC,MAAM,8BAA8B,CAAC;AACzD,OAAO,EAAC,SAAS,EAAoB,MAAM,QAAQ,CAAC;AACpD,OAAO,EAAC,OAAO,EAAE,OAAO,EAAC,MAAM,MAAM,CAAC;AACtC,OAAO,EAAC,MAAM,EAAC,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAC;AAE7C,OAAO,EACL,OAAO,EACP,OAAO,EACP,OAAO,EACP,GAAG,EACH,YAAY,EACZ,kBAAkB,GACnB,MAAM,kDAAkD,CAAC;AAC1D,OAAO,EAAC,aAAa,EAAC,MAAM,KAAK,CAAC;AAElC,MAAM,CAAC,KAAK,UAAU,cAAc;IAClC,MAAM,SAAS,GAAG,OAAO,CACvB,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EACvC,KAAK,EACL,UAAU,CACX,CAAC;IACF,MAAM,KAAK,GAAG,MAAM,SAAS,CAAC,SAAS,CAAC,CAAC;IACzC,OAAO,SAAS,CAAC,KAAK,CAAC,CAAC;AAC1B,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,SAAS,CAAC,KAAkB;IAChD,8GAA8G;IAC9G,MAAM,UAAU,GACd,gIAAgI,CAAC;IACnI,MAAM,KAAK,GAAG;;iBAEC,UAAU;;;;;;;;;;;;;;;;mBAgBR,UAAU;8BACC,CAAC;IAC7B,MAAM,cAAc,GAAG,MAAM,IAAI,WAAW,EAAE,CAAC,aAAa,CAAC,KAAK,EAAE;QAClE,OAAO,EAAE,KAAK;KACf,CAAC,CAAC;IAEH,MAAM,OAAO,GAAuB,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QAClE,MAAM,QAAQ,GAAc,EAAE,CAAC;QAC/B,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,QAAkB,EAAE,EAAE;;YAC/C,QAAQ,CAAC,IAAI,CACX,IAAI,OAAO,CACT,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,EACtC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,KAAK,EAC1B,QAAQ;iBACL,GAAG,CAAC,KAAK,CAAC;iBACV,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,wCAAwC;iBACzD,GAAG,CAAC,CAAC,GAAW,EAAE,EAAE,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC,EACrC;gBACE,IAAI,YAAY,CACd,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,EACtC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,KAAK,EACjC,QAAQ,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC,KAAK,CAC3C;aACF,EACD;gBACE,IAAI,kBAAkB,CACpB,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,KAAK,CAAC,EAC3C,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,EAC1C,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,KAAK,EACjC,QAAQ,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,KAAK,EACjC,QAAQ;qBACL,GAAG,CAAC,UAAU,CAAC;qBACf,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC;qBAChB,MAAM,CAAC,CAAC,OAAe,EAAE,EAAE,CAC1B,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAkB,CAAC,CACvC,CACjB;aACF,EACD,MAAA,QAAQ,CAAC,GAAG,CAAC,eAAe,CAAC,0CAAE,KAAK,CACrC,CACF,CAAC;QACJ,CAAC,CAAC,CAAC;QACH,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;QAClD,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC;IAC3C,CAAC,CAAC,CAAC;IAEH,OAAO,IAAI,OAAO,CAAC,MAAM,OAAO,CAAC,CAAC;AACpC,CAAC;AAED;;;GAGG;AACH,MAAM,CAAC,KAAK,UAAU,SAAS,CAAC,SAAiB;IAC/C,yDAAyD;IACzD,MAAM,KAAK,GAAG,MAAM,MAAM,CAAC,CAAC,SAAS,EAAE,GAAG,GAAG,SAAS,GAAG,UAAU,CAAC,CAAC,CAAC;IACtE,OAAO,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC;AAC1C,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,QAAQ,CAAC,IAAY;;IACzC,6DAA6D;IAC7D,aAAa;IACb,MAAM,UAAU,GAAG,CAAC,MAAA,SAAS,CAAC,OAAO,mCAAI,SAAS,CAAC;SAChD,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAAC,IAAI,CAAC,EAAE;QAChC,IAAI,EAAE,IAAI;KACX,CAAC;SACD,IAAI,CAAC,IAAI,WAAW,EAAE,CAAC;SACvB,IAAI,CAAC,IAAI,6CAA6C,EAAE,CAAC,CAAC;IAC7D,OAAO,WAAW,CAAC,UAAU,CAAC,CAAC;AACjC,CAAC;AAED;;GAEG;AACH,MAAM,WAAY,SAAQ,SAAS;IACjC;QACE,KAAK,CAAC,EAAC,UAAU,EAAE,IAAI,EAAC,CAAC,CAAC;IAC5B,CAAC;IAED,KAAK,CAAC,UAAU,CACd,IAAc,EACd,QAAwB,EACxB,QAA2B;QAE3B,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;YAC3C,MAAM,IAAI,GAAG,OAAO,CAClB,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EACvC,KAAK,EACL,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAC5B,CAAC;YACF,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,MAAM,EAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;SAC/D;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;QAE1B,QAAQ,EAAE,CAAC;IACb,CAAC;CACF;AAED;;;GAGG;AACH,MAAM,6CAA8C,SAAQ,SAAS;IAEnE;QACE,KAAK,CAAC,EAAC,UAAU,EAAE,IAAI,EAAC,CAAC,CAAC;QAFpB,UAAK,GAAG,IAAI,MAAM,CAAC,cAAc,CAAC,CAAC;IAG3C,CAAC;IAED,KAAK,CAAC,UAAU,CACd,IAAc,EACd,QAAwB,EACxB,QAA2B;QAE3B,IAAI,IAAI,CAAC,SAAS,CAAC,KAAK,KAAK,8BAA8B,EAAE;YAC3D,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAC3C,IAAI,CAAC,KAAK,EACV,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,WAAC,OAAA,MAAA,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,mCAAI,EAAE,CAAA,EAAA,CAC7C,CAAC;SACH;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;QAE1B,QAAQ,EAAE,CAAC;IACb,CAAC;CACF"}
|
|
@@ -36,6 +36,16 @@
|
|
|
36
36
|
{
|
|
37
37
|
"@type": "FindAction",
|
|
38
38
|
"query": "file://catalog/queries/lookup/abr-cht.rq"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"@type": "Action",
|
|
42
|
+
"target": {
|
|
43
|
+
"@type": "EntryPoint",
|
|
44
|
+
"actionApplication": {
|
|
45
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
46
|
+
"@type": "SoftwareApplication"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
39
49
|
}
|
|
40
50
|
]
|
|
41
51
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/adamlink-straten.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -36,6 +36,16 @@
|
|
|
36
36
|
{
|
|
37
37
|
"@type": "FindAction",
|
|
38
38
|
"query": "file://catalog/queries/lookup/brinkman-nta-stcn.rq"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"@type": "Action",
|
|
42
|
+
"target": {
|
|
43
|
+
"@type": "EntryPoint",
|
|
44
|
+
"actionApplication": {
|
|
45
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
46
|
+
"@type": "SoftwareApplication"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
39
49
|
}
|
|
40
50
|
]
|
|
41
51
|
}
|
|
@@ -36,6 +36,16 @@
|
|
|
36
36
|
{
|
|
37
37
|
"@type": "FindAction",
|
|
38
38
|
"query": "file://catalog/queries/lookup/abr-cht.rq"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"@type": "Action",
|
|
42
|
+
"target": {
|
|
43
|
+
"@type": "EntryPoint",
|
|
44
|
+
"actionApplication": {
|
|
45
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
46
|
+
"@type": "SoftwareApplication"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
39
49
|
}
|
|
40
50
|
]
|
|
41
51
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/eurovoc.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/gtaa.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/muziekschatten.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/muziekschatten.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/muziekweb.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/muziekweb.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/nmvw.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -36,6 +36,16 @@
|
|
|
36
36
|
{
|
|
37
37
|
"@type": "FindAction",
|
|
38
38
|
"query": "file://catalog/queries/lookup/brinkman-nta-stcn.rq"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"@type": "Action",
|
|
42
|
+
"target": {
|
|
43
|
+
"@type": "EntryPoint",
|
|
44
|
+
"actionApplication": {
|
|
45
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
46
|
+
"@type": "SoftwareApplication"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
39
49
|
}
|
|
40
50
|
]
|
|
41
51
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/rkdartists.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/brinkman-nta-stcn.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
{
|
|
31
31
|
"@type": "FindAction",
|
|
32
32
|
"query": "file://catalog/queries/lookup/wo2thesaurus.rq"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"@type": "Action",
|
|
36
|
+
"target": {
|
|
37
|
+
"@type": "EntryPoint",
|
|
38
|
+
"actionApplication": {
|
|
39
|
+
"@id": "https://reconciliation-api.github.io/specs/latest/",
|
|
40
|
+
"@type": "SoftwareApplication"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
33
43
|
}
|
|
34
44
|
]
|
|
35
45
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netwerk-digitaal-erfgoed/network-of-terms-catalog",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Catalog of Network of Terms datasets",
|
|
6
6
|
"repository": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"homepage": "https://github.com/netwerk-digitaal-erfgoed/network-of-terms-catalog#readme",
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@comunica/query-sparql-rdfjs": "^2.0.6",
|
|
47
|
-
"@netwerk-digitaal-erfgoed/network-of-terms-query": "1.
|
|
47
|
+
"@netwerk-digitaal-erfgoed/network-of-terms-query": "1.3.0",
|
|
48
48
|
"globby": "^13.1.1",
|
|
49
49
|
"rdf-js": "^4.0.2",
|
|
50
50
|
"rdf-parse": "^2.0.0",
|