@netwerk-digitaal-erfgoed/network-of-terms-catalog 9.10.0 → 9.12.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/catalog/datasets/rijksmonumenten.jsonld +1 -1
- package/catalog/datasets/rkdartists.jsonld +2 -2
- package/catalog/queries/lookup/rijksmonumenten.rq +37 -45
- package/catalog/queries/lookup/rkdartists.rq +49 -11
- package/catalog/queries/search/rijksmonumenten.rq +41 -49
- package/catalog/queries/search/rkdartists.rq +51 -14
- package/package.json +5 -5
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
{
|
|
36
36
|
"@id": "https://linkeddata.cultureelerfgoed.nl/cho-kennis/id/rijksmonument/",
|
|
37
37
|
"@type": "DataDownload",
|
|
38
|
-
"contentUrl": "https://api.linkeddata.cultureelerfgoed.nl/datasets/rce/
|
|
38
|
+
"contentUrl": "https://api.linkeddata.cultureelerfgoed.nl/datasets/rce/Rijksmonumenten-sdo/services/Rijksmonumenten-sdo/sparql",
|
|
39
39
|
"encodingFormat": "application/sparql-query",
|
|
40
40
|
"potentialAction": [
|
|
41
41
|
{
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"inLanguage": "nl",
|
|
34
34
|
"distribution": [
|
|
35
35
|
{
|
|
36
|
-
"@id": "https://
|
|
36
|
+
"@id": "https://api.rkd.triply.cc/datasets/rkd/RKD-SDO-Knowledge-Graph/sparql",
|
|
37
37
|
"@type": "DataDownload",
|
|
38
|
-
"contentUrl": "https://api.
|
|
38
|
+
"contentUrl": "https://api.rkd.triply.cc/datasets/rkd/RKD-SDO-Knowledge-Graph/services/Virtuoso/sparql",
|
|
39
39
|
"encodingFormat": "application/sparql-query",
|
|
40
40
|
"potentialAction": [
|
|
41
41
|
{
|
|
@@ -3,60 +3,52 @@ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
|
3
3
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
4
4
|
PREFIX ceosp: <https://linkeddata.cultureelerfgoed.nl/def/ceosp/>
|
|
5
5
|
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
|
6
|
-
|
|
6
|
+
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
7
|
+
PREFIX schema: <https://schema.org/>
|
|
7
8
|
|
|
8
9
|
CONSTRUCT {
|
|
9
|
-
?
|
|
10
|
+
?uri a skos:Concept ;
|
|
10
11
|
skos:prefLabel ?rijksmonumentnummer_tn ;
|
|
11
|
-
skos:altLabel ?
|
|
12
|
+
skos:altLabel ?adres_lang ;
|
|
12
13
|
skos:scopeNote ?scopeNote ;
|
|
13
|
-
rdfs:seeAlso ?
|
|
14
|
+
rdfs:seeAlso ?monument_url .
|
|
14
15
|
}
|
|
15
16
|
WHERE {
|
|
16
|
-
VALUES ?
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
VALUES ?uri { ?uris }
|
|
19
18
|
|
|
20
|
-
?
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
OPTIONAL { ?monument_uri ceo:isOnderdeelVanComplex/ceo:heeftHoofdobject/ceo:rijksmonumentnummer ?rijksmonumentnummer_hoofdobject }
|
|
29
|
-
OPTIONAL { ?monument_uri ceo:heeftBasisregistratieRelatie/ceo:heeftBAGRelatie/ceo:volledigAdres ?adres1 }
|
|
30
|
-
|
|
31
|
-
BIND(CONCAT(
|
|
32
|
-
IF(BOUND(?woonplaats), CONCAT(?woonplaats, " "), ""),
|
|
33
|
-
IF(BOUND(?omschrijving_label), CONCAT(?omschrijving_label, " "), ""),
|
|
34
|
-
IF(BOUND(?adres1), CONCAT(?adres1, " "), "")
|
|
35
|
-
) AS ?combinedLabels)
|
|
19
|
+
?uri schema:name ?naam ;
|
|
20
|
+
schema:identifier ?rijksmonumentnummer ;
|
|
21
|
+
schema:category ?monumentaard ;
|
|
22
|
+
schema:postalCode ?postcode ;
|
|
23
|
+
schema:additionalType ?functie ;
|
|
24
|
+
schema:addressLocality ?woonplaats ;
|
|
25
|
+
schema:State ?provincie ;
|
|
26
|
+
schema:sameAs ?monument_url .
|
|
36
27
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
BIND(URI(CONCAT("https://monumentenregister.cultureelerfgoed.nl/monumenten/", ?rijksmonumentnummer)) as ?rdfs_seeAlso)
|
|
40
28
|
BIND(CONCAT("Rijksmonumentnummer ", ?rijksmonumentnummer) as ?rijksmonumentnummer_tn)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
IF(BOUND(?woonplaats), CONCAT(" ",?woonplaats, ", "), ""),
|
|
44
|
-
IF(BOUND(?functie), CONCAT("Oorspronkelijke functie: ", ?functie), ""),
|
|
45
|
-
IF(BOUND(?naam), CONCAT(", Naam: ", ?naam), ""),
|
|
46
|
-
IF(BOUND(?rijksmonumentnummer_hoofdobject) && ?rijksmonumentnummer != ?rijksmonumentnummer_hoofdobject,
|
|
47
|
-
CONCAT(", Rijksmonumentnummer van hoofdobject: ", ?rijksmonumentnummer_hoofdobject),
|
|
48
|
-
""
|
|
49
|
-
)
|
|
50
|
-
) as ?scopeNote)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
29
|
+
|
|
30
|
+
# Aggregate and get the minimum address as ?adres2
|
|
54
31
|
{
|
|
55
|
-
SELECT ?
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
BIND(IF(BOUND(?adres1), ?adres1, "Geen adres beschikbaar") AS ?optional_altlabel)
|
|
32
|
+
SELECT ?uri (MIN(?adres) AS ?adres2)
|
|
33
|
+
WHERE {
|
|
34
|
+
OPTIONAL { ?uri schema:address ?adres . }
|
|
59
35
|
}
|
|
60
|
-
GROUP BY ?
|
|
36
|
+
GROUP BY ?uri
|
|
61
37
|
}
|
|
62
|
-
|
|
38
|
+
|
|
39
|
+
BIND(
|
|
40
|
+
CONCAT(
|
|
41
|
+
"Naam: ", STR(?naam),
|
|
42
|
+
" / Oorspronkelijke functie: ", STR(?functie),
|
|
43
|
+
" / Type monument: ", STR(?monumentaard)
|
|
44
|
+
) AS ?scopeNote
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
BIND(
|
|
48
|
+
CONCAT(
|
|
49
|
+
IF(BOUND(?adres2), CONCAT(STR(?adres2), " "), ""),
|
|
50
|
+
STR(?postcode), " ", STR(?woonplaats)
|
|
51
|
+
) AS ?adres_lang
|
|
52
|
+
)
|
|
53
|
+
}
|
|
54
|
+
LIMIT 200
|
|
@@ -1,27 +1,65 @@
|
|
|
1
1
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
2
|
-
PREFIX schema: <
|
|
2
|
+
PREFIX schema: <https://schema.org/>
|
|
3
3
|
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
|
4
4
|
|
|
5
5
|
CONSTRUCT {
|
|
6
6
|
?uri a skos:Concept ;
|
|
7
|
-
skos:prefLabel ?
|
|
8
|
-
skos:altLabel ?
|
|
9
|
-
skos:scopeNote ?
|
|
10
|
-
rdfs:seeAlso ?
|
|
7
|
+
skos:prefLabel ?prefLabel ;
|
|
8
|
+
skos:altLabel ?altLabel ;
|
|
9
|
+
skos:scopeNote ?scopeNote ;
|
|
10
|
+
rdfs:seeAlso ?seeAlso .
|
|
11
11
|
}
|
|
12
12
|
WHERE {
|
|
13
13
|
# For example:
|
|
14
14
|
# Rembrandt: <https://data.rkd.nl/artists/66219>
|
|
15
15
|
# Vincent van Gogh: <https://data.rkd.nl/artists/32439>
|
|
16
16
|
VALUES ?uri { ?uris }
|
|
17
|
+
{
|
|
18
|
+
SELECT ?uri
|
|
19
|
+
(GROUP_CONCAT(DISTINCT ?schema_description; separator="; ") as ?descriptions)
|
|
20
|
+
(GROUP_CONCAT(DISTINCT ?birthPlace; separator="/") as ?birthPlaces)
|
|
21
|
+
(GROUP_CONCAT(DISTINCT ?deathPlace; separator="/") as ?deathPlaces)
|
|
22
|
+
(GROUP_CONCAT(DISTINCT ?additionalType; separator=", ") as ?additionalTypes)
|
|
23
|
+
WHERE {
|
|
24
|
+
?uri a ?type .
|
|
25
|
+
VALUES ?type { schema:Person schema:Organization }
|
|
17
26
|
|
|
18
|
-
|
|
19
|
-
|
|
27
|
+
OPTIONAL { ?uri schema:description ?schema_description . }
|
|
28
|
+
OPTIONAL { ?uri schema:birthPlace ?birthPlace .
|
|
29
|
+
FILTER(langMatches(lang(?birthPlace), "nl")) }
|
|
30
|
+
OPTIONAL { ?uri schema:deathPlace ?deathPlace .
|
|
31
|
+
FILTER(langMatches(lang(?deathPlace), "nl"))}
|
|
32
|
+
OPTIONAL { ?uri schema:additionalType ?additionalType .
|
|
33
|
+
FILTER(langMatches(lang(?additionalType), "nl"))}
|
|
20
34
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
35
|
+
} GROUP BY ?uri
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
OPTIONAL { ?uri schema:name ?prefLabel . }
|
|
39
|
+
OPTIONAL { ?uri schema:alternateName ?altLabel . }
|
|
40
|
+
OPTIONAL { ?uri schema:birthDate ?birthDate . }
|
|
41
|
+
OPTIONAL { ?uri schema:deathDate ?deathDate . }
|
|
42
|
+
|
|
43
|
+
BIND(
|
|
44
|
+
CONCAT(
|
|
45
|
+
IF(BOUND(?birthDate) || STRLEN(?birthPlaces) > 0 ,
|
|
46
|
+
CONCAT(
|
|
47
|
+
IF(BOUND(?birthDate), CONCAT(?birthDate, " "), ""),
|
|
48
|
+
IF(STRLEN(?birthPlaces) > 0, CONCAT("(", ?birthPlaces, ") "), ""),
|
|
49
|
+
IF(BOUND(?deathDate) || STRLEN(?deathPlaces) > 0," - "," - ; ")),
|
|
50
|
+
""),
|
|
51
|
+
IF(BOUND(?deathDate) || STRLEN(?deathPlaces) > 0,
|
|
52
|
+
CONCAT(
|
|
53
|
+
IF(BOUND(?birthDate) || STRLEN(?birthPlaces) > 0 , "", "- "),
|
|
54
|
+
IF(BOUND(?deathDate), CONCAT(?deathDate, " "), ""),
|
|
55
|
+
IF(STRLEN(?deathPlaces) > 0, CONCAT("(", ?deathPlaces, ")"), ""),
|
|
56
|
+
"; "),
|
|
57
|
+
""),
|
|
58
|
+
IF(STRLEN(?additionalTypes) > 0, CONCAT(?additionalTypes, ". "), ""),
|
|
59
|
+
IF(STRLEN(?descriptions) > 0, CONCAT(?descriptions, ". "), "")
|
|
60
|
+
) as ?scopeNote
|
|
61
|
+
)
|
|
24
62
|
BIND(STRAFTER(STR(?uri), "https://data.rkd.nl/artists/") AS ?identifier)
|
|
25
|
-
BIND(IRI(CONCAT("https://rkd.nl/explore/artists/", ?identifier)) AS ?
|
|
63
|
+
BIND(IRI(CONCAT("https://rkd.nl/explore/artists/", ?identifier)) AS ?seeAlso)
|
|
26
64
|
}
|
|
27
65
|
LIMIT 1000
|
|
@@ -3,62 +3,54 @@ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
|
3
3
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
4
4
|
PREFIX ceosp: <https://linkeddata.cultureelerfgoed.nl/def/ceosp/>
|
|
5
5
|
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
|
6
|
-
|
|
6
|
+
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
7
|
+
PREFIX schema: <https://schema.org/>
|
|
7
8
|
|
|
8
9
|
CONSTRUCT {
|
|
9
|
-
|
|
10
|
-
?monument_uri a skos:Concept ;
|
|
10
|
+
?uri a skos:Concept ;
|
|
11
11
|
skos:prefLabel ?rijksmonumentnummer_tn ;
|
|
12
|
-
skos:altLabel ?
|
|
12
|
+
skos:altLabel ?adres_lang ;
|
|
13
13
|
skos:scopeNote ?scopeNote ;
|
|
14
|
-
rdfs:seeAlso ?
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
FILTER(CONTAINS(LCASE(?combinedLabels), LCASE(?query)))
|
|
21
|
-
|
|
22
|
-
?monument_uri ceo:rijksmonumentnummer ?rijksmonumentnummer .
|
|
23
|
-
?monument_uri a ceo:Rijksmonument .
|
|
24
|
-
OPTIONAL { ?monument_uri ceo:heeftNaam/ceo:naam ?naam } .
|
|
25
|
-
OPTIONAL { ?monument_uri ceo:heeftBasisregistratieRelatie/ceo:heeftGemeente/skos:prefLabel ?woonplaats }
|
|
26
|
-
OPTIONAL { ?monument_uri ceo:heeftOorspronkelijkeFunctie/ceo:heeftFunctieNaam/skos:prefLabel ?functie }
|
|
27
|
-
OPTIONAL { ?monument_uri ceo:heeftOmschrijving ?redengevende_omschrijving .
|
|
28
|
-
?redengevende_omschrijving ceo:omschrijving ?omschrijving_label .
|
|
29
|
-
?redengevende_omschrijving ceo:formeelStandpunt "1"^^xsd:boolean .}
|
|
30
|
-
OPTIONAL { ?monument_uri ceo:isOnderdeelVanComplex/ceo:heeftHoofdobject/ceo:rijksmonumentnummer ?rijksmonumentnummer_hoofdobject }
|
|
31
|
-
OPTIONAL { ?monument_uri ceo:heeftBasisregistratieRelatie/ceo:heeftBAGRelatie/ceo:volledigAdres ?adres1 }
|
|
32
|
-
|
|
33
|
-
BIND(CONCAT(
|
|
34
|
-
IF(BOUND(?woonplaats), CONCAT(?woonplaats, " "), ""),
|
|
35
|
-
IF(BOUND(?omschrijving_label), CONCAT(?omschrijving_label, " "), ""),
|
|
36
|
-
IF(BOUND(?adres1), CONCAT(?adres1, " "), "")
|
|
37
|
-
) AS ?combinedLabels)
|
|
14
|
+
rdfs:seeAlso ?monument_url .
|
|
15
|
+
}
|
|
16
|
+
WHERE {
|
|
17
|
+
?uri ?predicate ?label .
|
|
18
|
+
FILTER(CONTAINS(LCASE(?label), LCASE(?query)))
|
|
19
|
+
VALUES ?predicate { schema:addressLocality schema:identifier schema:address schema:name schema:State }
|
|
38
20
|
|
|
21
|
+
?uri schema:name ?naam ;
|
|
22
|
+
schema:identifier ?rijksmonumentnummer ;
|
|
23
|
+
schema:category ?monumentaard ;
|
|
24
|
+
schema:postalCode ?postcode ;
|
|
25
|
+
schema:additionalType ?functie ;
|
|
26
|
+
schema:addressLocality ?woonplaats ;
|
|
27
|
+
schema:State ?provincie ;
|
|
28
|
+
schema:sameAs ?monument_url .
|
|
39
29
|
|
|
40
|
-
|
|
41
|
-
BIND(URI(CONCAT("https://monumentenregister.cultureelerfgoed.nl/monumenten/", ?rijksmonumentnummer)) as ?rdfs_seeAlso)
|
|
42
30
|
BIND(CONCAT("Rijksmonumentnummer ", ?rijksmonumentnummer) as ?rijksmonumentnummer_tn)
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
IF(BOUND(?woonplaats), CONCAT(" ",?woonplaats, ", "), ""),
|
|
46
|
-
IF(BOUND(?functie), CONCAT("Oorspronkelijke functie: ", ?functie), ""),
|
|
47
|
-
IF(BOUND(?naam), CONCAT(", Naam: ", ?naam), ""),
|
|
48
|
-
IF(BOUND(?rijksmonumentnummer_hoofdobject) && ?rijksmonumentnummer != ?rijksmonumentnummer_hoofdobject,
|
|
49
|
-
CONCAT(", Rijksmonumentnummer van hoofdobject: ", ?rijksmonumentnummer_hoofdobject),
|
|
50
|
-
""
|
|
51
|
-
)
|
|
52
|
-
) as ?scopeNote)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
31
|
+
|
|
32
|
+
# Aggregate and get the minimum address as ?adres2
|
|
56
33
|
{
|
|
57
|
-
SELECT ?
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
BIND(IF(BOUND(?adres1), ?adres1, "Geen adres beschikbaar") AS ?optional_altlabel)
|
|
34
|
+
SELECT ?uri (MIN(?adres) AS ?adres2)
|
|
35
|
+
WHERE {
|
|
36
|
+
OPTIONAL { ?uri schema:address ?adres . }
|
|
61
37
|
}
|
|
62
|
-
GROUP BY ?
|
|
38
|
+
GROUP BY ?uri
|
|
63
39
|
}
|
|
64
|
-
|
|
40
|
+
|
|
41
|
+
BIND(
|
|
42
|
+
CONCAT(
|
|
43
|
+
"Naam: ", STR(?naam),
|
|
44
|
+
" / Oorspronkelijke functie: ", STR(?functie),
|
|
45
|
+
" / Type monument: ", STR(?monumentaard)
|
|
46
|
+
) AS ?scopeNote
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
BIND(
|
|
50
|
+
CONCAT(
|
|
51
|
+
IF(BOUND(?adres2), CONCAT(STR(?adres2), " "), ""),
|
|
52
|
+
STR(?postcode), " ", STR(?woonplaats)
|
|
53
|
+
) AS ?adres_lang
|
|
54
|
+
)
|
|
55
|
+
}
|
|
56
|
+
LIMIT 200
|
|
@@ -1,28 +1,65 @@
|
|
|
1
1
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
2
|
-
PREFIX schema: <
|
|
2
|
+
PREFIX schema: <https://schema.org/>
|
|
3
3
|
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
|
4
4
|
|
|
5
5
|
CONSTRUCT {
|
|
6
6
|
?uri a skos:Concept ;
|
|
7
|
-
skos:prefLabel ?
|
|
8
|
-
skos:altLabel ?
|
|
9
|
-
skos:scopeNote ?
|
|
10
|
-
rdfs:seeAlso ?
|
|
7
|
+
skos:prefLabel ?prefLabel ;
|
|
8
|
+
skos:altLabel ?altLabel ;
|
|
9
|
+
skos:scopeNote ?scopeNote ;
|
|
10
|
+
rdfs:seeAlso ?seeAlso .
|
|
11
11
|
}
|
|
12
12
|
WHERE {
|
|
13
|
-
?uri a ?type .
|
|
14
|
-
VALUES ?type { schema:Person schema:Organization }
|
|
15
|
-
?uri ?name ?label .
|
|
16
|
-
VALUES ?name { schema:name schema:alternateName }
|
|
17
|
-
|
|
18
13
|
?uri ?predicate ?label .
|
|
19
14
|
?label <bif:contains> ?virtuosoQuery .
|
|
15
|
+
VALUES ?predicate { schema:name schema:alternateName }
|
|
16
|
+
|
|
17
|
+
{
|
|
18
|
+
SELECT ?uri
|
|
19
|
+
(GROUP_CONCAT(DISTINCT ?schema_description; separator="; ") as ?descriptions)
|
|
20
|
+
(GROUP_CONCAT(DISTINCT ?birthPlace; separator="/") as ?birthPlaces)
|
|
21
|
+
(GROUP_CONCAT(DISTINCT ?deathPlace; separator="/") as ?deathPlaces)
|
|
22
|
+
(GROUP_CONCAT(DISTINCT ?additionalType; separator=", ") as ?additionalTypes)
|
|
23
|
+
WHERE {
|
|
24
|
+
?uri a ?type .
|
|
25
|
+
VALUES ?type { schema:Person schema:Organization }
|
|
26
|
+
|
|
27
|
+
OPTIONAL { ?uri schema:description ?schema_description . }
|
|
28
|
+
OPTIONAL { ?uri schema:birthPlace ?birthPlace .
|
|
29
|
+
FILTER(langMatches(lang(?birthPlace), "nl")) }
|
|
30
|
+
OPTIONAL { ?uri schema:deathPlace ?deathPlace .
|
|
31
|
+
FILTER(langMatches(lang(?deathPlace), "nl"))}
|
|
32
|
+
OPTIONAL { ?uri schema:additionalType ?additionalType .
|
|
33
|
+
FILTER(langMatches(lang(?additionalType), "nl"))}
|
|
34
|
+
|
|
35
|
+
} GROUP BY ?uri
|
|
36
|
+
}
|
|
20
37
|
|
|
21
|
-
OPTIONAL { ?uri schema:name ?
|
|
22
|
-
OPTIONAL { ?uri schema:alternateName ?
|
|
23
|
-
OPTIONAL { ?uri schema:
|
|
38
|
+
OPTIONAL { ?uri schema:name ?prefLabel . }
|
|
39
|
+
OPTIONAL { ?uri schema:alternateName ?altLabel . }
|
|
40
|
+
OPTIONAL { ?uri schema:birthDate ?birthDate . }
|
|
41
|
+
OPTIONAL { ?uri schema:deathDate ?deathDate . }
|
|
24
42
|
|
|
43
|
+
BIND(
|
|
44
|
+
CONCAT(
|
|
45
|
+
IF(BOUND(?birthDate) || STRLEN(?birthPlaces) > 0 ,
|
|
46
|
+
CONCAT(
|
|
47
|
+
IF(BOUND(?birthDate), CONCAT(?birthDate, " "), ""),
|
|
48
|
+
IF(STRLEN(?birthPlaces) > 0, CONCAT("(", ?birthPlaces, ") "), ""),
|
|
49
|
+
IF(BOUND(?deathDate) || STRLEN(?deathPlaces) > 0," - "," - ; ")),
|
|
50
|
+
""),
|
|
51
|
+
IF(BOUND(?deathDate) || STRLEN(?deathPlaces) > 0,
|
|
52
|
+
CONCAT(
|
|
53
|
+
IF(BOUND(?birthDate) || STRLEN(?birthPlaces) > 0 , "", "- "),
|
|
54
|
+
IF(BOUND(?deathDate), CONCAT(?deathDate, " "), ""),
|
|
55
|
+
IF(STRLEN(?deathPlaces) > 0, CONCAT("(", ?deathPlaces, ")"), ""),
|
|
56
|
+
"; "),
|
|
57
|
+
""),
|
|
58
|
+
IF(STRLEN(?additionalTypes) > 0, CONCAT(?additionalTypes, ". "), ""),
|
|
59
|
+
IF(STRLEN(?descriptions) > 0, CONCAT(?descriptions, ". "), "")
|
|
60
|
+
) as ?scopeNote
|
|
61
|
+
)
|
|
25
62
|
BIND(STRAFTER(STR(?uri), "https://data.rkd.nl/artists/") AS ?identifier)
|
|
26
|
-
BIND(IRI(CONCAT("https://rkd.nl/explore/artists/", ?identifier)) AS ?
|
|
63
|
+
BIND(IRI(CONCAT("https://rkd.nl/explore/artists/", ?identifier)) AS ?seeAlso)
|
|
27
64
|
}
|
|
28
65
|
LIMIT 1000
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netwerk-digitaal-erfgoed/network-of-terms-catalog",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.12.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Catalog of Network of Terms datasets",
|
|
6
6
|
"repository": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"license": "EUPL-1.2",
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@comunica/types": "^3.1.0",
|
|
32
|
-
"@types/n3": "^1.16.
|
|
32
|
+
"@types/n3": "^1.16.5",
|
|
33
33
|
"@types/rdf-ext": "^2.5.0",
|
|
34
34
|
"gts": "^5.3.1",
|
|
35
35
|
"jsonld-streaming-parser": "^3.4.0",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/netwerk-digitaal-erfgoed/network-of-terms-catalog#readme",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@comunica/bindings-factory": "^3.2.
|
|
46
|
-
"@comunica/query-sparql": "^3.2.
|
|
47
|
-
"@comunica/query-sparql-rdfjs": "^3.2.
|
|
45
|
+
"@comunica/bindings-factory": "^3.2.1",
|
|
46
|
+
"@comunica/query-sparql": "^3.2.3",
|
|
47
|
+
"@comunica/query-sparql-rdfjs": "^3.2.3",
|
|
48
48
|
"@netwerk-digitaal-erfgoed/network-of-terms-query": "5.3.0",
|
|
49
49
|
"globby": "^14.0.2",
|
|
50
50
|
"memoize": "^10.0.0",
|