@netwerk-digitaal-erfgoed/network-of-terms-catalog 6.15.0 → 6.16.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.
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
|
|
3
|
+
"@id": "https://iconclass.org",
|
|
4
|
+
"@type": "Dataset",
|
|
5
|
+
"name": [
|
|
6
|
+
{
|
|
7
|
+
"@language": "nl",
|
|
8
|
+
"@value": "Iconclass"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"creator": [
|
|
12
|
+
{
|
|
13
|
+
"@id": "https://henrivandewaalfoundation.org"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"url": [
|
|
17
|
+
"http://iconclass.org/"
|
|
18
|
+
],
|
|
19
|
+
"description": [
|
|
20
|
+
{
|
|
21
|
+
"@language": "nl",
|
|
22
|
+
"@value": "Termen voor het beschrijven van de inhoud van afbeeldingen"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"distribution": [
|
|
26
|
+
{
|
|
27
|
+
"@id": "https://iconclass.org/sparql",
|
|
28
|
+
"@type": "DataDownload",
|
|
29
|
+
"contentUrl": "https://iconclass.org/sparql",
|
|
30
|
+
"encodingFormat": "application/sparql-query",
|
|
31
|
+
"potentialAction": [
|
|
32
|
+
{
|
|
33
|
+
"@type": "SearchAction",
|
|
34
|
+
"query": "file://catalog/queries/search/iconclass.rq"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"@type": "FindAction",
|
|
38
|
+
"query": "file://catalog/queries/lookup/iconclass.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
|
+
}
|
|
@@ -96,6 +96,12 @@
|
|
|
96
96
|
"@type": "Organization",
|
|
97
97
|
"name": "Indisch Herinneringscentrum",
|
|
98
98
|
"alternateName": "IHC"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"@id": "https://henrivandewaalfoundation.org",
|
|
102
|
+
"@type": "Organization",
|
|
103
|
+
"name": "Henri van de Waal Foundation",
|
|
104
|
+
"alternateName": "Henri van de Waal"
|
|
99
105
|
}
|
|
100
106
|
]
|
|
101
107
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
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:broader ?broader_uri ;
|
|
7
|
+
skos:narrower ?narrower_uri ;
|
|
8
|
+
skos:related ?related_uri .
|
|
9
|
+
|
|
10
|
+
?broader_uri skos:prefLabel ?broader_prefLabel .
|
|
11
|
+
?narrower_uri skos:prefLabel ?narrower_prefLabel .
|
|
12
|
+
?related_uri skos:prefLabel ?related_prefLabel .
|
|
13
|
+
}
|
|
14
|
+
WHERE {
|
|
15
|
+
?uri a skos:Concept ;
|
|
16
|
+
skos:prefLabel ?prefLabel .
|
|
17
|
+
|
|
18
|
+
VALUES ?uri { ?uris }
|
|
19
|
+
|
|
20
|
+
OPTIONAL {
|
|
21
|
+
?uri skos:broader ?broader_uri .
|
|
22
|
+
?broader_uri skos:prefLabel ?broader_prefLabel .
|
|
23
|
+
}
|
|
24
|
+
OPTIONAL {
|
|
25
|
+
?uri skos:narrower ?narrower_uri .
|
|
26
|
+
?narrower_uri skos:prefLabel ?narrower_prefLabel .
|
|
27
|
+
}
|
|
28
|
+
OPTIONAL {
|
|
29
|
+
?uri skos:related ?related_uri .
|
|
30
|
+
?narrower_uri skos:prefLabel ?related_prefLabel .
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
LIMIT 1000
|
|
@@ -0,0 +1,34 @@
|
|
|
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:broader ?broader_uri ;
|
|
7
|
+
skos:narrower ?narrower_uri ;
|
|
8
|
+
skos:related ?related_uri .
|
|
9
|
+
|
|
10
|
+
?broader_uri skos:prefLabel ?broader_prefLabel .
|
|
11
|
+
?narrower_uri skos:prefLabel ?narrower_prefLabel .
|
|
12
|
+
?related_uri skos:prefLabel ?related_prefLabel .
|
|
13
|
+
}
|
|
14
|
+
WHERE {
|
|
15
|
+
?uri a skos:Concept ;
|
|
16
|
+
skos:prefLabel ?prefLabel .
|
|
17
|
+
|
|
18
|
+
FILTER(CONTAINS(LCASE(?prefLabel), LCASE(?query)))
|
|
19
|
+
|
|
20
|
+
# Including these OPTIONALs slows down the query too much.
|
|
21
|
+
# OPTIONAL {
|
|
22
|
+
# ?uri skos:broader ?broader_uri .
|
|
23
|
+
# ?broader_uri skos:prefLabel ?broader_prefLabel .
|
|
24
|
+
# }
|
|
25
|
+
# OPTIONAL {
|
|
26
|
+
# ?uri skos:narrower ?narrower_uri .
|
|
27
|
+
# ?narrower_uri skos:prefLabel ?narrower_prefLabel .
|
|
28
|
+
# }
|
|
29
|
+
# OPTIONAL {
|
|
30
|
+
# ?uri skos:related ?related_uri .
|
|
31
|
+
# ?narrower_uri skos:prefLabel ?related_prefLabel .
|
|
32
|
+
# }
|
|
33
|
+
}
|
|
34
|
+
LIMIT 1000
|