@netwerk-digitaal-erfgoed/network-of-terms-catalog 6.6.0 → 6.7.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.
@@ -37,11 +37,11 @@
37
37
  "potentialAction": [
38
38
  {
39
39
  "@type": "SearchAction",
40
- "query": "file://catalog/queries/search/abr.rq"
40
+ "query": "file://catalog/queries/search/poolparty.rq"
41
41
  },
42
42
  {
43
43
  "@type": "FindAction",
44
- "query": "file://catalog/queries/lookup/abr-cht.rq"
44
+ "query": "file://catalog/queries/lookup/poolparty.rq"
45
45
  },
46
46
  {
47
47
  "@type": "Action",
@@ -37,11 +37,11 @@
37
37
  "potentialAction": [
38
38
  {
39
39
  "@type": "SearchAction",
40
- "query": "file://catalog/queries/search/cht.rq"
40
+ "query": "file://catalog/queries/search/poolparty.rq"
41
41
  },
42
42
  {
43
43
  "@type": "FindAction",
44
- "query": "file://catalog/queries/lookup/abr-cht.rq"
44
+ "query": "file://catalog/queries/lookup/poolparty.rq"
45
45
  },
46
46
  {
47
47
  "@type": "Action",
@@ -0,0 +1,54 @@
1
+ {
2
+ "@context": "https://schema.org/docs/jsonldcontext.jsonld",
3
+ "@id": "https://data.ihlia.nl/homosaurus",
4
+ "@type": "Dataset",
5
+ "name": [
6
+ {
7
+ "@language": "nl",
8
+ "@value": "Homosaurus"
9
+ }
10
+ ],
11
+ "creator": [
12
+ {
13
+ "@id": "https://ihlia.nl"
14
+ }
15
+ ],
16
+ "url": [
17
+ "https://data.ihlia.nl/homosaurus/"
18
+ ],
19
+ "description": [
20
+ {
21
+ "@language": "nl",
22
+ "@value": "Termen voor het beschrijven van LHBTIQ (Lesbisch/Homo/Biseksueel/Transgender/Intersekse/Queer)-publicaties en -erfgoed"
23
+ }
24
+ ],
25
+ "distribution": [
26
+ {
27
+ "@id": "https://data.ihlia.nl/PoolParty/sparql/homosaurus",
28
+ "@type": "DataDownload",
29
+ "contentUrl": "https://data.ihlia.nl/PoolParty/sparql/homosaurus",
30
+ "encodingFormat": "application/sparql-query",
31
+ "potentialAction": [
32
+ {
33
+ "@type": "SearchAction",
34
+ "query": "file://catalog/queries/search/poolparty.rq"
35
+ },
36
+ {
37
+ "@type": "FindAction",
38
+ "query": "file://catalog/queries/lookup/poolparty.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
+ "urlTemplate": "https://termennetwerk-api.netwerkdigitaalerfgoed.nl/reconcile/{distribution}"
49
+ }
50
+ }
51
+ ]
52
+ }
53
+ ]
54
+ }
@@ -84,6 +84,12 @@
84
84
  "@type": "Organization",
85
85
  "name": "GeoNames",
86
86
  "alternateName": "GeoNames"
87
+ },
88
+ {
89
+ "@id": "https://ihlia.nl",
90
+ "@type": "Organization",
91
+ "name": "IHLIA",
92
+ "alternateName": "IHLIA"
87
93
  }
88
94
  ]
89
95
  }
@@ -7,9 +7,11 @@ CONSTRUCT {
7
7
  skos:hiddenLabel ?hiddenLabel ;
8
8
  skos:scopeNote ?scopeNote ;
9
9
  skos:broader ?broader_uri ;
10
- skos:narrower ?narrower_uri .
10
+ skos:narrower ?narrower_uri ;
11
+ skos:related ?related_uri .
11
12
  ?broader_uri skos:prefLabel ?broader_prefLabel .
12
13
  ?narrower_uri skos:prefLabel ?narrower_prefLabel .
14
+ ?related_uri skos:prefLabel ?related_prefLabel .
13
15
  }
14
16
  WHERE {
15
17
  # For example:
@@ -45,5 +47,10 @@ WHERE {
45
47
  ?narrower_uri skos:prefLabel ?narrower_prefLabel .
46
48
  FILTER(LANG(?narrower_prefLabel) = "nl")
47
49
  }
50
+ OPTIONAL {
51
+ ?uri skos:related ?related_uri .
52
+ ?related_uri skos:prefLabel ?related_prefLabel .
53
+ FILTER(LANG(?related_prefLabel) = "nl")
54
+ }
48
55
  }
49
56
  LIMIT 1000
