forked from linked-statistics/xkos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxkos.ttl
342 lines (266 loc) · 14.3 KB
/
xkos.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
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xkos: <http://rdf-vocabulary.ddialliance.org/xkos#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix cc: <http://creativecommons.org/ns#> .
#################################################################
# Ontology
#################################################################
<http://rdf-vocabulary.ddialliance.org/xkos> a owl:Ontology, voaf:Vocabulary ;
dc:title "XKOS: an SKOS extension for representing statistical classifications"@en , "XKOS : une extension de SKOS pour la représentation des nomenclatures statistiques"@fr ;
rdfs:comment "This ontology is based on work initiated at Dagstuhl Schloss in September 2011"@en ;
rdfs:comment "Cette ontologie est basée sur le travail commencé à Dagstuhl Schloss en septembre 2011"@fr ;
dc:contributor "Daniel Gillman", "Wendy L. Thomas", "Richard Cyganiak", "Jannik Jensen", "Thomas Bosch", "R.T.A.M. Grim", "Yves Jaques" ;
dc:creator "Franck Cotton" ;
voaf:extends <http://www.w3.org/2004/02/skos/core> ;
vann:preferredNamespacePrefix "xkos" ;
vann:preferredNamespaceUri <http://rdf-vocabulary.ddialliance.org/xkos#> ;
dc:rights "Copyright © 2016 The DDI Alliance" ;
cc:license <http://creativecommons.org/licenses/by/4.0/> ;
voaf:classNumber "4"^^xsd:integer ;
voaf:propertyNumber "40"^^xsd:integer ;
owl:versionInfo "Version 1.0.1 - 2014-11-26", "Version 1.0.2 - 2016-03-15", "Version 1.0.3 - 2016-03-15", "Version 1.1 - 2016-03-20" .
#################################################################
# Classes
#################################################################
# A classification is a skos:ConceptScheme and a classification level is a skos:Collection
# If the order of the items in the specific level is significant, this level can also be declared as an instance of skos:OrderedCollection
xkos:ClassificationLevel a rdfs:Class, owl:Class ;
rdfs:label "Classification level"@en, "Niveau de nomenclature"@fr ;
rdfs:subClassOf skos:Collection ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# The ConceptAssociation class generalizes the semantic relations modelled as properties in SKOS
xkos:ConceptAssociation a rdfs:Class, owl:Class ;
rdfs:label "Concept association"@en , "Association de concepts"@fr ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# The Correspondence is used to group concept associations between two classifications (concordances, correspondence tables...)
xkos:Correspondence a rdfs:Class, owl:Class ;
rdfs:label "Correspondence"@en , "Correspondance"@fr ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# The ExplanatoryNote class is used as a base class for all the annotations that qualify or describe the contents of the classification items
xkos:ExplanatoryNote a rdfs:Class, owl:Class ;
rdfs:label "Explanatory note"@en , "Note explicative"@fr ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
#################################################################
# Annotation properties
#################################################################
# Sub-properties of skos:scopeNote used for explanatory notes of classifications
xkos:inclusionNote a rdf:Property, owl:AnnotationProperty ;
rdfs:label "inclusions"@en, "inclusions"@fr ;
rdfs:subPropertyOf skos:scopeNote ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:coreContentNote a rdf:Property, owl:AnnotationProperty ;
rdfs:label "core content"@en, "contenu central"@fr ;
rdfs:subPropertyOf xkos:inclusionNote ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:additionalContentNote a rdf:Property, owl:AnnotationProperty ;
rdfs:label "additional content"@en, "contenu limite"@fr ;
rdfs:subPropertyOf xkos:inclusionNote ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:exclusionNote a rdf:Property, owl:AnnotationProperty ;
rdfs:label "exclusions"@en, "exclusions"@fr ;
rdfs:subPropertyOf skos:scopeNote ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:caseLaw a rdf:Property, owl:AnnotationProperty ;
rdfs:label "case law"@en, "jurisprudence"@fr ;
rdfs:subPropertyOf skos:note ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Simple text of an explanatory note
xkos:plainText a rdf:Property, owl:AnnotationProperty ;
rdfs:label "plain text"@en, "texte brut"@fr ;
rdfs:domain xkos:ExplanatoryNote ;
rdfs:range rdf:PlainLiteral ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
#################################################################
# Data properties
#################################################################
# Depth of a classification (number of hierarchically imbricated levels) ; 1 for a flat classification
xkos:numberOfLevels a rdf:Property, owl:DatatypeProperty ;
rdfs:label "number of levels"@en, "nombre de niveaux"@fr ;
rdfs:domain skos:ConceptScheme ;
rdfs:range xsd:positiveInteger ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Depth of a level inside a classification (1 for the highest level)
xkos:depth a rdf:Property, owl:DatatypeProperty ;
rdfs:label "depth"@en, "profondeur"@fr ;
rdfs:domain xkos:ClassificationLevel ;
rdfs:range xsd:positiveInteger ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Maximum number of characters for a label that is constrained in length
xkos:maxLength a rdf:Property, owl:DatatypeProperty ;
rdfs:label "maximum length"@en, "longueur maximale"@fr ;
rdfs:domain skosxl:Label ;
rdfs:range xsd:positiveInteger ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Structure (defined as a regular expression) of the item codes at a given level
xkos:notationPattern a rdf:Property, owl:DatatypeProperty ;
rdfs:label "code pattern"@en, "gabarit de code"@fr ;
rdfs:domain xkos:ClassificationLevel ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
#################################################################
# Object properties
#################################################################
# List of the classification levels represented as an RDF list of ordered levels (instances of ClassificationLevel)
xkos:levels a rdf:Property, owl:ObjectProperty ;
rdfs:label "level list"@en, "liste des niveaux"@fr ;
rdfs:domain skos:ConceptScheme ;
rdfs:range rdf:List ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Property used to group concept associations in correspondences
xkos:madeOf a rdf:Property, owl:ObjectProperty ;
rdfs:label "made of"@en, "comprend"@fr ;
rdfs:domain xkos:Correspondence ;
rdfs:range xkos:ConceptAssociation ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Properties linking concepts to concepts associations
xkos:sourceConcept a rdf:Property, owl:ObjectProperty ;
rdfs:label "source concept"@en, "concept source"@fr ;
rdfs:domain xkos:ConceptAssociation ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:targetConcept a rdf:Property, owl:ObjectProperty ;
rdfs:label "target concept"@en, "concept cible"@fr ;
rdfs:domain xkos:ConceptAssociation ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Property linking a correspondence to the major versions of classifications that it connects
xkos:compares a rdf:Property, owl:ObjectProperty ;
rdfs:label "compares"@en, "compare"@fr ;
rdfs:domain xkos:Correspondence ;
rdfs:range xkos:ConceptScheme ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Properties linking major versions of classifications
xkos:follows a rdf:Property, owl:ObjectProperty ;
rdfs:label "follows"@en, "suit"@fr ;
rdfs:domain skos:ConceptScheme ;
rdfs:range skos:ConceptScheme ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:supersedes a rdf:Property, owl:ObjectProperty ;
rdfs:label "supersedes"@en, "remplace"@fr ;
rdfs:subPropertyOf xkos:follows, dcterms:replaces ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Property connecting a classification scheme to its variant(s)
xkos:variant a rdf:Property, owl:ObjectProperty ;
rdfs:label "variant"@en, "variante"@fr ;
rdfs:domain skos:ConceptScheme ;
rdfs:range skos:ConceptScheme ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Property connecting a major version of a classification to a concept representing the overall classification
xkos:belongsTo a rdf:Property, owl:ObjectProperty ;
rdfs:label "belongs to"@en, "appartient à"@fr ;
rdfs:domain skos:ConceptScheme ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Name (or nature, or type) of the items that constitute the level
xkos:organizedBy a rdf:Property, owl:ObjectProperty ;
rdfs:label "organized by"@en, "organisé en"@fr ;
rdfs:domain xkos:ClassificationLevel ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Domain covered by the classification or its levels (eg. activities, products, etc.)
xkos:covers a rdf:Property, owl:ObjectProperty ;
rdfs:label "covers"@en, "couvre"@fr ;
rdfs:domain [ owl:unionOf (skos:ConceptScheme xkos:ClassificationLevel)] ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Domain covered by the classification (exhaustive coverage)
xkos:coversExhaustively a rdf:Property, owl:ObjectProperty ;
rdfs:label "covers exhaustively"@en, "couvre exhaustivement"@fr ;
rdfs:subPropertyOf xkos:covers ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Domain covered by the classification (mutually exclusive coverage)
xkos:coversMutuallyExclusively a rdf:Property, owl:ObjectProperty ;
rdfs:label "covers mutually exclusively"@en, "couvre sans recouvrement"@fr ;
rdfs:subPropertyOf xkos:covers ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Property linking a resource to a classification item it is classified under
xkos:classifiedUnder a rdf:Property, owl:ObjectProperty ;
rdfs:label "classified under"@en, "classé sous"@fr ;
rdfs:domain rdfs:Resource ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Types of semantic relations from ISO 1087 : associative relations
xkos:causal a rdf:Property, owl:ObjectProperty ;
rdfs:label "has causal"@en, "en relation causale"@fr ;
rdfs:subPropertyOf skos:related ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:causes a rdf:Property, owl:ObjectProperty ;
rdfs:label "causes"@en, "est la cause de"@fr ;
rdfs:subPropertyOf xkos:causal ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:causedBy a rdf:Property, owl:ObjectProperty ;
rdfs:label "caused by"@en, "est causé par"@fr ;
rdfs:subPropertyOf xkos:causal ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:sequential a rdf:Property, owl:ObjectProperty ;
rdfs:label "has sequential"@en, "en relation séquentielle"@fr ;
rdfs:subPropertyOf skos:related ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:precedes a rdf:Property, owl:TransitiveProperty ;
rdfs:label "precedes"@en, "précède"@fr ;
rdfs:comment "predecessor in the sequence"@en, "prédécesseur dans la séquence"@fr ;
rdfs:subPropertyOf xkos:sequential ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:previous a rdf:Property, owl:ObjectProperty ;
rdfs:label "previous"@en, "précédent"@fr ;
rdfs:comment "immediate predecessor in the sequence"@en, "prédécesseur immédiat dans la séquence"@fr ;
rdfs:subPropertyOf xkos:precedes ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:succeeds a rdf:Property, owl:TransitiveProperty ;
rdfs:label "succeeds"@en, "succède à"@fr ;
rdfs:comment "successor in the sequence"@en, "successeur dans la séquence" ;
rdfs:subPropertyOf xkos:sequential ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:next a rdf:Property, owl:ObjectProperty ;
rdfs:label "next"@en, "suivant"@fr ;
rdfs:comment "immediate successor in the sequence"@en, "successeur immédiat dans la séquence" ;
rdfs:subPropertyOf xkos:succeeds ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:temporal a rdf:Property, owl:ObjectProperty ;
rdfs:label "has temporal"@en, "en relation temporelle"@fr ;
rdfs:subPropertyOf xkos:sequential ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:before a rdf:Property, owl:TransitiveProperty ;
rdfs:label "before"@en, "avant"@fr ;
rdfs:subPropertyOf xkos:temporal ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:after a rdf:Property, owl:TransitiveProperty ;
rdfs:label "after"@en, "après"@fr ;
rdfs:subPropertyOf xkos:temporal ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Types of semantic relations from ISO 1087 : hierarchical relations
# Partitive relations and generic/specific relations
xkos:isPartOf a rdf:Property, owl:ObjectProperty ;
rdfs:label "is a part of"@en, "est une partie de"@fr ;
owl:inverseOf xkos:hasPart ;
rdfs:subPropertyOf skos:broader, dcterms:isPartOf ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:hasPart a rdf:Property, owl:ObjectProperty ;
rdfs:label "has part"@en, "a pour partie"@fr ;
owl:inverseOf xkos:isPartOf ;
rdfs:subPropertyOf skos:narrower, dcterms:hasPart ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:specializes a rdf:Property, owl:ObjectProperty ;
rdfs:label "specializes"@en, "spécialise"@fr ;
owl:inverseOf xkos:generalizes ;
rdfs:subPropertyOf skos:broader ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
xkos:generalizes a rdf:Property, owl:ObjectProperty ;
rdfs:label "generalizes"@en , "généralise"@fr ;
owl:inverseOf xkos:specializes ;
rdfs:subPropertyOf skos:narrower ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .
# Types of relations for comparison purposes
xkos:disjoint a rdf:Property, owl:ObjectProperty ;
rdfs:label "disjoint from"@en, "disjoint de"@fr ;
rdfs:subPropertyOf skos:related ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/xkos> .