-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththor-ontology.owl
1063 lines (863 loc) · 59 KB
/
thor-ontology.owl
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://w3id.org/thor/thor-ontology/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lime: <http://www.w3.org/ns/lemon/lime#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix thor: <https://w3id.org/thor/thor-ontology/> .
@prefix synsem: <http://www.w3.org/ns/lemon/synsem#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix lexinfo: <http://www.lexinfo.net/ontology/3.0/lexinfo#> .
@prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#> .
@base <https://w3id.org/thor/thor-ontology/> .
<https://w3id.org/thor/thor-ontology/> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/thor/thor-ontology/0.3.12/> ;
owl:imports <http://www.w3.org/2004/02/skos/core> ,
<http://www.w3.org/ns/lemon/ontolex> ;
dcterms:description """# ThOR Ontology
The objective of **ThOR Ontology** is to provide the vocabulary for building lexicons and thesauri for the Dutch healthcare domain. The OWL implementation of the ThOR Ontology is designed to provide an implementation artifact to structure a knowledge base (or knowledge graph), being suitable for Semantic Web and Linked Data applications.
The ThOR Ontology uses concepts from [SKOS](https://www.w3.org/TR/skos-reference/), [Ontolex](https://www.w3.org/2016/05/ontolex/), and [Lexinfo](https://github.com/ontolex/lexinfo), complementing them for accomplishing the purpose of being used for representing a lexicon that can be further transformed into a thesaurus using a specific tool built for this purpose, the [ontolex2skos](https://github.com/unibz-core/ontolex2skos).
ThOR stands for “Thesaurus and Ontology Representation”. The ThOR Project was a collaboration project that happened in 2021 between the [*Zorginstituut Nederland* (ZIN)](https://english.zorginstituutnederland.nl/) – the Dutch National Health Care Institute – and the [Conceptual and Cognitive Modeling Research Group (CORE)](https://www.inf.unibz.it/krdb/core/) from the [Free University of Bozen-Bolzano (Unibz)](https://unibz.it/).
For the source repository, see: <https://github.com/unibz-core/thor/>
# Developers
## Unibz Members
- [Tiago Prince Sales](https://scholar.google.it/citations?user=bfaMR2YAAAAJ&hl=en)
- [Pedro Paulo Favato Barcelos](https://scholar.google.com/citations?user=1kF9FGwAAAAJ&hl=en)
- [Giancarlo Guizzardi](https://scholar.google.com/citations?user=nnfVBt8AAAAJ&hl=en)
- [Cristine Griffo](https://scholar.google.com.sg/citations?user=TCpW-JMAAAAJ&hl=en)
## ZIN Members
- [Elly Kampert](https://www.linkedin.com/in/elly-kampert-van-galen/)
- [Fabien Reniers](https://www.linkedin.com/in/fabienreniers/)
- [Roxane Segers](https://www.linkedin.com/in/roxanesegers/)""" ;
dcterms:title "ThOR Ontology"@en ;
owl:versionInfo "0.3.12" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/abstract
dcterms:abstract rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/available
dcterms:available rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/conformsTo
dcterms:conformsTo rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
dcterms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/identifier
dcterms:identifier rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dcterms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dcterms:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/relation
dcterms:relation rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/replaces
dcterms:replaces rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/source
dcterms:source rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty ;
rdfs:comment "The range of skos:altLabel is the class of RDF plain literals."@en ,
"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "alternative label"@en ;
skos:definition "An alternative lexical label for a resource."@en ;
skos:example "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."@en ;
rdfs:subPropertyOf rdfs:label .
### http://www.w3.org/2004/02/skos/core#changeNote
skos:changeNote rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "change note"@en ;
skos:definition "A note about a modification to a concept."@en ;
rdfs:subPropertyOf skos:note .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "definition"@en ;
skos:definition "A statement or formal explanation of the meaning of a concept."@en ;
rdfs:subPropertyOf skos:note .
### http://www.w3.org/2004/02/skos/core#editorialNote
skos:editorialNote rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "editorial note"@en ;
skos:definition "A note for an editor, translator or maintainer of the vocabulary."@en ;
rdfs:subPropertyOf skos:note .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "example"@en ;
skos:definition "An example of the use of a concept."@en ;
rdfs:subPropertyOf skos:note .
### http://www.w3.org/2004/02/skos/core#historyNote
skos:historyNote rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "history note"@en ;
skos:definition "A note about the past state/use/meaning of a concept."@en ;
rdfs:subPropertyOf skos:note .
### http://www.w3.org/2004/02/skos/core#note
skos:note rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "note"@en ;
skos:definition "A general note, for any purpose."@en ;
skos:scopeNote "This property may be used directly, or as a super-property for more specific note types."@en .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty ;
rdfs:comment "A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."@en ,
"The range of skos:prefLabel is the class of RDF plain literals."@en ,
"""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
disjoint properties."""@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "preferred label"@en ;
skos:definition "The preferred lexical label for a resource, in a given language."@en ;
rdfs:subPropertyOf rdfs:label .
### http://www.w3.org/2004/02/skos/core#scopeNote
skos:scopeNote rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "scope note"@en ;
skos:definition "A note that helps to clarify the meaning and/or the use of a concept."@en ;
rdfs:subPropertyOf skos:note .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/thor/thor-ontology/broadMapping
thor:broadMapping rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf thor:mappingProperty ;
owl:inverseOf thor:narrowMapping ;
rdfs:comment """Is used to state a hierarchical mapping link between two semantic elements.
This property is analogous to skos:broadMatch, but with broader domain and range."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/closeMapping
thor:closeMapping rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf thor:mappingProperty ;
rdfs:comment """Is used to link two semantic elements that are sufficiently similar that they can be used interchangeably in some information retrieval applications.
This property is analogous to skos:closeMatch, but with broader domain and range."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/exactMapping
thor:exactMapping rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf thor:mappingProperty ;
rdf:type owl:SymmetricProperty ,
owl:TransitiveProperty ;
rdfs:comment """Is used to link two two semantic elements, indicating that the these semantic elements can be used interchangeably across all information retrieval applications.
This property is analogous to skos:exactMatch, but with broader domain and range."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/hasContext
thor:hasContext rdf:type owl:ObjectProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range thor:Context ;
rdfs:comment """Derived relation that indicates to which thor:Context an ontolex:LexicalConcept is indirectly related.
Derivation rule: If an ontolex:LexicalConcept X has an ontolex:isLexicalizedSense relation with an ontolex:LexicalSense Y and Y has a lexinfo:domain relation with a thor:Context Z, then X has a thor:domain relation with Z."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/mappingProperty
thor:mappingProperty rdf:type owl:ObjectProperty ;
rdfs:domain thor:SemanticElement ;
rdfs:range thor:SemanticElement ;
rdfs:comment "The thor:MappingProperties are thor:closeMapping, thor:exactMapping, thor:broadMapping, thor:narrowMapping and thor:relatedMapping. These properties are used to state mapping (alignment) links between any kind of semantic element (Lexical Concepts, Lexical Senses or Lexical Entries), where the links are inherent in the meaning of the linked elements."^^rdf:langString .
### https://w3id.org/thor/thor-ontology/narrowMapping
thor:narrowMapping rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf thor:mappingProperty ;
rdfs:comment """Is used to state a hierarchical mapping link between two two semantic elements.
This property is analogous to skos:narrowMatch, but with broader domain and range."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/relatedMapping
thor:relatedMapping rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf thor:mappingProperty ;
rdf:type owl:SymmetricProperty ;
rdfs:comment """Is used to state an associative mapping link between two two semantic elements.
This property is analogous to skos:relatedMatch, but with broader domain and range."""^^rdf:langString .
### http://www.lexinfo.net/ontology/3.0/lexinfo#contractionFor
lexinfo:contractionFor rdf:type owl:ObjectProperty ;
owl:inverseOf lexinfo:fullFormFor ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "The full form that corresponds to a contracted form."@en ;
rdfs:label "contraction for"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#contractionFor> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#domain
lexinfo:domain rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ontolex:usage ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range thor:Context ;
rdfs:comment "usage marker which identifies the specialized field of knowledge in which a lexical unit is mainly used"@en ;
rdfs:label "domain"@en .
### http://www.lexinfo.net/ontology/3.0/lexinfo#fullFormFor
lexinfo:fullFormFor rdf:type owl:ObjectProperty ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "A linking element used to identify a relation between any full form of a term or lexical unit and its abbreviated form."@en ;
rdfs:label "full form for"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#fullFormFor> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#homograph
lexinfo:homograph rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ,
owl:TransitiveProperty ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "A word that is spelled like another, but that has a different pronunciation, meaning, and/or origin. // Word that is written like another, but that has a different pronunciation, meaning, and/or origin."@en ;
rdfs:label "homograph"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#homograph> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#hypernym
lexinfo:hypernym rdf:type owl:ObjectProperty ;
owl:inverseOf lexinfo:hyponym ;
rdf:type owl:TransitiveProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range ontolex:LexicalSense ;
rdfs:label "hypernym"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#hypernym> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#hyponym
lexinfo:hyponym rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range ontolex:LexicalSense ;
rdfs:label "hyponym"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#hyponym> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#relatedTerm
lexinfo:relatedTerm rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range ontolex:LexicalSense ;
rdfs:comment "A term connected to another term by a coordinate or associative relation."@en ;
rdfs:label "related term"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#relatedTerm> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#synonym
lexinfo:synonym rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ,
owl:TransitiveProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range ontolex:LexicalSense ;
rdfs:label "synonym"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#synonym> .
### http://www.w3.org/2002/07/owl#topObjectProperty
owl:topObjectProperty rdf:type owl:ObjectProperty .
### http://www.w3.org/2004/02/skos/core#broader
skos:broader rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf skos:narrower ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range ontolex:LexicalConcept ;
rdfs:comment "Broader concepts are typically rendered as parents in a concept hierarchy (tree)."@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "has broader"@en ;
skos:definition "Relates a concept to a concept that is more general in meaning."@en ;
skos:scopeNote "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."@en .
### http://www.w3.org/2004/02/skos/core#hasTopConcept
skos:hasTopConcept rdf:type owl:ObjectProperty ;
owl:inverseOf skos:topConceptOf ;
rdfs:domain skos:ConceptScheme ;
rdfs:range skos:Concept ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "has top concept"@en ;
skos:definition "Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies."@en .
### http://www.w3.org/2004/02/skos/core#inScheme
skos:inScheme rdf:type owl:ObjectProperty ;
rdfs:domain skos:Concept ;
rdfs:range skos:ConceptScheme ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "in scheme"@en ,
"is in scheme"@en ;
skos:definition "Relates a resource (for example a concept) to a concept scheme in which it is included."@en ;
skos:scopeNote "A concept may be a member of more than one concept scheme."@en .
### http://www.w3.org/2004/02/skos/core#narrower
skos:narrower rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf skos:semanticRelation ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range ontolex:LexicalConcept ;
rdfs:comment "Narrower concepts are typically rendered as children in a concept hierarchy (tree)."@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "has narrower"@en ;
skos:definition "Relates a concept to a concept that is more specific in meaning."@en ;
skos:scopeNote "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."@en .
### http://www.w3.org/2004/02/skos/core#related
skos:related rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range ontolex:LexicalConcept ;
rdfs:comment "skos:related is disjoint with skos:broaderTransitive"@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "has related"@en ;
skos:definition "Relates a concept to a concept with which there is an associative semantic relationship."@en .
### http://www.w3.org/2004/02/skos/core#topConceptOf
skos:topConceptOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf skos:inScheme ;
rdfs:domain skos:Concept ;
rdfs:range skos:ConceptScheme ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "is top concept in scheme"@en ;
skos:definition "Relates a concept to the concept scheme that it is a top level concept of."@en .
### http://www.w3.org/ns/lemon/lime#entry
lime:entry rdf:type owl:ObjectProperty ;
rdfs:domain lime:Lexicon ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "The 'entry' property relates a lexicon to one of the lexical entries contained in it."@en ,
"Свойство 'запись' связывает лексикон с одной из содержащихся в нем словарных единиц."@ru ;
rdfs:isDefinedBy "http://www.w3.org/ns/lemon/lime" ;
rdfs:label "Eintrag"@de ,
"Item"@nl ,
"entrada"@es ,
"entrada"@pt ,
"entrata"@it ,
"entry"@en ,
"entrée"@fr ,
"ingång"@sv ,
"inskrywing"@af ,
"înregistrare"@ro ,
"запись"@ru .
### http://www.w3.org/ns/lemon/ontolex#canonicalForm
ontolex:canonicalForm rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range ontolex:Form ;
rdfs:comment "The 'canonical form' property relates a lexical entry to its canoncical or dictionary form. This usually indicates the \"lemma\" form of a lexical entry. "@en ,
"Свойство 'каноническая форма' связывает словарную единицу с ее канонической или словарной формой. Она обычно обозначает \"лемму\" словарной единицы."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "canonical form"@en ,
"canonieke vorm"@nl ,
"forma canonica"@it ,
"forma canonica"@pt ,
"forma canónica"@es ,
"forme canonique"@fr ,
"formă canonică"@ro ,
"kanoniese vorm"@af ,
"kanonische Form"@de ,
"kanonisk form "@sv ,
"каноническая форма"@ru .
### http://www.w3.org/ns/lemon/ontolex#concept
ontolex:concept rdf:type owl:ObjectProperty ;
owl:inverseOf ontolex:isConceptOf ;
rdfs:domain rdfs:Resource ;
rdfs:range ontolex:LexicalConcept ;
rdfs:comment "The 'concept' property relates an ontological entity to a lexical concept that represents the corresponding meaning."@en ,
"Свойство 'понятие' связывает сущность в онтологии с лексическим понятием, которое представляет соответствующее значение."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "Konzept"@de ,
"begrepp"@sv ,
"begrip"@nl ,
"conceito"@pt ,
"concept"@en ,
"concept"@fr ,
"concept"@ro ,
"concepto"@es ,
"concetto"@it ,
"konsep"@af ,
"понятие"@ru .
### http://www.w3.org/ns/lemon/ontolex#denotes
ontolex:denotes rdf:type owl:ObjectProperty ;
owl:inverseOf ontolex:isDenotedBy ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range rdfs:Resource ;
owl:propertyChainAxiom ( ontolex:sense
ontolex:reference
) ;
rdfs:comment "The 'denotes' property relates a lexical entry to a predicate in a given ontology that represents its meaning and has some denotational or model-theoretic semantics. "@en ,
"Свойство 'обозначает' связывает словарную единицу с предикатом в онтологии, который представляет ее значение и обладает денотативной или теоретико-модельной семантикой."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "betecknar"@sv ,
"bezeichnet"@de ,
"denota"@es ,
"denota"@it ,
"denota"@pt ,
"denotes"@en ,
"denotă"@ro ,
"dui aan"@af ,
"duidet aan"@nl ,
"dénote"@fr ,
"обозначает"@ru .
### http://www.w3.org/ns/lemon/ontolex#evokes
ontolex:evokes rdf:type owl:ObjectProperty ;
owl:inverseOf ontolex:isEvokedBy ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range ontolex:LexicalConcept ;
owl:propertyChainAxiom ( ontolex:sense
ontolex:isLexicalizedSenseOf
) ;
rdfs:comment "The 'evokes' property relates a lexical entry to one of the lexical concepts it evokes, i.e. the mental concept that speakers of a language might associate when hearing the lexical entry."@en ,
"Свойство 'порождает' связывает словарную единицу с одним из лексических понятий, которую она порождает, то есть мыслительное понятие, которое возникает в сознании говорящих, когда они слышат данную словарную единицу."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "evoca"@es ,
"evoca"@it ,
"evoca"@pt ,
"evocă"@ro ,
"evokes"@en ,
"framkallar"@sv ,
"lokt uit"@nl ,
"roep op"@af ,
"ruft hervor"@de ,
"évoque"@fr ,
"порождает"@ru .
### http://www.w3.org/ns/lemon/ontolex#isConceptOf
ontolex:isConceptOf rdf:type owl:ObjectProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range rdfs:Resource ;
rdfs:comment "This property formalizes the meaning of a Lexical Concept by linking it to a particular ontological meaning."@en ,
"Это свойство формализует значение 'Лексического Понятия', связывая его с отдельным значением в онтологии."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "es concepto de"@es ,
"est un concept pour "@fr ,
"este concept a(l)"@ro ,
"is concept of"@en ,
"is concept van"@nl ,
"is konsep van"@af ,
"ist Konzept von"@de ,
"är begrepp för"@sv ,
"è concetto di "@it ,
"é conceito de"@pt ,
"является понятием"@ru .
### http://www.w3.org/ns/lemon/ontolex#isDenotedBy
ontolex:isDenotedBy rdf:type owl:ObjectProperty ;
rdfs:domain rdfs:Resource ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "The object property isDenotedBy is the inverse of the object property denotes."@en ,
"Свойство объекта 'обозначается' является обратным к свойству объекта 'обозначает'."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "betecknas av"@sv ,
"es denotado por"@es ,
"est dénoté par"@fr ,
"este denotat cu"@ro ,
"is denoted by"@en ,
"wird bezeichnet von"@de ,
"word aangedui deur"@af ,
"wordt aangeduidet door"@nl ,
"è denotato da"@it ,
"é denotado por"@pt ,
"обозначается"@ru .
### http://www.w3.org/ns/lemon/ontolex#isEvokedBy
ontolex:isEvokedBy rdf:type owl:ObjectProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "The inverse relation to evokes."@en ,
"Отношение обратное к 'порождает'."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "es evocado por"@es ,
"est évoqué par"@fr ,
"este evocat de"@ro ,
"framkallas av "@sv ,
"is evoked by"@en ,
"wird hervorgerufen von"@de ,
"word opgeroep deur"@af ,
"wordt uitgelokt door"@nl ,
"è evocato da"@it ,
"порождается"@ru .
### http://www.w3.org/ns/lemon/ontolex#isLexicalizedSenseOf
ontolex:isLexicalizedSenseOf rdf:type owl:ObjectProperty ;
owl:inverseOf ontolex:lexicalizedSense ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range ontolex:LexicalConcept ;
rdfs:comment "The object property isLexicalizedSenseOf is the inverse property of lexicalized sense."@en ,
"Свойство объекта 'является лексикализованным смыслом' представляет собой свойство, обратное к свойству 'лексикализованный смысл'."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "es l'acepción lexicalizado de"@es ,
"est le sens lexicalisé de"@fr ,
"este sens lexicalizat de"@ro ,
"is geleksikaliseerde sin van"@af ,
"is lexicalized sense of"@en ,
"is lexikaal zin van"@nl ,
"ist lexikalisierter Sinn von"@de ,
"är lexikaliserad betydelse för"@sv ,
"è il senso lessicalizzato di"@it ,
"является лексикализованным смыслом"@ru .
### http://www.w3.org/ns/lemon/ontolex#isReferenceOf
ontolex:isReferenceOf rdf:type owl:ObjectProperty ;
owl:inverseOf ontolex:reference ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:domain rdfs:Resource ;
rdfs:range ontolex:LexicalSense ;
rdfs:comment "The object property isReferenceOf is the inverse property of reference."@en ,
"Свойство объекта 'является референцией' представляет собой свойство, обратное к свойству 'референция'."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "es referencia de"@es ,
"est référence de"@fr ,
"este referință a(l)"@ro ,
"is reference of"@en ,
"is referentie van"@nl ,
"is verwysing van"@af ,
"ist Referenz von"@de ,
"är referens för"@sv ,
"è riferimento di"@it ,
"é referência de"@pt ,
"является референцией"@ru .
### http://www.w3.org/ns/lemon/ontolex#isSenseOf
ontolex:isSenseOf rdf:type owl:ObjectProperty ;
owl:inverseOf ontolex:sense ;
rdf:type owl:FunctionalProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range ontolex:LexicalEntry ;
rdfs:comment "The property isSenseOf is the inverse property of sense."@en ,
"Свойство 'является смыслом' представляет собой свойство, обратное к свойству 'смысл'."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "es acepción de"@es ,
"est signification de"@fr ,
"este sens a(l)"@ro ,
"is sense of"@en ,
"is sin van"@af ,
"is zin van"@nl ,
"ist Sinn von"@de ,
"är betydelse för"@sv ,
"è il senso di"@it ,
"é sentido de"@pt ,
"является смыслом"@ru .
### http://www.w3.org/ns/lemon/ontolex#lexicalizedSense
ontolex:lexicalizedSense rdf:type owl:ObjectProperty ;
rdfs:domain ontolex:LexicalConcept ;
rdfs:range ontolex:LexicalSense ;
rdfs:comment "The 'lexicalized sense' property relates a lexical concept to a corresponding lexical sense that lexicalizes the concept."@en ,
"Свойство 'лексикализованный смысл' связывает лексическое понятие с соответствующим лексическим смыслом, который лексикализует понятие."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "acepción lexicalizada"@es ,
"geleksikaliseerde Sin"@af ,
"lexicalized sense"@en ,
"lexikaal zin"@nl ,
"lexikaliserad betydelse"@sv ,
"lexikalisierter Sinn"@de ,
"sens lexicalizat"@ro ,
"senso lessicalizzato"@it ,
"signification lexicalisé"@fr ,
"лексикализованный смысл"@ru .
### http://www.w3.org/ns/lemon/ontolex#reference
ontolex:reference rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range rdfs:Resource ;
rdfs:comment "The 'reference' property relates a lexical sense to an ontological predicate that represents the denotation of the corresponding lexical entry. "@en ,
"Свойство 'референция' соотносит лексический смысл с предикатом в онтологии, который уточняет значение денотата (соответствующей словарной единицы)."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "Referenz"@de ,
"reference"@en ,
"referencia"@es ,
"referens"@sv ,
"referință"@ro ,
"referntie"@nl ,
"referência"@pt ,
"riferimento"@it ,
"référence"@fr ,
"verwysing"@af ,
"референция"@ru .
### http://www.w3.org/ns/lemon/ontolex#sense
ontolex:sense rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain ontolex:LexicalEntry ;
rdfs:range ontolex:LexicalSense ;
rdfs:comment "The 'sense' property relates a lexical entry to one of its lexical senses. "@en ,
"Свойство 'смысл' связывает словарную единицу с одним из ее лексических смыслов."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "Sinn"@de ,
"acepción"@es ,
"betydelse"@sv ,
"sens"@ro ,
"sense"@en ,
"senso"@it ,
"sentido"@pt ,
"signification"@fr ,
"sinne"@af ,
"zin"@nl ,
"смысл"@ru .
### http://www.w3.org/ns/lemon/ontolex#usage
ontolex:usage rdf:type owl:ObjectProperty ;
rdfs:domain ontolex:LexicalSense ;
rdfs:range rdfs:Resource ;
rdfs:comment "The 'usage' property indicates usage conditions or pragmatic implications when using the lexical entry to refer to the given ontological meaning."@en ,
"Свойство 'употребление' обозначает условия использования или прагматическое значение при употреблении словарной единицы для соотнесения с определенным значением в онтологии."@ru ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "Gebrauch"@de ,
"gebruik"@nl ,
"usage"@en ,
"usage"@fr ,
"uso"@es ,
"uso"@it ,
"употребление"@ru .
### http://xmlns.com/foaf/0.1/homepage
foaf:homepage rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ontolex:LexicalConcept
ontolex:LexicalSense
)
] ;
rdfs:comment "A homepage for some thing." ;
rdfs:isDefinedBy foaf: ;
rdfs:label "homepage" .
#################################################################
# Data properties
#################################################################
### http://www.w3.org/ns/lemon/lime#language
lime:language rdf:type owl:DatatypeProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( skos:ConceptScheme
lime:Lexicon
ontolex:LexicalEntry
)
] ;
rdfs:range xsd:language ;
rdfs:comment "The 'language' property indicates the language of a lexicon, a lexical entry, a concept set or a lexicalization set."@en ,
"Свойство 'язык' указывает язык лексикона, словарной единицы, набора понятий или набора лексикализаций."@ru ;
rdfs:isDefinedBy "http://www.w3.org/ns/lemon/lime" ;
rdfs:label "Sprache"@de ,
"idioma"@pt ,
"language"@en ,
"langue"@fr ,
"lengua"@es ,
"limbă"@ro ,
"lingua"@it ,
"språk"@sv ,
"taal"@af ,
"taal"@nl ,
"язык"@ru .
#################################################################
# Classes
#################################################################
### http://purl.org/dc/terms/Agent
dcterms:Agent rdf:type owl:Class ;
rdfs:comment "A resource that acts or has the power to act."@en ;
rdfs:isDefinedBy dcterms: ;
rdfs:label "Agent"@en .
### https://w3id.org/thor/thor-ontology/Context
thor:Context rdf:type owl:Class ;
rdfs:comment """Is used for specifying pragmatical use of lexical senses for a more precise and adequate definition of them, indicating exactly their use contexts.
Examples of contexts include the iStandard iWlz, or the ZIN organization."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/Definition
thor:Definition rdf:type owl:Class ;
rdfs:comment "This class is used for the reification of the semantic elements' definitions. With the thor:Definition class it is possible to relate the textual definitions with other properties, like the definition's source."^^rdf:langString .
### https://w3id.org/thor/thor-ontology/PreferredSense
thor:PreferredSense rdf:type owl:Class ;
rdfs:subClassOf ontolex:LexicalSense ;
rdfs:comment """A thor:PreferredSense is the ontolex:LexicalSense that is associated with the ontolex:LexicalEntry that is going to become the skos:prefLabel for the generated ontolex:LexicalConcept.
Each SynSet (set of all Lexical Senses that are synonymous between themselves) has exactly one thor:PreferredSense."""^^rdf:langString .
### https://w3id.org/thor/thor-ontology/SemanticElement
thor:SemanticElement rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:unionOf ( rdfs:Resource
ontolex:LexicalConcept
ontolex:LexicalSense
)
] ;
rdfs:comment "thor:SemanticElement groups ontolex:LexicalConcepts, ontolex:LexicalSenses, and Ontology Entities (represented as rdfs:Resources). This class was created for setting the domain and range of the five mapping relations that indicate links between them." .
### https://w3id.org/thor/thor-ontology/iStandard
thor:iStandard rdf:type owl:Class ;
rdfs:subClassOf thor:Context ;
rdfs:comment """Are the information standards managed by the National Health Care Institute (Zorginstituut Nederland).
Examples of iStandards include: iWlz, iWmo, iJw, an iPgb.
Definition source (translated from): https://istandaarden.nl/istandaarden/begrippen#i""" .
### http://www.lexinfo.net/ontology/3.0/lexinfo#Adjective
lexinfo:Adjective rdf:type owl:Class ;
rdfs:subClassOf ontolex:Word ;
rdfs:label "adjective"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#Adjective> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#Adverb
lexinfo:Adverb rdf:type owl:Class ;
rdfs:subClassOf ontolex:Word ;
rdfs:label "adverb"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#Adverb> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#Noun
lexinfo:Noun rdf:type owl:Class ;
rdfs:subClassOf ontolex:Word ;
rdfs:label "Substantiv"@de ,
"noun"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#Noun> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#ProperNoun
lexinfo:ProperNoun rdf:type owl:Class ;
rdfs:subClassOf lexinfo:Noun ;
rdfs:label "proper noun"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#ProperNoun> .
### http://www.lexinfo.net/ontology/3.0/lexinfo#Verb
lexinfo:Verb rdf:type owl:Class ;
rdfs:subClassOf ontolex:Word ;
rdfs:label "verb"@en ;
owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#Verb> .
### http://www.w3.org/2000/01/rdf-schema#Resource
rdfs:Resource rdf:type owl:Class ;
rdfs:subClassOf thor:SemanticElement .
### http://www.w3.org/2004/02/skos/core#Concept
skos:Concept rdf:type owl:Class ;
owl:disjointWith skos:ConceptScheme ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "Concept"@en ,
"concept"@en ;
skos:definition "An idea or notion; a unit of thought."@en .
### http://www.w3.org/2004/02/skos/core#ConceptScheme
skos:ConceptScheme rdf:type owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "Concept Scheme"@en ,
"concept scheme"@en ;
skos:definition "A set of concepts, optionally including statements about semantic relationships between those concepts."@en ;
skos:example "Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies."@en ;
skos:scopeNote "A concept scheme may be defined to include concepts from different sources."@en .
### http://www.w3.org/ns/lemon/lime#Lexicon
lime:Lexicon rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty lime:entry ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass ontolex:LexicalEntry
] ,
[ rdf:type owl:Restriction ;
owl:onProperty lime:language ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ;
rdfs:comment "A lexicon represents a collection of lexical entries for a particular language or domain."@en ,
"Лексикон представляет собой набор словарных единиц для определенного языка или домена."@ru ;
rdfs:isDefinedBy "http://www.w3.org/ns/lemon/lime" ;
rdfs:label "Lessico"@it ,
"Lexicon"@nl ,
"Lexikon"@de ,
"Lexique"@fr ,
"leksikon"@af ,
"lexicon"@en ,
"lexicon"@ro ,
"lexicón"@es ,
"lexikon"@sv ,
"лексикон"@ru .
### http://www.w3.org/ns/lemon/ontolex#Form
ontolex:Form rdf:type owl:Class ;
rdfs:subClassOf owl:Thing ,
[ rdf:type owl:Restriction ;
owl:onProperty ontolex:writtenRep ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange rdf:langString
] ;
rdfs:comment "'Форма' представляет одну грамматическую реализацию словарной единицы."@ru ,
"A form represents one grammatical realization of a lexical entry."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "Form"@de ,
"Forma"@pt ,
"form"@en ,
"form"@sv ,
"forma"@es ,
"forma"@it ,
"forme"@fr ,
"formă"@ro ,
"vorm"@af ,
"vorm"@nl ,
"форма"@ru .
### http://www.w3.org/ns/lemon/ontolex#LexicalConcept
ontolex:LexicalConcept rdf:type owl:Class ;
rdfs:subClassOf thor:SemanticElement ,
skos:Concept ;
owl:disjointWith ontolex:LexicalSense ;
rdfs:comment "'Лексическое понятие' представляет элемент абстрактного мышления, понятие или единицу мысли, которая может быть лексикализована определенным набором смыслов."@ru ,
"A lexical concept represents a mental abstraction, concept or unit of thought that embodies the meaning of one or more lexical entries."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "conceito léxico"@pt ,
"concept lexical"@fr ,
"concept lexical"@ro ,
"concepto lexicalizado"@es ,
"concetto lessicale"@it ,
"leksikale konsep"@af ,
"lexical concept"@en ,
"lexikaal concept"@nl ,
"lexikalisches Konzept"@de ,
"lexikaliskt begrepp"@sv ,
"лексическое понятие"@ru .
### http://www.w3.org/ns/lemon/ontolex#LexicalEntry
ontolex:LexicalEntry rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:unionOf ( ontolex:MultiWordExpression
ontolex:Word
)
] ;
rdfs:subClassOf owl:Thing ,
[ rdf:type owl:Restriction ;
owl:onProperty ontolex:canonicalForm ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass ontolex:Form
] ;
rdfs:comment "'Словарная единица' представляет собой единицу анализа словаря, которая состоит из совокупности грамматически связанных форм и совокупности основных значений, ассоциирующихся со всеми этими формами. 'Словарная единица' - это слово, словосочетание или аффикс одной части речи, морфологической модели, этимологии и набора значений."@ru ,
"A lexical entry represents a unit of analysis of the lexicon that consists of a set of forms that are grammatically related and a set of base meanings that are associated with all of these forms. Thus, a lexical entry is a word, multiword expression or affix with a single part-of-speech, morphological pattern, etymology and set of senses."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "Lexikoneintrag"@de ,
"entrada léxica"@es ,
"entrata lessicale"@it ,
"entrée lexicale"@fr ,
"leksikale inskrywing"@af ,
"lexical entry"@en ,
"lexikaal item"@nl ,
"lexikoningång"@sv ,
"înregistrare lexicală"@ro ,
"словарная единица"@ru .
### http://www.w3.org/ns/lemon/ontolex#LexicalSense
ontolex:LexicalSense rdf:type owl:Class ;
rdfs:subClassOf thor:SemanticElement ,
[ rdf:type owl:Restriction ;
owl:onProperty ontolex:isSenseOf ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass ontolex:LexicalEntry
] ,
[ rdf:type owl:Restriction ;
owl:onProperty ontolex:reference ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ;
rdfs:comment "'Лексический смысл' обозначает лексическое значение словарной единицы, когда оно понимается как относящееся к соответствующему элементу онтологии. 'Лексический смысл' представляет собой овеществление пары, состоящей из однозначно определяемой словарной единицы и однозначно определяемой сущности отнологии, к которой относится данный лексический смысл. Связь между словарной единицей и сущностью в онтологии посредством объекта 'Лексический Смысл' подразумевает, что словарная статья может быть использована для отсылки к соответствующей сущности в онтологии."@ru ,
"A lexical sense represents the lexical meaning of a lexical entry when interpreted as referring to the corresponding ontology element. A lexical sense thus represents a reification of a pair of a uniquely determined lexical entry and a uniquely determined ontology entity it refers to. A link between a lexical entry and an ontology entity via a Lexical Sense object implies that the lexical entry can be used to refer to the ontology entity in question."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/lemon/ontolex> ;
rdfs:label "acepción léxica"@es ,
"leksikale sin"@af ,
"lexical sense"@en ,
"lexikaal zin"@nl ,
"lexikalischer Sinn"@de ,
"lexikonbetydelse"@sv ,
"sens lexical"@ro ,
"senso lessicale"@it ,
"signification lexicale"@fr ,
"лексический смысл"@ru .
### http://www.w3.org/ns/lemon/ontolex#MultiWordExpression
ontolex:MultiWordExpression rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:unionOf ( lexinfo:Adjective
lexinfo:Adverb
lexinfo:Noun
lexinfo:Verb
)
] ;
rdfs:subClassOf ontolex:LexicalEntry ;