forked from globalwordnet/schemas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wn.ttl
445 lines (347 loc) · 18.3 KB
/
wn.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
441
442
443
444
445
@prefix : <http://globalwordnet.github.io/schemas/wn#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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 vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<> a voaf:Vocabulary ;
vann:preferredNamespacePrefix "wn" ;
vann:preferredNamespaceUri "http://globalwordnet.github.io/schemas/wn#" ;
dc:title "Global Wordnet RDF Schema"@en ;
dc:description "TODO"@en ;
dc:issued "2014-08-13"^^xsd:date ;
dc:modified "2014-09-13"^^xsd:date ;
owl:versionInfo "Development"@en ;
dc:rights "Copyright Global Wordnet Association" ;
cc:license <http://creativecommons.org/licenses/by/4.0> ;
cc:attributionName "Global Wordnet Association";
cc:attributionURL <http://www.globalwordnet.org>;
dc:contributor <http://john.mccr.ae> ;
dc:publisher <http://www.globalwordnet.org> .
##
:status a owl:AnnotationProperty ;
rdfs:range xsd:string ;
rdfs:comment "A status string such as, 'finalized', 'checked' or 'to check'"@en ;
rdfs:label "status"@en .
:confidenceScore a owl:AnnotationProperty ;
rdfs:range xsd:decimal ;
rdfs:comment "A confidence score, usually assigned by an algorithm, with a value between 0 and 1"@en ;
rdfs:label "confidence score"@en .
:partOfSpeech a owl:ObjectProperty ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range :PartOfSpeech ;
rdfs:label "part of speech"@en ;
rdfs:comment "The syntactic class of the entry, e.g., noun, verb"@en .
:PartOfSpeech a owl:Class ;
rdfs:label "part of speech"@en ;
rdfs:comment "The syntactic class of the entry, e.g., noun, verb"@en ;
owl:oneOf (
:noun :verb :adjective :adverb :adjective_satellite :named_entity
:conjunction :adposition :other_pos :unknown_pos ) .
:noun a :PartOfSpeech ;
rdfs:label "noun"@en.
:verb a :PartOfSpeech ;
rdfs:label "verb"@en .
:adjective a :PartOfSpeech ;
rdfs:label "adjective"@en .
:adverb a :PartOfSpeech ;
rdfs:label "adverb"@en .
:adjective_satellite a :PartOfSpeech ;
rdfs:label "adjective satellite"@en .
:named_entity a :PartOfSpeech ;
rdfs:label "named entity"@en .
:conjunction a :PartOfSpeech ;
rdfs:label "conjunction"@en .
:adposition a :PartOfSpeech ;
rdfs:label "adposition"@en .
:other_pos a :PartOfSpeech ;
rdfs:label "other pos"@en .
:unknown_pos a :PartOfSpeech ;
rdfs:label "unknown pos"@en .
:tag a owl:ObjectProperty ;
rdfs:domain ontolex:Form ;
rdfs:range :Tag ;
rdfs:label "tag"@en ;
rdfs:comment "A tag describing an inflected form. There are no specific guidelines about the form of this element"@en .
:Tag a owl:Class ;
rdfs:comment "The tag describing the category of a form"@en ;
rdfs:label "tag"@en .
:category a owl:DatatypeProperty ;
rdfs:domain :Tag ;
rdfs:range xsd:string ;
rdfs:label "category"@en ;
rdfs:comment "The data category of a tag"@en .
:example a owl:ObjectProperty ;
rdfs:domain [
owl:unionOf ( ontolex:LexicalSense ontolex:LexicalConcept ) ] ;
rdfs:range :Example ;
rdfs:label "example"@en ;
rdfs:comment "An example usage of a sense or synset"@en .
:Example a owl:Class ;
rdfs:label "example"@en .
:count a owl:ObjectProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range :Count ;
rdfs:comment "The count of usages of a sense in some corpus"@en ;
rdfs:label "count"@en .
:Count a owl:Class ;
rdf:label "count"@en .
:definition a owl:ObjectProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range :Definition ;
rdfs:label "definition"@en ;
rdfs:comment "A definition of the synset"@en .
:iliDefinition a owl:ObjectProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range :ILIDefinition ;
rdfs:label "ILI definition"@en ;
rdfs:comment "The English standard definition of the synset in the ILI"@en .
:sourceSense a owl:ObjectProperty ;
rdfs:domain :Definition ;
rdfs:range ontolex:LexicalSense ;
rdfs:label "source sense"@en ;
rdfs:comment "The sense that was originally used to define the concept"@en .
:Definition a owl:Class ;
rdfs:label "definition"@en .
:ILIDefinition a owl:Class ;
rdfs:label "ILI definition"@en .
:script a owl:DatatypeProperty ;
rdfs:domain ontolex:Form ;
rdfs:range xsd:string ;
rdfs:label "script"@en ;
rdfs:comment "The script as a 4 letter ISO 15924 code"@en .
:note a owl:AnnotationPropety ;
rdfs:range xsd:string ;
rdfs:label "note"@en ;
rdfs:comment "Any extra notes made by a WordNet creator"@en .
:SynsetRelType a owl:Class ;
rdfs:label "synset relation type"@en .
:SenseRelType a owl:Class ;
rdfs:label "sense relation type"@en .
:agent a :SynsetRelType ;
rdfs:label "agent"@en ;
rdfs:comment "A relation between two concepts where concept A is typically the agent of the action expressed by concept B"@en .
:also a :SynsetRelType, :SenseRelType ;
rdfs:label "also"@en ;
rdfs:comment "A relation giving further information of an unspecified type"@en .
:antonym a :SynsetRelType, :SenseRelType ;
rdfs:label "antonym"@en ;
rdfs:comment "Indicates that the two terms have opposite meanings"@en .
:attribute a :SynsetRelType ;
rdfs:label "attribute"@en ;
rdfs:comment "A relation between nominal and adjectival concepts where the concept A is an attribute of concept B"@en .
:be_in_state a :SynsetRelType ;
rdfs:label "be in state"@en ;
rdfs:comment "A relation between two concepts where concept A is qualified by concept B"@en .
:causes a :SynsetRelType ;
rdfs:label "causes"@en ;
rdfs:comment "A relation between two concepts where concept B comes into existence as a result of concept A"@en .
:classified_by a :SynsetRelType ;
rdfs:label "classified by"@en ;
rdfs:comment "A relation between concept B and a classifier concept A"@en .
:classifies a :SynsetRelType ;
rdfs:label "classifies"@en ;
rdfs:comment "A relation between a classifier concept A and concept B"@en .
:co_agent_instrument a :SynsetRelType ;
rdfs:label "co-agent instrument"@en ;
rdfs:comment "A relation between two concepts where concept B is the instrument used by concept A in a certain action"@en .
:co_agent_patient a :SynsetRelType ;
rdfs:label "co-agent patient"@en ;
rdfs:comment "A relation between two concepts where concept B is the patient undergoing an action carried out by concept A"@en .
:co_agent_result a :SynsetRelType ;
rdfs:label "co-agent result"@en ;
rdfs:comment "A relation between two concepts where concept B is the result of an action carried out by concept A"@en .
:co_instrument_agent a :SynsetRelType ;
rdfs:label "co-instrument agent"@en ;
rdfs:comment "A relation between two concepts where concept A is the instrument used by concept B for a certain action"@en .
:co_instrument_patient a :SynsetRelType ;
rdfs:label "co-instrument patient"@en ;
rdfs:comment "A relation between two concepts where concept B undergoes an action for which the instrument expressed by concept A is used"@en .
:co_instrument_result a :SynsetRelType ;
rdfs:label "co-instrument result"@en ;
rdfs:comment "A relation between two concepts where concept B is the result of an action carried out by the instrument expressed by concept A"@en .
:co_patient_agent a :SynsetRelType ;
rdfs:label "co-patient agent"@en ;
rdfs:comment "A relation between two concepts where concept B undergoes an action carried out by concept A"@en .
:co_patient_instrument a :SynsetRelType ;
rdfs:label "co-patient instrument"@en ;
rdfs:comment "A relation between two concepts where concept A undergoes an action for which the instrument expressed by concept A is used"@en .
:co_result_agent a :SynsetRelType ;
rdfs:label "co-result agent"@en ;
rdfs:comment "A relation between two concepts where concept A is the result of an action carried out by concept B"@en .
:co_result_instrument a :SynsetRelType ;
rdfs:label "co-result instrument"@en ;
rdfs:comment "A relation between two concepts where concept A is the result of an action for which the instrument expressed by concept B is used"@en .
:co_role a :SynsetRelType ;
rdfs:label "co-role"@en ;
rdfs:comment "A relation between two concepts where one concept undergoes an action in which the other concept is involved (bidirectional)"@en .
:derivation a :SenseRelType ;
rdfs:label "derivation"@en ;
rdfs:comment "Indicates a syntactic derivation from one term to another"@en .
:direction a :SynsetRelType ;
rdfs:label "direction"@en ;
rdfs:comment "A relation between two concepts where concept A is typically the direction or location of the action or event expressed by concept B"@en .
:domain_region a :SynsetRelType, :SenseRelType ;
rdfs:label "domain region"@en ;
rdfs:comment "A relation between two concepts where B is a geographical / cultural domain of concept A"@en .
:domain_topic a :SynsetRelType, :SenseRelType ;
rdfs:label "domain topic"@en ;
rdfs:comment "A relation between two concepts where B is a a scientific domain (e"@en .
:exemplifies a :SynsetRelType, :SenseRelType ;
rdfs:label "exemplifies"@en ;
rdfs:comment "A relation between two concepts where B is a type of concept A"@en .
:entails a :SynsetRelType ;
rdfs:label "entails"@en ;
rdfs:comment ""@en .
:eq_synonym a :SynsetRelType ;
rdfs:label "eq synonym"@en ;
rdfs:comment "A relation between two concepts where A and B are equivalent concepts but their nature requires that they remain separate (e"@en .
:has_domain_region a :SynsetRelType, :SenseRelType ;
rdfs:label "has domain region"@en ;
rdfs:comment "A relation between two concepts where A is a geographical / cultural domain of concept B"@en .
:has_domain_topic a :SynsetRelType, :SenseRelType ;
rdfs:label "has domain topic"@en ;
rdfs:comment "A relation between two concepts where A is a a scientific domain (e"@en .
:is_exemplified_by a :SynsetRelType, :SenseRelType ;
rdfs:label "is exemplified by"@en ;
rdfs:comment "A relation between two concepts where A an example of the type B"@en .
:holo_location a :SynsetRelType ;
rdfs:label "holonym location"@en ;
rdfs:comment "A relation between two concepts where concept B is a place located in concept A"@en .
:holo_member a :SynsetRelType ;
rdfs:label "holonym member"@en ;
rdfs:comment "A relation between two concepts where concept A is a member/ element of concept B"@en .
:holo_part a :SynsetRelType ;
rdfs:label "holonym part"@en ;
rdfs:comment "A relation between two concepts where concept A is a component of concept B"@en .
:holo_portion a :SynsetRelType ;
rdfs:label "holonym portion"@en ;
rdfs:comment "A relation between two concepts where concept B is an amount/piece/portion of concept A"@en .
:holo_substance a :SynsetRelType ;
rdfs:label "holonym substance"@en ;
rdfs:comment "A relation between two concepts where concept B is made of concept A"@en .
:holonym a :SynsetRelType ;
rdfs:label "holonym"@en ;
rdfs:comment "A relation between two concepts where concept A makes up a part of concept B"@en .
:hypernym a :SynsetRelType ;
rdfs:label "hypernym"@en ;
rdfs:comment "A relation between two concepts where concept A is a type of concept B"@en .
:hyponym a :SynsetRelType ;
rdfs:label "hyponym"@en ;
rdfs:comment "A relation between two concepts where concept B is a type of concept A"@en .
:in_manner a :SynsetRelType ;
rdfs:label "in manner"@en ;
rdfs:comment "A relation between two concepts where concept B qualifies the manner in which an action or event expressed by concept A takes place"@en .
:instance_hypernym a :SynsetRelType ;
rdfs:label "instance hypernym"@en ;
rdfs:comment "A relation between two concepts where concept B is a type of concept A, and where B is a terminal node in the hierchy"@en .
:instance_hyponym a :SynsetRelType ;
rdfs:label "instance hyponym"@en ;
rdfs:comment "A relation between two concepts where concept A is a type of concept B, and where B is a terminal node in the hierchy"@en .
:instrument a :SynsetRelType ;
rdfs:label "instrument"@en ;
rdfs:comment "A relation between two concepts where concept A is the instrument necessary for the action or event expressed by concept B"@en .
:involved a :SynsetRelType ;
rdfs:label "involved"@en ;
rdfs:comment "A relation between two concepts where concept B is typically involved in the action or event expressed by concept A"@en .
:involved_agent a :SynsetRelType ;
rdfs:label "involved agent"@en ;
rdfs:comment "A relation between two concepts where concept B is typically the agent of the action expressed by concept A"@en .
:involved_direction a :SynsetRelType ;
rdfs:label "involved direction"@en ;
rdfs:comment "A relation between two concepts where concept B is typically the direction or location of the action or event expressed by concept A"@en .
:involved_instrument a :SynsetRelType ;
rdfs:label "involved instrument"@en ;
rdfs:comment "A relation between two concepts where concept B is typically the instrument necessary for the action or event expressed by concept A"@en .
:involved_location a :SynsetRelType ;
rdfs:label "involved location"@en ;
rdfs:comment "A relation between two concepts where concept B is typically the location where the action or event expressed by concept A takes place"@en .
:involved_patient a :SynsetRelType ;
rdfs:label "involved patient"@en ;
rdfs:comment "A relation between two concepts where concept B is typically the patient un-dergoing an action or event expressed by concept A"@en .
:involved_result a :SynsetRelType ;
rdfs:label "involved result"@en ;
rdfs:comment "A relation between two concepts where concept B comes into existence as a result of concept A"@en .
:involved_source_direction a :SynsetRelType ;
rdfs:label "involved source direction"@en ;
rdfs:comment "A relation between two concepts where concept B is the place from where the action or event expressed by concept A begins/starts/happens"@en .
:involved_target_direction a :SynsetRelType ;
rdfs:label "involved target direction"@en ;
rdfs:comment "A relation between two concepts where concept B is the place where the action or event expressed by concept A leads to"@en .
:is_caused_by a :SynsetRelType ;
rdfs:label "is caused by"@en ;
rdfs:comment "A relation between two concepts where concept A comes into existence as a result of concept B"@en .
:is_entailed_by a :SynsetRelType ;
rdfs:label "is entailed by"@en ;
rdfs:comment ""@en .
:is_subevent_of a :SynsetRelType ;
rdfs:label "is subevent of"@en ;
rdfs:comment "A relation between two concepts where concept A takes place during or as part of concept B, and whenever concept A takes place, concept B takes place"@en .
:location a :SynsetRelType ;
rdfs:label "location"@en ;
rdfs:comment "A relation between two concepts where concept A is the location where the action or event expressed by concept B takes place"@en .
:manner_of a :SynsetRelType ;
rdfs:label "manner of"@en ;
rdfs:comment "A relation between two concepts where concept A qualifies the manner in which an action or event expressed by concept B takes place"@en .
:mero_location a :SynsetRelType ;
rdfs:label "meronym location"@en ;
rdfs:comment "A relation between two concepts where concept A is a place located in concept B"@en .
:mero_member a :SynsetRelType ;
rdfs:label "meronym member"@en ;
rdfs:comment "A relation between two concepts where concept B is a member/ element of concept A"@en .
:mero_part a :SynsetRelType ;
rdfs:label "meronym part"@en ;
rdfs:comment "A relation between two concepts where concept B is a component of concept A"@en .
:mero_portion a :SynsetRelType ;
rdfs:label "meronym portion"@en ;
rdfs:comment "A relation between two concepts where concept A is an amount/piece/portion of concept B"@en .
:mero_substance a :SynsetRelType ;
rdfs:label "meronym substance"@en ;
rdfs:comment "A relation between two concepts where concept A is made of concept B"@en .
:meronym a :SynsetRelType ;
rdfs:label "meronym"@en ;
rdfs:comment "A relation between two concepts where concept B makes up a part of concept A"@en .
:other a :SynsetRelType, :SenseRelType ;
rdfs:label "other"@en ;
rdfs:comment "An unspecified relation type (normally given by `dc:type`)"@en .
:participle a :SenseRelType ;
rdfs:label "participle"@en ;
rdfs:comment "Indicates a participle form of a verb"@en .
:patient a :SynsetRelType ;
rdfs:label "patient"@en ;
rdfs:comment "A relation between two concepts where concept A is the patient undergoing an action or event expressed by concept B"@en .
:pertainym a :SenseRelType ;
rdfs:label "pertainym"@en ;
rdfs:comment "Indicates a noun that pertains to this word"@en .
:restricted_by a :SynsetRelType ;
rdfs:label "restricted by"@en ;
rdfs:comment "A relation between nominal (pronominal) concept B and an adjectival concept A (quantifier/determiner)"@en .
:restricts a :SynsetRelType ;
rdfs:label "restricts"@en ;
rdfs:comment "A relation between an adjectival concept A (quantifier/determiner) and a nominal (pronominal) concept B"@en .
:result a :SynsetRelType ;
rdfs:label "result"@en ;
rdfs:comment "A relation between two concepts where concept A comes into existence as a result of concept B"@en .
:role a :SynsetRelType ;
rdfs:label "role"@en ;
rdfs:comment "A relation between two concepts where concept A is typically involved in the action or event expressed by concept B"@en .
:similar a :SynsetRelType, :SenseRelType ;
rdfs:label "similar"@en ;
rdfs:comment "A relation between two concepts where concept A and concept B are closely related in meaning but are not in the same synset"@en .
:source_direction a :SynsetRelType ;
rdfs:label "source direction"@en ;
rdfs:comment "A relation between two concepts where concept A is the place from where the action or event expressed by concept B begins/starts/happens"@en .
:state_of a :SynsetRelType ;
rdfs:label "state of"@en ;
rdfs:comment "A relation between two concepts where concept B is qualified by concept A"@en .
:subevent a :SynsetRelType ;
rdfs:label "subevent"@en ;
rdfs:comment "A relation between two concepts where concept B takes place during or as part of concept A, and whenever concept B takes place, concept A takes place"@en .
:target_direction a :SynsetRelType ;
rdfs:label "target direction"@en ;
rdfs:comment "A relation between two concepts where concept A is the place where the action or event expressed by concept B leads to"@en .