@@ -6,14 +6,14 @@ CONSTRUCT {
6
6
  skos:altLabel ?altLabel ;
7
7
  skos:hiddenLabel ?hiddenLabel ;
8
8
  skos:scopeNote ?scopeNote ;
9
- skos:exactMatch ?skos_exactMatch ;
10
9
  skos:broader ?broader_uri ;
11
- skos:narrower ?narrower_uri .
10
+ skos:narrower ?narrower_uri ;
11
+ skos:related ?related_uri .
12
12
  ?broader_uri skos:prefLabel ?broader_prefLabel .
13
13
  ?narrower_uri skos:prefLabel ?narrower_prefLabel .
14
+ ?related_uri skos:prefLabel ?related_prefLabel .
14
15
  }
15
16
  WHERE {
16
- ?uri a <https://data.cultureelerfgoed.nl/vocab/id/abr#AbrConcept> .
17
17
  ?uri ?predicate ?label .
18
18
  VALUES ?predicate { skos:prefLabel skos:altLabel }
19
19
  FILTER(LANG(?label) = "nl")
@@ -26,14 +26,14 @@ WHERE {
26
26
  ?uri skos:altLabel ?altLabel .
27
27
  FILTER(LANG(?altLabel) = "nl")
28
28
  }
29
- OPTIONAL {
30
- ?uri skos:scopeNote ?scopeNote .
31
- FILTER(LANG(?scopeNote) = "nl")
32
- }
33
29
  OPTIONAL {
34
30
  ?uri skos:hiddenLabel ?hiddenLabel .
35
31
  FILTER(LANG(?hiddenLabel) = "nl")
36
32
  }
33
+ OPTIONAL {
34
+ ?uri skos:scopeNote ?scopeNote .
35
+ FILTER(LANG(?scopeNote) = "nl")
36
+ }
37
37
  OPTIONAL {
38
38
  ?uri skos:broader ?broader_uri .
39
39
  ?broader_uri skos:prefLabel ?broader_prefLabel .
@@ -45,7 +45,9 @@ WHERE {
45
45
  FILTER(LANG(?narrower_prefLabel) = "nl")
46
46
  }
47
47
  OPTIONAL {
48
- ?uri skos:exactMatch ?skos_exactMatch .
48
+ ?uri skos:related ?related_uri .
49
+ ?related_uri skos:prefLabel ?related_prefLabel .
50
+ FILTER(LANG(?related_prefLabel) = "nl")
49
51
  }
50
52
  }
51
53
  LIMIT 1000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netwerk-digitaal-erfgoed/network-of-terms-catalog",
3
- "version": "6.6.0",
3
+ "version": "6.7.0",
4
4
  "type": "module",
5
5
  "description": "Catalog of Network of Terms datasets",
6
6
  "repository": {
@@ -1,46 +0,0 @@
1
- PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
2
-
3
- CONSTRUCT {
4
- ?uri a skos:Concept ;
5
- skos:prefLabel ?prefLabel ;
6
- skos:altLabel ?altLabel ;
7
- skos:hiddenLabel ?hiddenLabel ;
8
- skos:scopeNote ?scopeNote .
9
- ?uri skos:broader ?broader_uri .
10
- ?broader_uri skos:prefLabel ?broader_prefLabel .
11
- ?uri skos:narrower ?narrower_uri .
12
- ?narrower_uri skos:prefLabel ?narrower_prefLabel .
13
- }
14
- WHERE {
15
- ?uri ?predicate ?label .
16
- VALUES ?predicate { skos:prefLabel skos:altLabel }
17
- FILTER(LANG(?label) = "nl")
18
- FILTER(CONTAINS(LCASE(?label), LCASE(?query)))
19
- OPTIONAL {
20
- ?uri skos:prefLabel ?prefLabel .
21
- FILTER(LANG(?prefLabel) = "nl")
22
- }
23
- OPTIONAL {
24
- ?uri skos:altLabel ?altLabel .
25
- FILTER(LANG(?altLabel) = "nl")
26
- }
27
- OPTIONAL {
28
- ?uri skos:hiddenLabel ?hiddenLabel .
29
- FILTER(LANG(?hiddenLabel) = "nl")
30
- }
31
- OPTIONAL {
32
- ?uri skos:scopeNote ?scopeNote .
33
- FILTER(LANG(?scopeNote) = "nl")
34
- }
35
- OPTIONAL {
36
- ?uri skos:broader ?broader_uri .
37
- ?broader_uri skos:prefLabel ?broader_prefLabel .
38
- FILTER(LANG(?broader_prefLabel) = "nl")
39
- }
40
- OPTIONAL {
41
- ?uri skos:narrower ?narrower_uri .
42
- ?narrower_uri skos:prefLabel ?narrower_prefLabel .
43
- FILTER(LANG(?narrower_prefLabel) = "nl")
44
- }
45
- }
46
- LIMIT 1000