-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_production.ttl
440 lines (405 loc) · 21.9 KB
/
config_production.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
@prefix : <#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix skosmos: <http://purl.org/net/skosmos#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix mdrtype: <http://publications.europa.eu/resource/authority/dataset-type/> .
# Skosmos main configuration
# ACDH-CH-RedmineIssue: 19793
:config a skosmos:Configuration ;
# SPARQL endpoint
# a local Fuseki server is usually on localhost:3030
skosmos:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> ;
# sparql-query extension, or "Generic" for plain SPARQL 1.1
# set to "JenaText" instead if you use Fuseki with jena-text index
# 2022-11-23 kil: JenaText must be created, until then use temporary Generic
# skosmos:sparqlDialect "Generic" ;
skosmos:sparqlDialect "JenaText" ;
# whether to enable collation in sparql queries
skosmos:sparqlCollationEnabled false ;
# HTTP client configuration
skosmos:sparqlTimeout 20 ;
skosmos:httpTimeout 5 ;
# customize the service name
skosmos:serviceName "SSH vocabulary service" ;
# customize the base element. Set this if the automatic base url detection doesn't work. For example setups behind a proxy.
# kil(acdh-ch) 2020-09-25: be aware to add the ending trail otherwise concepts do not resolve correctly (if they are pointing to this skosmos)
# 2020-09-29 kil #18251: Don't use baseHref as we get the domain by the proxy
# skosmos:baseHref "https://vocabs-commons.acdh-dev.oeaw.ac.at/" ;
# skosmos:baseHref "https://vocabs.dariah.eu/" ;
# interface languages available, and the corresponding system locales
skosmos:languages (
[ rdfs:label "en" ; rdf:value "en_GB.utf8" ]
[ rdfs:label "de" ; rdf:value "de_DE.utf8" ]
[ rdfs:label "ar" ; rdf:value "ar_AE.utf8" ]
[ rdfs:label "da" ; rdf:value "da_DK.utf8" ]
[ rdfs:label "en_US" ; rdf:value "en_US.utf8" ]
[ rdfs:label "es" ; rdf:value "es_ES.utf8" ]
[ rdfs:label "fa" ; rdf:value "fa_IR.utf8" ]
[ rdfs:label "fi" ; rdf:value "fi_FI.utf8" ]
[ rdfs:label "fr" ; rdf:value "fr_FR.utf8" ]
[ rdfs:label "it" ; rdf:value "it_IT.utf8" ]
[ rdfs:label "nb" ; rdf:value "nb_NO.utf8" ]
[ rdfs:label "nl" ; rdf:value "nl_NL.utf8" ]
[ rdfs:label "nn" ; rdf:value "nn_NO.utf8" ]
[ rdfs:label "pl" ; rdf:value "pl_PL.utf8" ]
[ rdfs:label "pt" ; rdf:value "pt_PT.utf8" ]
[ rdfs:label "pt_BR" ; rdf:value "pt_BR.utf8" ]
[ rdfs:label "ru" ; rdf:value "ru_RU.utf8" ]
[ rdfs:label "sv" ; rdf:value "sv_SE.utf8" ]
[ rdfs:label "zh" ; rdf:value "zh_CN.utf8" ]
) ;
# how many results (maximum) to load at a time on the search results page
skosmos:searchResultsSize 20 ;
# how many items (maximum) to retrieve in transitive property queries
skosmos:transitiveLimit 1000 ;
# whether or not to log caught exceptions
skosmos:logCaughtExceptions false ;
# set to TRUE to enable logging into browser console
skosmos:logBrowserConsole false ;
# set to a logfile path to enable logging into log file
# skosmos:logFileName "?" ;
# a default location for Twig template rendering
skosmos:templateCache "/tmp/skosmos-template-cache" ;
# customize the css by adding your own stylesheet
skosmos:customCss "resource/css/stylesheet.css" ;
# default email address where to send the feedback
skosmos:feedbackAddress "" ;
# email address to set as the sender for feedback messages
skosmos:feedbackSender "" ;
# email address to set as the envelope sender for feedback messages
skosmos:feedbackEnvelopeSender "" ;
# whether to display the ui language selection as a dropdown (useful for cases where there are more than 3 languages)
skosmos:uiLanguageDropdown true ;
# whether to enable the spam honey pot or not, enabled by default
skosmos:uiHoneypotEnabled true ;
# default time a user must wait before submitting a form
skosmos:uiHoneypotTime 5 ;
# plugins to activate for the whole installation (including all vocabularies)
skosmos:globalPlugins ( "matomo-common" ) .
# Skosmos vocabularies
# Category :cat_sshomp
# ACDH-CH-RedmineIssue: 21417
:publication-type a skosmos:Vocabulary, void:Dataset ;
dc:title "BIBO Publication Type"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "http://purl.org/ontology/bibo/" ;
skosmos:shortName "publication-type" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <http://purl.org/ontology/bibo/publicationTypeScheme> ;
skosmos:sparqlGraph <http://purl.org/ontology/bibo/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/publication-type/publication-type.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21386
:eosc-resource-category a skosmos:Vocabulary, void:Dataset ;
dc:title "EOSC Resource Category, Subcategory (and Supercategory)"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/eosc-resource-category/" ;
skosmos:shortName "eosc-resource-category" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/eosc-resource-category/eoscResourceCategoryScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/eosc-resource-category/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/eosc/resource-category/eosc-resource-category.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21383
:eosc-geographical-availability a skosmos:Vocabulary, void:Dataset ;
dc:title "EOSC Resource Geographical Availability"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/eosc-geographical-availability/" ;
skosmos:shortName "eosc-geographical-availability" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/eosc-geographical-availability/eoscGeographicalAvailabilityScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/eosc-geographical-availability/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/eosc/geographical-availability/eosc-geographical-availability.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21385
:eosc-life-cycle-status a skosmos:Vocabulary, void:Dataset ;
dc:title "EOSC Resource Life Cycle Status"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/eosc-life-cycle-status/" ;
skosmos:shortName "eosc-life-cycle-status" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/eosc-life-cycle-status/eoscLifeCycleStatusScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/eosc-life-cycle-status/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/eosc/life-cycle-status/eosc-life-cycle-status.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21387
:eosc-technology-readiness-level a skosmos:Vocabulary, void:Dataset ;
dc:title "EOSC Resource Technology Readiness Level"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/eosc-technology-readiness-level/" ;
skosmos:shortName "eosc-technology-readiness-level" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/eosc-technology-readiness-level/eoscTechnologyReadinessLevelScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/eosc-technology-readiness-level/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/eosc/technology-readiness-level/eosc-technology-readiness-level.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21413
:media-type a skosmos:Vocabulary, void:Dataset ;
dc:title "IANA Media Types"@en ;
dc:subject :cat_sshomp , :cat_sshconv ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/media-type/" ;
skosmos:shortName "media-type" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/media-type/mediaTypeScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/media-type/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/iana-media-types/iana-media-type.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21193
:sshoc-audience a skosmos:Vocabulary, void:Dataset ;
dc:title "Intended audience"@en ;
dc:subject :cat_sshomp , :cat_sshtdt ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshoc-audience/" ;
skosmos:shortName "sshoc-audience" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:groupClass skos:Collection ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshoc-audience/audienceScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshoc-audience/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/sshoc-audience/audience.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21134
:invocation-type a skosmos:Vocabulary, void:Dataset ;
dc:title "Invocation type"@en ;
dc:subject :cat_sshomp , :cat_sshconv ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/invocation-type/" ;
skosmos:shortName "invocation-type" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/invocation-type/invocationTypeScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/invocation-type/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/invocation-type/invocation-type.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21415
:software-license a skosmos:Vocabulary, void:Dataset ;
dc:title "SPDX Software License"@en ;
dc:subject :cat_sshomp , :cat_sshconv , :cat_sshtdt ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "http://spdx.org/licenses/" ;
skosmos:shortName "software-license" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://sshoc.poolparty.biz/Vocabularies/f8e37d35-c5fe-48d5-a9e1-2f8116726980> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/software-license/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/software-license/software-license.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 22506
:sshomp-format a skosmos:Vocabulary, void:Dataset ;
dc:title "SSH Open Marketplace Format"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshomp-format/" ;
skosmos:shortName "sshomp-format" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:showNotation "false" ;
skosmos:hasMultiLingualProperty "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshomp-format/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshomp-format/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/sshomp-format/sshomp-format.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql>
.
# ACDH-CH-RedmineIssue: 21424
:sshomp-keyword a skosmos:Vocabulary, void:Dataset ;
dc:title "SSH Open Marketplace Keyword"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshomp-keyword/" ;
skosmos:shortName "sshomp-keyword" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "false" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshomp-keyword/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshomp-keyword/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/sshomp-keyword/sshomp-keyword.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21416
:standard a skosmos:Vocabulary, void:Dataset ;
dc:title "SSK Standard"@en ;
dc:subject :cat_sshomp ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/standard/" ;
skosmos:shortName "standard" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/standard/standardScheme> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/standard/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOpenMarketplace/standard/standard.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# Category :cat_sshtdt
# ACDH-CH-RedmineIssue: 21310
:sshoc-training-resource-format a skosmos:Vocabulary, void:Dataset ;
dc:title "Formats of training resources"@en ;
dc:subject :cat_sshtdt ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshoc-training-resource-format/" ;
skosmos:shortName "sshoc-training-resource-format" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshoc-training-resource-format/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshoc-training-resource-format/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHTrainingDiscoveryToolkit/sshoc-training-resource-format/sshoc-training-resource-format.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21307
:sshoc-training-resource-status a skosmos:Vocabulary, void:Dataset ;
dc:title "Status of training resources"@en ;
dc:subject :cat_sshtdt ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshoc-training-resource-status/" ;
skosmos:shortName "sshoc-training-resource-status" ;
skosmos:defaultLanguage "en" ;
skosmos:language "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshoc-training-resource-status/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshoc-training-resource-status/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHTrainingDiscoveryToolkit/sshoc-training-resource-status/sshoc-training-resource-status.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# Category :cat_sshoc
# ACDH-CH-RedmineIssue: 21422
:sshocterm a skosmos:Vocabulary, void:Dataset ;
dc:title "SSHOC Multilingual Data Stewardship Terminology"@en ;
dc:subject :cat_sshoc ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshocterm/" ;
skosmos:shortName "sshocterm" ;
skosmos:language "en", "nl", "el", "fr", "de", "it", "sl" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshocterm/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshocterm/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOC/data-stewardship-terminology/data-stewardship-terminology.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# ACDH-CH-RedmineIssue: 21423
:sshocmm a skosmos:Vocabulary, void:Dataset ;
dc:title "SSHOC Multilingual Metadata"@en ;
dc:subject :cat_sshoc ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/sshocmm/" ;
skosmos:shortName "sshocmm" ;
skosmos:language "en", "nl", "el", "fr", "de", "it", "sl" ;
skosmos:defaultLanguage "en" ;
skosmos:showNotation "false" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/sshocmm> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/sshocmm/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/SSHOC/multilingual-metadata/multilingual-metadata.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql> .
# Category :cat_csd
# ACDH-CH-RedmineIssue: 22252
:csd-linguistic-subjects a skosmos:Vocabulary, void:Dataset ;
dc:title "CLARIN taxonomy for Linguistic Subjects"@en ;
dc:subject :cat_csd ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/csd-linguistic-subjects/" ;
skosmos:shortName "csd-linguistic-subjects" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:showNotation "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/csd-linguistic-subjects/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/csd-linguistic-subjects/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/CSD/csd_linguistic_subjects/CSDLinguisticSubjects.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql>
.
# ACDH-CH-RedmineIssue: 22270
:csd-tool-tasks a skosmos:Vocabulary, void:Dataset ;
dc:title "CLARIN taxonomy for tools and services tasks"@en ;
dc:subject :cat_csd ;
dc:type mdrtype:THESAURUS ;
void:uriSpace "https://vocabs.sshopencloud.eu/vocabularies/csd-tool-tasks/" ;
skosmos:shortName "csd-tool-tasks" ;
skosmos:language "en" ;
skosmos:defaultLanguage "en" ;
skosmos:showTopConcepts "true" ;
skosmos:fullAlphabeticalIndex "true" ;
skosmos:showNotation "false" ;
skosmos:mainConceptScheme <https://vocabs.sshopencloud.eu/vocabularies/csd-tool-tasks/> ;
skosmos:sparqlGraph <https://vocabs.sshopencloud.eu/vocabularies/csd-tool-tasks/> ;
void:dataDump <https://vocabs-downloads.acdh.oeaw.ac.at/vocabs-common/CSD/csd_tool_tasks/CSDToolTasks.ttl> ;
void:sparqlEndpoint <http://apache-jena-fuseki:3030/vocabs-common/sparql>
.
# Skosmos categories/subjects
:categories a skos:ConceptScheme;
skos:prefLabel "Skosmos Vocabulary Categories"@en .
:cat_sshomp a skos:Concept ;
skos:topConceptOf :categories ;
skos:inScheme :categories ;
skos:prefLabel "SSH Open Marketplace"@de , "SSH Open Marketplace"@en .
:cat_sshconv a skos:Concept ;
skos:topConceptOf :categories ;
skos:inScheme :categories ;
skos:prefLabel "SSH Conversion Hub"@de , "SSH Conversion Hub"@en .
:cat_sshtdt a skos:Concept ;
skos:topConceptOf :categories ;
skos:inScheme :categories ;
skos:prefLabel "SSH Training Discovery Toolkit"@de , "SSH Training Discovery Toolkit"@en .
:cat_sshoc a skos:Concept ;
skos:topConceptOf :categories ;
skos:inScheme :categories ;
skos:prefLabel "SSHOC"@de , "SSHOC"@en .
:cat_csd a skos:Concept ;
skos:topConceptOf :categories ;
skos:inScheme :categories ;
skos:prefLabel "CLARIN Service Description"@de , "CLARIN Service Description"@en .
# Skosmos mdrtypes
mdrtype:THESAURUS a skos:Concept ;
skos:prefLabel "Тезаурус"@bg, "Tezaurus"@cs, "Tesaurus"@da, "Thesaurus"@de, "Θησαυρός"@el, "Thesaurus"@en, "Tesaurus"@et, "Tesaurus"@fi, "Thésaurus"@fr, "Pojmovnik"@hr, "Tezaurusz"@hu, "Tesauro"@it, "Tēzaurs"@lv, "Tezauras"@lt, "Teżawru"@mt, "Thesaurus"@nl, "Tesaurus"@no, "Tezaurus"@pl, "Tesauro"@pt, "Tezaur"@ro, "Synonymický slovník"@sk, "Tezaver"@sl, "Tesauro"@es, "Tesaurus"@sv .