forked from ontolex/lexinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexinfo2.owl
5976 lines (5972 loc) · 406 KB
/
lexinfo2.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
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns="http://www.lexinfo.net/ontology/3.0/lexinfo#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:cc="http://creativecommons.org/ns#"
>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#AdjectiveAccusativePostPositiveFrame">
<rdfs:label xml:lang="en">adjective accusative post positive frame</rdfs:label>
<example xml:lang="de">wird wurden unseren irrtum GEWAHR</example>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL22C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#AdjectivePostPositiveFrame"/>
<owl:Restriction rdf:nodeID="ub1bL25C13">
<owl:someValuesFrom>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#AccusativePostPositiveArg">
<owl:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#PostPositiveArg"/>
<owl:equivalentClass>
<rdf:Description rdf:nodeID="ub3bL49C23">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PostPositiveArg"/>
<owl:Restriction rdf:nodeID="ub3bL52C9">
<owl:onProperty rdf:resource="http://www.w3.org/ns/lemon/synsem#marker"/>
<owl:hasValue>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#accusativeCase">
<rdfs:comment xml:lang="en">Case used to indicate direct object.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#accusativeCase"/>
<rdfs:label xml:lang="en">accusative case</rdfs:label>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Case"/>
</owl:Thing>
</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</rdf:Description>
</owl:equivalentClass>
</rdf:Description>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#postPositiveArg">
<rdfs:label xml:lang="en">post positive arg</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#postPositiveArg"/>
<rdfs:comment xml:lang="en">Indicates an argument of an adjective indicated by post-positive modification. An example in english would be that "that is something interesting", where the adjective interesting post-postively modifies something</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
</owl:ObjectProperty>
</owl:onProperty>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#AdjectivePostPositiveFrame"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#AdjectiveAccusativePostPositiveFrame"/>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#fullForm">
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermType"/>
<rdfs:label xml:lang="en">full form</rdfs:label>
<rdfs:comment xml:lang="en">The complete presentation of a term or lexeme for which there is an abbreviated form.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#fullForm"/>
</owl:Thing>
<AbbreviatedForm rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#abbreviation">
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermType"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#abbreviation"/>
<rdfs:label xml:lang="en">abbreviation</rdfs:label>
</AbbreviatedForm>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#RelationNoun">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Noun"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N73509a85a8a44d98807cc39848d74cca">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#relationNoun"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">relation noun</rdfs:label>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#conditional">
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#VerbFormMood"/>
<rdfs:label xml:lang="en">conditional</rdfs:label>
<rdfs:comment xml:lang="en">A conditional relation is a logical relation in which the illocutionary act employing one of a pair of propositions is expressed or implied to be true or in force if the other proposition is true.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#conditional"/>
</owl:Thing>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PlainVerb">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Verb"/>
<rdfs:label xml:lang="en">plain verb</rdfs:label>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Ne07b3e894db842219d342aad49b0b068">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#plainVerb"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#CoordinationParticle">
<rdfs:label xml:lang="en">coordination particle</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Particle"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Nd1285983a702436c948023396668cc5b">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#coordinationParticle"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PossessiveRelativePronoun">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N757607e9d79b433094125ebbacede325">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#possessiveRelativePronoun"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">possessive relative pronoun</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Pronoun"/>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#positiveForm">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#positiveForm"/>
<rdfs:label xml:lang="en">positive form</rdfs:label>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#formNegativeVariant">
<rdfs:label xml:lang="en">form negative variant</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Infix">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/lemon/ontolex#Affix"/>
<rdfs:label xml:lang="en">infix</rdfs:label>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#verbFormMood">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#morphosyntacticProperty">
<rdfs:label xml:lang="en">morphosyntactic property</rdfs:label>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
<rdfs:label xml:lang="en">verb form mood</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#verbFormMood"/>
<rdfs:comment xml:lang="en">One of a set of distinctive forms that are used to signal modality. Modality is a facet of illocutionary point or general intent of a speaker, or a speaker's degree of commitment to the expressed proposition's believability, obligatoriness, desirability or reality.</rdfs:comment>
<rdfs:range rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#VerbFormMood"/>
</owl:ObjectProperty>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#baseElement">
<rdfs:label xml:lang="en">base element</rdfs:label>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermElement"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#baseElement"/>
<rdfs:comment xml:lang="en">The root form of a word or term that is used as the formal dictionary entry for the term.</rdfs:comment>
</owl:Thing>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveInterrogativeFrame">
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL954C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#InterrogativeFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveFrame"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#InterrogativeFrame"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#TransitiveInterrogativeFrame"/>
<example xml:lang="en">he ASKED her [what he should do]</example>
<rdfs:label xml:lang="en">transitive interrogative frame</rdfs:label>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#approximateSynonym">
<rdfs:label xml:lang="en">approximate synonym</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#senseRel"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#approximateSynonym"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalSense"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalSense"/>
<rdfs:comment xml:lang="en">A synonym that differs in some minor way</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#ProperNoun">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N33f37fcec5604b31a57d31f1a472c1eb">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#properNoun"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">proper noun</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Noun"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#ProperNoun"/>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#InterrogativePronoun">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Pronoun"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N971476292e634389b71d1b1d5614d516">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#interrogativePronoun"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">interrogative pronoun</rdfs:label>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#firstPersonForm">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#firstPersonForm"/>
<rdfs:label xml:lang="en">first person form</rdfs:label>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#formPersonVariant">
<rdfs:label xml:lang="en">form person variant</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#formPersonVariant"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#CoordinatingConjunction">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Conjunction"/>
<rdfs:label xml:lang="en">coordinating conjunction</rdfs:label>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N360b42b326c14863bbf6a351a36b07c6">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#coordinatingConjunction"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#ExistentialPronoun">
<rdfs:label xml:lang="en">existential pronoun</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Pronoun"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N50cc53978dd74ee49eddb652b3a1c42a">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#existentialPronoun"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#imperative">
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Mood"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#imperative"/>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#VerbFormMood"/>
<rdfs:label xml:lang="en">imperative</rdfs:label>
<rdfs:comment xml:lang="en">Mood used to express an order.</rdfs:comment>
</owl:Thing>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#IndefiniteDeterminer">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Determiner"/>
<rdfs:label xml:lang="en">indefinite determiner</rdfs:label>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Nb324a64a5a2c401aa1dd2b0c77732b2f">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#indefiniteDeterminer"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GenitiveDitransitiveFrame">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#GenitiveDitransitiveFrame"/>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#VerbFrame"/>
<example xml:lang="de">man KLAGTE ihn des diebstahls AN</example>
<rdfs:label xml:lang="en">genitive ditransitive frame</rdfs:label>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL301C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#VerbFrame"/>
<owl:Restriction rdf:nodeID="ub1bL304C13">
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#directObject">
<rdfs:comment xml:lang="en">relation between a phrase and a verb, in which the relation is central to the verb</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
<rdfs:label xml:lang="en">direct object</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#directObject"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#object"/>
</owl:ObjectProperty>
</owl:onProperty>
</owl:Restriction>
<owl:Restriction rdf:nodeID="ub1bL309C13">
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#genitiveObject">
<rdfs:label xml:lang="en">genitive object</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#object"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#genitiveObject"/>
</owl:ObjectProperty>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
<owl:Restriction rdf:nodeID="ub1bL314C13">
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#subject">
<rdfs:comment xml:lang="en">relation between a phrase and a verb, that represents the person or thing that performs the action or about which something is stated</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#subject"/>
<rdfs:label xml:lang="en">subject</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
</owl:ObjectProperty>
</owl:onProperty>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<TermType rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#string">
<rdfs:label xml:lang="en">string</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#string"/>
<rdfs:comment xml:lang="en">A chunk of text used in a software interface, documentation, help file, or the like.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</TermType>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#AdjectivePhrase">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/lemon/ontolex#MultiwordExpression"/>
<rdfs:label xml:lang="en">adjective phrase</rdfs:label>
<owl:equivalentClass>
<rdf:Description rdf:nodeID="ub2bL63C23">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/lemon/ontolex#MultiwordExpression"/>
<owl:Restriction rdf:nodeID="ub2bL66C7">
<owl:someValuesFrom rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Adjective"/>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#head">
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#head"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#lexicalRel"/>
<rdfs:comment xml:lang="en">Indicates the head element of a phrase</rdfs:comment>
<rdfs:label xml:lang="en">head</rdfs:label>
</owl:ObjectProperty>
</owl:onProperty>
</owl:Restriction>
</owl:intersectionOf>
</rdf:Description>
</owl:equivalentClass>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#inflectionElement">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#inflectionElement"/>
<rdfs:label xml:lang="en">inflection element</rdfs:label>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermElement"/>
<rdfs:comment xml:lang="en">An element of language used to change the form of a word (noun, adjective) by declension, and (verbs) by conjugation.</rdfs:comment>
</owl:Thing>
<Case rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#lativeCase">
<rdfs:label xml:lang="en">lative case</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#lativeCase"/>
<rdfs:comment xml:lang="en">Case which expresses motion to a location.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</Case>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#expression">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#expression"/>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermType"/>
<rdfs:label xml:lang="en">expression</rdfs:label>
<rdfs:comment xml:lang="en">A significant word or phrase.</rdfs:comment>
</owl:Thing>
<NormativeAuthorization rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#legalTerm">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#legalTerm"/>
<rdfs:comment xml:lang="en">A term that is legally defined and used in legally binding documents.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">legal term</rdfs:label>
</NormativeAuthorization>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#UnclassifiedParticle">
<rdfs:label xml:lang="en">unclassified particle</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Particle"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Ne7a9bc4d7939472eb27ff22f57ea1b01">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#unclassifiedParticle"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#positiveDegreeForm">
<rdfs:label xml:lang="en">positive degree form</rdfs:label>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#formDegreeVariant">
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#formDegreeVariant"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<rdfs:label xml:lang="en">form degree variant</rdfs:label>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#positiveDegreeForm"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveInfinitiveSCFrame">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#InfinitiveFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL944C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#InfinitiveFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#SubjectControl"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveFrame"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#TransitiveInfinitiveSCFrame"/>
<example xml:lang="en">john PROMISED mary [to resign]</example>
<rdfs:label xml:lang="en">transitive infinitive sc frame</rdfs:label>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#preterite">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#preterite"/>
<rdfs:comment xml:lang="en">The simple past or preterite as distinct from the perfect form, e.g,, "showed" not "shown"</rdfs:comment>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Tense"/>
<rdfs:label xml:lang="en">preterite</rdfs:label>
</owl:Thing>
<Animacy rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#animate">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#animate"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">animate</rdfs:label>
<rdfs:comment xml:lang="en">Perceived as alive.</rdfs:comment>
</Animacy>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#lativeCaseForm">
<rdfs:label xml:lang="en">lative case form</rdfs:label>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#formCaseVariant">
<rdfs:label xml:lang="en">form case variant</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#formCaseVariant"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Interjection">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#Interjection"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Nd202a592509e4084b48eef4821ff7c44">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#interjection"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">interjection</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/lemon/ontolex#Word"/>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#inHouseRegister">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#inHouseRegister"/>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Register"/>
<rdfs:label xml:lang="en">in house register</rdfs:label>
<rdfs:comment xml:lang="en">Register of terms that are company-specific and not readily recognized outside this environment. // The register of terms that are company-specific and not readily recognized outside this environment.</rdfs:comment>
</owl:Thing>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GenitiveObject">
<owl:equivalentClass>
<rdf:Description rdf:nodeID="ub3bL40C23">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Object"/>
<owl:Restriction rdf:nodeID="ub3bL43C7">
<owl:hasValue>
<Case rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#genitiveCase">
<rdfs:comment xml:lang="en">Case which expresses a possessive relationship (e.g. the boy's book) or some other similarly close connection (e.g. a summer's day).</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#genitiveCase"/>
<rdfs:label xml:lang="en">genitive case</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</Case>
</owl:hasValue>
<owl:onProperty rdf:resource="http://www.w3.org/ns/lemon/synsem#marker"/>
</owl:Restriction>
</owl:intersectionOf>
</rdf:Description>
</owl:equivalentClass>
<rdfs:label xml:lang="en">genitive object</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#GenitiveObject"/>
<rdfs:subClassOf>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Object">
<rdfs:subClassOf>
<owl:Restriction rdf:nodeID="ub3bL18C19">
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</owl:hasValue>
<owl:onProperty rdf:resource="http://www.w3.org/ns/lemon/synsem#optional"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/lemon/synsem#SyntacticArgument"/>
<rdfs:label xml:lang="en">object</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#Object"/>
</rdf:Description>
</rdfs:subClassOf>
</rdf:Description>
<Case rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#sociativeCase">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">sociative case</rdfs:label>
<rdfs:comment xml:lang="en">Case related to the person in whose company the action is carried out, or to any belongings of people which take part in the action.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#sociativeCase"/>
</Case>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#causativeCase">
<rdfs:comment xml:lang="en">Case which expresses that the referent of the noun it marks is the cause of the situation expressed by the clause.</rdfs:comment>
<rdfs:label xml:lang="en">causative case</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#causativeCase"/>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Case"/>
</owl:Thing>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#affix">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#affix"/>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermElement"/>
<rdfs:label xml:lang="en">affix</rdfs:label>
</owl:Thing>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#socioCultural">
<rdfs:comment xml:lang="en">usage marker which identifies the use of a given lexical unit by particular social groups and/or in certain types of communicative situations depending on their level of formality</rdfs:comment>
<rdfs:label xml:lang="en">socio cultural</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/ontolex#usage"/>
</owl:ObjectProperty>
<Definiteness rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#definite">
<rdfs:comment xml:lang="en">Value referring to the capacity of identification of an entity.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#definite"/>
<rdfs:label xml:lang="en">definite</rdfs:label>
</Definiteness>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#delativeCaseForm">
<rdfs:label xml:lang="en">delative case form</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#formCaseVariant"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#etymology">
<rdfs:label xml:lang="en">etymology</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#etymology"/>
<rdfs:comment xml:lang="en">Information on the origin of a word and the development of its meaning.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#definition"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GerundOCFrame">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#GerundFrame"/>
<rdfs:label xml:lang="en">gerund oc frame</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#GerundOCFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL364C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GerundFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#ObjectControl"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Bullet">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Nc1c7b85a6a584ddca21d94a868eb6762">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#bullet"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">bullet</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Symbol"/>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#senseExample">
<rdfs:comment xml:lang="en">Descriptive material that provides a sample of an object or entity defined in the entry.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#definition"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#senseExample"/>
<rdfs:label xml:lang="en">sense example</rdfs:label>
</owl:ObjectProperty>
<owl:SymmetricProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#associativeRelation">
<rdfs:label xml:lang="en">associative relation</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#associativeRelation"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:comment xml:lang="en">A relation between two concepts having a non-hierarchical thematic connection by virtue of experience.</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalSense"/>
<rdfs:subPropertyOf>
<owl:SymmetricProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#relatedTerm">
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalSense"/>
<rdfs:comment xml:lang="en">A term connected to another term by a coordinate or associative relation.</rdfs:comment>
<rdfs:label xml:lang="en">related term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#senseRel"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#relatedTerm"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalSense"/>
</owl:SymmetricProperty>
</rdfs:subPropertyOf>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalSense"/>
</owl:SymmetricProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#voice">
<rdfs:range rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Voice"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#voice"/>
<rdfs:label xml:lang="en">voice</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#morphosyntacticProperty"/>
<rdfs:comment xml:lang="en">Way sentences may alter the relationship between the subject and object of a verb, without changing the meaning of the sentence.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Suffix">
<rdfs:label xml:lang="en">infix</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/lemon/ontolex#Affix"/>
</owl:Class>
<Case rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#allativeCase">
<rdfs:label xml:lang="en">allative case</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">Case which expresses the meaning of motion 'to' or 'towards' the referent it marks.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#allativeCase"/>
</Case>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#root">
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#root"/>
<rdfs:label xml:lang="en">root</rdfs:label>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#lexicalRel"/>
<rdfs:comment xml:lang="en">base of a word</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#IntransitiveSententialFrame">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#SententialFrame"/>
<example xml:lang="en">they THOUGHT he was always late</example>
<rdfs:label xml:lang="en">intransitive sentential frame</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#IntransitiveSententialFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL601C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#IntransitiveFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#SententialFrame"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#InterrogativeRelativePronoun">
<rdfs:label xml:lang="en">interrogative relative pronoun</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/lemon/ontolex#Word"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Ndbc3554a24f84005a5508075e45882d3">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#interrogativeRelativePronoun"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#DemonstrativeDeterminer">
<rdfs:label xml:lang="en">demonstrative determiner</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Determiner"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Na2efc34e4ec448fbbe5634266cc9e629">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#demonstrativeDeterminer"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#degree">
<rdfs:label xml:lang="en">degree</rdfs:label>
<rdfs:comment xml:lang="en">Property concerning comparison.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#degree"/>
<rdfs:range rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Degree"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#morphosyntacticProperty"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GerundSCFrame">
<rdfs:label xml:lang="en">gerund sc frame</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#GerundSCFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL373C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GerundFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#SubjectControl"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#GerundFrame"/>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#clippedTermFor">
<rdfs:label xml:lang="en">clipped term for</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#derivedForm">
<rdfs:comment xml:lang="en">A form that is derived morphosyntactically from another form</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#lexicalRel"/>
<rdfs:label xml:lang="en">derived form</rdfs:label>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#derivedForm"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:comment xml:lang="en">A linking element used to identify a relation between a clipped term and its full or expanded form.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#clippedTermFor"/>
</owl:ObjectProperty>
<Case rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#delativeCase">
<rdfs:label xml:lang="en">delative case</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#delativeCase"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">Case which expresses motion downward from the referent of the noun it marks.</rdfs:comment>
</Case>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GeneralAdverb">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Adverb"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Nae84ab52fc1143739633b46e1d81aefc">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#generalAdverb"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">general adverb</rdfs:label>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#acronymFor">
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#acronymFor"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#contractionFor">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#contractionFor"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#derivedForm"/>
<owl:inverseOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#fullFormFor"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:label xml:lang="en">contraction for</rdfs:label>
<rdfs:comment xml:lang="en">The full form that corresponds to a contracted form.</rdfs:comment>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
<rdfs:label xml:lang="en">acronym for</rdfs:label>
<rdfs:comment xml:lang="en">A linking element used to identify a relation between an acronym and its full or expanded form.</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#ReflexiveDativeTransitiveFrame">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#ReflexiveFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL743C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#DativeTransitiveFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#ReflexiveFrame"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment xml:lang="en">ist diese frame echt?</rdfs:comment>
<example xml:lang="de">ich TUE mir WEH</example>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#ReflexiveDativeTransitiveFrame"/>
<rdfs:label xml:lang="en">reflexive dative transitive frame</rdfs:label>
</owl:Class>
<TermElement rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#syllable">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#syllable"/>
<rdfs:comment xml:lang="en">A unit of spoken language that is next bigger than a speech sound and consists of one or more vowel sounds alone or of a syllabic consonant alone or of either with one or more consonant sounds preceding or following.</rdfs:comment>
<rdfs:label xml:lang="en">syllable</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</TermElement>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#subjunctiveClause">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#subjunctiveClause"/>
<rdfs:label xml:lang="en">subjunctive clause</rdfs:label>
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#clausalArg">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#clausalArg"/>
<rdfs:label xml:lang="en">clausal arg</rdfs:label>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#homograph">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#lexicalRel"/>
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#homograph"/>
<rdfs:label xml:lang="en">homograph</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
</owl:ObjectProperty>
<TermType rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#formula">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#formula"/>
<rdfs:label xml:lang="en">formula</rdfs:label>
<rdfs:comment xml:lang="en">Figures, symbols or the like used to express a concept briefly, such as a mathematical or chemical formula.</rdfs:comment>
</TermType>
<Case rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#vocativeCase">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#vocativeCase"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">Case used to indicate direct address.</rdfs:comment>
<rdfs:label xml:lang="en">vocative case</rdfs:label>
</Case>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#IntransitiveAdverbialComplementFrame">
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL482C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#IntransitiveFrame"/>
<owl:Restriction rdf:nodeID="ub1bL485C13">
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#predicativeAdverb">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#predicativeAdverb"/>
<rdfs:label xml:lang="en">predicative adverb</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#complement"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
</owl:ObjectProperty>
</owl:onProperty>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<example xml:lang="en">he SEEMED well</example>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#IntransitiveFrame"/>
<rdfs:label xml:lang="en">intransitive adverbial complement frame</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#IntransitiveAdverbialComplementFrame"/>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Colon">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N94a1c24640424beaa54b107e92289aea">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#colon"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">colon</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Symbol"/>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#superlative">
<rdfs:comment xml:lang="en">Value used in a comparison between more than two entities.</rdfs:comment>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Degree"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#superlative"/>
<rdfs:label xml:lang="en">superlative</rdfs:label>
</owl:Thing>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#accusativeCaseForm">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#accusativeCaseForm"/>
<rdfs:label xml:lang="en">accusative case form</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#formCaseVariant"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PartitiveArticle">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N6d5684fa52a642cbbfa9f123fb200fef">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partitiveArticle"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Article"/>
<rdfs:label xml:lang="en">partitive article</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveAdjectivalComplementFrame">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#TransitiveAdjectivalComplementFrame"/>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveFrame"/>
<example xml:lang="en">they PAINTED it red</example>
<rdfs:label xml:lang="en">transitive adjectival complement frame</rdfs:label>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL879C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#AdjectivalComplementFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveFrame"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#ReflexivePersonalPronoun">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N160497f889984f6aa56ba9c97f44928b">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#reflexivePersonalPronoun"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Pronoun"/>
<rdfs:label xml:lang="en">reflexive personal pronoun</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Copula">
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Na3d9794744574e64888ae434b3fd41ea">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#copula"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="en">copula</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Verb"/>
</owl:Class>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#vulgarRegister">
<rdfs:comment xml:lang="en">Register of a term or text type that can be characterized as profane or socially unacceptable. // The register of a term or text type that can be characterized as profane or socially unacceptable.</rdfs:comment>
<rdfs:label xml:lang="en">vulgar register</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#vulgarRegister"/>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Register"/>
</owl:Thing>
<Definiteness rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#indefinite">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#indefinite"/>
<rdfs:comment xml:lang="en">Value related to an entity in a situation where the identification of this entity is not clear cut.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">indefinite</rdfs:label>
</Definiteness>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PersonalPronoun">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Pronoun"/>
<rdfs:label xml:lang="en">personal pronoun</rdfs:label>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N5d74870659f6438c8f33b2adb07ad5b4">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#personalPronoun"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#description">
<rdfs:label xml:lang="en">description</rdfs:label>
<rdfs:comment xml:lang="en">A description in general prose text of the issues that are indicated by the context. The description field can occur at many different places in a component and profile.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#definition"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#description"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PronominalAdverb">
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Adverb"/>
<rdfs:label xml:lang="en">pronominal adverb</rdfs:label>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N979f6147f63a44e5b9a17c6abd903f4f">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#pronominalAdverb"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PrepositionalPhraseFrame">
<rdfs:label xml:lang="en">prepositional phrase frame</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#PrepositionFrame"/>
<example xml:lang="en">he is IN london</example>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#PrepositionalPhraseFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL703C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PrepositionFrame"/>
<owl:Restriction rdf:nodeID="ub1bL706C13">
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#complement">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#complement"/>
<rdfs:label xml:lang="en">complement</rdfs:label>
<rdfs:comment xml:lang="en">A noun phrase that follows a copula or similar verb, as for example an idiot in the sentence He is an idiot. - A clause that serves as the subject or direct object of a verb or the direct object of a preposition, as for example that he would be early in the sentence I hoped that he would be early</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
</owl:ObjectProperty>
</owl:onProperty>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minQualifiedCardinality>
<owl:onClass>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#PrepositionalAdjunct">
<rdfs:label xml:lang="en">prepositional adjunct</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#PrepositionalAdjunct"/>
<rdfs:subClassOf>
<owl:Restriction rdf:nodeID="ub3bL12C19">
<owl:onProperty rdf:resource="http://www.w3.org/ns/lemon/synsem#marker"/>
<owl:someValuesFrom rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Preposition"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Adjunct"/>
</rdf:Description>
</owl:onClass>
</owl:Restriction>
<owl:Restriction rdf:nodeID="ub1bL712C13">
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#copulativeSubject">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/synsem#synArg"/>
<rdfs:label xml:lang="en">copulative subject</rdfs:label>
<rdfs:comment xml:lang="en">Indicates the subject of a copula construction. It is assumed that by using this the copula construction is not reversible e.g.,
He is happy/*happy is him</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#copulativeArg"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#copulativeSubject"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#subject"/>
</owl:ObjectProperty>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveDeclarativeFrame">
<example xml:lang="en">he CONVINCED her [that she should go]</example>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#DeclarativeFrame"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#TransitiveDeclarativeFrame"/>
<owl:equivalentClass>
<owl:Class rdf:nodeID="ub1bL897C25">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#DeclarativeFrame"/>
<rdf:Description rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#TransitiveFrame"/>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">transitive declarative frame</rdfs:label>
</owl:Class>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#homonym">
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<rdfs:label xml:lang="en">homonym</rdfs:label>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#LexicalEntry"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#homonym"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/lemon/vartrans#lexicalRel"/>
<rdfs:comment xml:lang="en">A word that is pronounced like another word and that can be spelled the same way (homograph) or can merely sound the same (homophone). // Word that sounds the same and is written the same as another word but is different in meaning.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#dating">
<rdfs:label xml:lang="en">dating</rdfs:label>
<rdfs:comment xml:lang="en">Indication specifying whether the usage is old or modern.</rdfs:comment>
<rdfs:range rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Dating"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#dating"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#morphosyntacticProperty"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#gloss">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#definition"/>
<rdfs:comment xml:lang="en">In TEI: A phrase or word used to provide a gloss or definition for some other word or phrase.
In 1951: Any editorial comment.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#gloss"/>
<rdfs:label xml:lang="en">gloss</rdfs:label>
</owl:ObjectProperty>
<NormativeAuthorization rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#deprecatedTerm">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label xml:lang="en">deprecated term</rdfs:label>
<rdfs:comment xml:lang="en">A term rated according to the scale of a term acceptability rating as undesired.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#deprecatedTerm"/>
</NormativeAuthorization>
<TemporalQualifier rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#obsoleteForm">
<rdfs:comment xml:lang="en">A term or lexeme which is no longer in common use.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#obsoleteForm"/>
<rdfs:label xml:lang="en">obsolete form</rdfs:label>
</TemporalQualifier>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#adposition">
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#PartOfSpeech"/>
<rdfs:label xml:lang="en">adposition</rdfs:label>
<rdfs:comment xml:lang="en">Part of speech that occurs before/inside/after a complement composed of a noun phrase, noun, pronoun or clause that functions as a noun phrase and form a single structure with the complement to express its grammatical and semantic relation to another unit.</rdfs:comment>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#adposition"/>
</owl:Thing>
<owl:Thing rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#infix">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#infix"/>
<rdfs:label xml:lang="en">infix</rdfs:label>
<rdf:type rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#TermElement"/>
</owl:Thing>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#presentTenseForm">
<rdfs:subPropertyOf>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#formTenseVariant">
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#formTenseVariant"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/lemon/ontolex#Form"/>
<rdfs:label xml:lang="en">form tense variant</rdfs:label>
</owl:ObjectProperty>
</rdfs:subPropertyOf>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#presentTenseForm"/>
<rdfs:label xml:lang="en">present tense form</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#thirdPersonForm">
<rdfs:label xml:lang="en">third person form</rdfs:label>
<owl:priorVersion rdf:resource="http://www.lexinfo.net/ontology/2.0/lexinfo#thirdPersonForm"/>
<rdfs:subPropertyOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#formPersonVariant"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#QualifierAdjective">
<rdfs:label xml:lang="en">qualifier adjective</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Adjective"/>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="N83698a12c92946bbb58d324404385b86">
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#qualifierAdjective"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#GenericNumeral">
<rdfs:label xml:lang="en">generic numeral</rdfs:label>
<owl:equivalentClass>
<owl:Restriction rdf:nodeID="Nea03b8452e054ff9a012460186ca7332">
<owl:hasValue rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#genericNumeral"/>
<owl:onProperty rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#partOfSpeech"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.lexinfo.net/ontology/3.0/lexinfo#Numeral"/>
</owl:Class>
<owl:Class rdf:about="http://www.lexinfo.net/ontology/3.0/lexinfo#Slash">
<owl:equivalentClass>