-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema_template.ttl
2674 lines (1639 loc) · 89.5 KB
/
schema_template.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
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 : <http://example.org/lang/schema/pi/> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix mmoon: <http://mmoon.org/core/> .
@prefix lang_schema: <http://example.org/lang/schema/pi/> .
@base <http://example.org/lang/schema/pi/> .
<http://example.org/lang/schema/pi/> rdf:type owl:Ontology ;
owl:imports mmoon:v1.0.0/ ;
<http://purl.org/dc/elements/1.1/description> """This is the schema template for creating MMoOn Morpheme Inventory datasets. It imports the MMoOn Core Ontology (http://mmoon.org/core/v1.0.0/) and provides the necessary subclasses and instantiations that are ready-to-use for describing language-specific morphological language data.
It is recommended to adjust the ontology URI as follows: replace 'lang' with an ISO 639-3 language code and 'pi' with the name of the project for which the created dataset will be used.
This template can be reused for describing language data of multiple languages. For every language a new schema file can be created."""@en .
#################################################################
# Annotation properties
#################################################################
### http://mmoon.org/core/forLanguage
mmoon:forLanguage rdf:type owl:AnnotationProperty .
#################################################################
# Classes
#################################################################
### http://example.org/lang/schema/pi/ActionNoun
lang_schema:ActionNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalNoun ,
mmoon:ActionNoun .
### http://example.org/lang/schema/pi/AdjectivalInflection
lang_schema:AdjectivalInflection rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Inflection ,
mmoon:AdjectivalInflection .
### http://example.org/lang/schema/pi/AdjectiveCompound
lang_schema:AdjectiveCompound rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Compounding ,
mmoon:AdjectiveCompound .
### http://example.org/lang/schema/pi/AdjectiveNoun
lang_schema:AdjectiveNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:AdjectiveNoun .
### http://example.org/lang/schema/pi/AdjectiveVerb
lang_schema:AdjectiveVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:AdjectiveVerb .
### http://example.org/lang/schema/pi/AdverbCompound
lang_schema:AdverbCompound rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Compounding ,
mmoon:AdverbCompound .
### http://example.org/lang/schema/pi/Affix
lang_schema:Affix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Morph ,
mmoon:Affix .
### http://example.org/lang/schema/pi/AgentNoun
lang_schema:AgentNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalNoun ,
mmoon:AgentNoun .
### http://example.org/lang/schema/pi/AnalyticWordform
lang_schema:AnalyticWordform rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Wordform ,
mmoon:AnalyticWordform .
### http://example.org/lang/schema/pi/ApplicativeVerb
lang_schema:ApplicativeVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalVerb ,
mmoon:ApplicativeVerb .
### http://example.org/lang/schema/pi/AtomicMorpheme
lang_schema:AtomicMorpheme rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Morpheme ,
mmoon:AtomicMorpheme .
### http://example.org/lang/schema/pi/AttenuativeAdjective
lang_schema:AttenuativeAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeadjectivalAdjective ,
mmoon:AttenuativeAdjective .
### http://example.org/lang/schema/pi/AttenuativeVerb
lang_schema:AttenuativeVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalVerb ,
mmoon:AttenuativeVerb .
### http://example.org/lang/schema/pi/AugmentativeNoun
lang_schema:AugmentativeNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalNoun ,
mmoon:AugmentativeNoun .
### http://example.org/lang/schema/pi/CausativeVerb
lang_schema:CausativeVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalVerb ,
mmoon:CausativeVerb .
### http://example.org/lang/schema/pi/Circumfix
lang_schema:Circumfix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:Circumfix .
### http://example.org/lang/schema/pi/CollectivePersonNoun
lang_schema:CollectivePersonNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalNoun ,
mmoon:CollectivePersonNoun .
### http://example.org/lang/schema/pi/CompoundWord
lang_schema:CompoundWord rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Lexeme ,
mmoon:CompoundWord .
### http://example.org/lang/schema/pi/Compounding
lang_schema:Compounding rdf:type owl:Class ;
rdfs:subClassOf lang_schema:WordFormation ,
mmoon:Compounding .
### http://example.org/lang/schema/pi/Conjugation
lang_schema:Conjugation rdf:type owl:Class ;
rdfs:subClassOf lang_schema:VerbalInflection ,
mmoon:Conjugation .
### http://example.org/lang/schema/pi/Conversion
lang_schema:Conversion rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Derivation ,
mmoon:Conversion .
### http://example.org/lang/schema/pi/DeadjectivalAdjective
lang_schema:DeadjectivalAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdjective ,
mmoon:DeadjectivalAdjective .
### http://example.org/lang/schema/pi/DeadjectivalAdverb
lang_schema:DeadjectivalAdverb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdverb ,
mmoon:DeadjectivalAdverb .
### http://example.org/lang/schema/pi/DeadjectivalNoun
lang_schema:DeadjectivalNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedNoun ,
mmoon:DeadjectivalNoun .
### http://example.org/lang/schema/pi/DeadjectivalVerb
lang_schema:DeadjectivalVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedVerb ,
mmoon:DeadjectivalVerb .
### http://example.org/lang/schema/pi/DeadverbalAdverb
lang_schema:DeadverbalAdverb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdverb ,
mmoon:DeadverbalAdverb .
### http://example.org/lang/schema/pi/Declension
lang_schema:Declension rdf:type owl:Class ;
rdfs:subClassOf lang_schema:NominalInflection ,
mmoon:Declension .
### http://example.org/lang/schema/pi/Degree
lang_schema:Degree rdf:type owl:Class ;
rdfs:subClassOf lang_schema:AdjectivalInflection ,
mmoon:Degree .
### http://example.org/lang/schema/pi/Demonym
lang_schema:Demonym rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalNoun ,
mmoon:Demonym .
### http://example.org/lang/schema/pi/DenominalAdjective
lang_schema:DenominalAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdjective ,
mmoon:DenominalAdjective .
### http://example.org/lang/schema/pi/DenominalAdverb
lang_schema:DenominalAdverb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdverb ,
mmoon:DenominalAdverb .
### http://example.org/lang/schema/pi/DenominalNoun
lang_schema:DenominalNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedNoun ,
mmoon:DenominalNoun .
### http://example.org/lang/schema/pi/DenominalVerb
lang_schema:DenominalVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedVerb ,
mmoon:DenominalVerb .
### http://example.org/lang/schema/pi/Derivation
lang_schema:Derivation rdf:type owl:Class ;
rdfs:subClassOf lang_schema:WordFormation ,
mmoon:Derivation .
### http://example.org/lang/schema/pi/DerivedAdjective
lang_schema:DerivedAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Derivation ,
mmoon:DerivedAdjective .
### http://example.org/lang/schema/pi/DerivedAdverb
lang_schema:DerivedAdverb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Derivation ,
mmoon:DerivedAdverb .
### http://example.org/lang/schema/pi/DerivedNoun
lang_schema:DerivedNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Derivation ,
mmoon:DerivedNoun .
### http://example.org/lang/schema/pi/DerivedVerb
lang_schema:DerivedVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Derivation ,
mmoon:DerivedVerb .
### http://example.org/lang/schema/pi/DerivedWord
lang_schema:DerivedWord rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Lexeme ,
mmoon:DerivedWord .
### http://example.org/lang/schema/pi/DesiderativeVerb
lang_schema:DesiderativeVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalVerb ,
mmoon:DesiderativeVerb .
### http://example.org/lang/schema/pi/DeverbalAdjective
lang_schema:DeverbalAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdjective ,
mmoon:DeverbalAdjective .
### http://example.org/lang/schema/pi/DeverbalAdverb
lang_schema:DeverbalAdverb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedAdverb ,
mmoon:DeverbalAdverb .
### http://example.org/lang/schema/pi/DeverbalNoun
lang_schema:DeverbalNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedNoun ,
mmoon:DeverbalNoun .
### http://example.org/lang/schema/pi/DeverbalVerb
lang_schema:DeverbalVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DerivedVerb ,
mmoon:DeverbalVerb .
### http://example.org/lang/schema/pi/DiminutiveNoun
lang_schema:DiminutiveNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalNoun ,
mmoon:DiminutiveNoun .
### http://example.org/lang/schema/pi/EmptyMorph
lang_schema:EmptyMorph rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:EmptyMorph .
### http://example.org/lang/schema/pi/EmptyMorpheme
lang_schema:EmptyMorpheme rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Morpheme ,
mmoon:EmptyMorpheme .
### http://example.org/lang/schema/pi/FactitiveVerb
lang_schema:FactitiveVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeadjectivalVerb ,
mmoon:FactitiveVerb .
### http://example.org/lang/schema/pi/FemaleNoun
lang_schema:FemaleNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalNoun ,
mmoon:FemaleNoun .
### http://example.org/lang/schema/pi/FusionalMorpheme
lang_schema:FusionalMorpheme rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Morpheme ,
mmoon:FusionalMorpheme .
### http://example.org/lang/schema/pi/GrammaticalWord
lang_schema:GrammaticalWord rdf:type owl:Class ;
rdfs:subClassOf lang_schema:LexicalEntry ,
mmoon:GrammaticalWord .
### http://example.org/lang/schema/pi/Infix
lang_schema:Infix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:Infix .
### http://example.org/lang/schema/pi/Inflection
lang_schema:Inflection rdf:type owl:Class ;
rdfs:subClassOf lang_schema:MorphologicalRelationship ,
mmoon:Inflection .
### http://example.org/lang/schema/pi/InstrumentNoun
lang_schema:InstrumentNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DeverbalNoun ,
mmoon:InstrumentNoun .
### http://example.org/lang/schema/pi/IrregularConjugation
lang_schema:IrregularConjugation rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conjugation ,
mmoon:IrregularConjugation .
### http://example.org/lang/schema/pi/IrregularDegree
lang_schema:IrregularDegree rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Degree ,
mmoon:IrregularDegree .
### http://example.org/lang/schema/pi/Lexeme
lang_schema:Lexeme rdf:type owl:Class ;
rdfs:subClassOf lang_schema:LexicalEntry ,
mmoon:Lexeme .
### http://example.org/lang/schema/pi/LexicalEntry
lang_schema:LexicalEntry rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Word .
### http://example.org/lang/schema/pi/MaterialAdjectivizer
lang_schema:MaterialAdjectivizer rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalAdjective ,
mmoon:MaterialAdjectivizer .
### http://example.org/lang/schema/pi/Morph
lang_schema:Morph rdf:type owl:Class ;
rdfs:subClassOf mmoon:Morph .
### http://example.org/lang/schema/pi/Morpheme
lang_schema:Morpheme rdf:type owl:Class ;
rdfs:subClassOf mmoon:Morpheme .
### http://example.org/lang/schema/pi/MorphologicalRelationship
lang_schema:MorphologicalRelationship rdf:type owl:Class ;
rdfs:subClassOf mmoon:MorphologicalRelationship .
### http://example.org/lang/schema/pi/NoDegree
lang_schema:NoDegree rdf:type owl:Class ;
rdfs:subClassOf lang_schema:AdjectivalInflection ,
mmoon:NoDegree .
### http://example.org/lang/schema/pi/NoInflection
lang_schema:NoInflection rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Inflection ,
mmoon:NoInflection .
### http://example.org/lang/schema/pi/NoWordFormation
lang_schema:NoWordFormation rdf:type owl:Class ;
rdfs:subClassOf lang_schema:WordFormation ,
mmoon:NoWordFormation .
### http://example.org/lang/schema/pi/NominalAdverb
lang_schema:NominalAdverb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:NominalAdverb .
### http://example.org/lang/schema/pi/NominalCompound
lang_schema:NominalCompound rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Compounding ,
mmoon:NominalCompound .
### http://example.org/lang/schema/pi/NominalInflection
lang_schema:NominalInflection rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Inflection ,
mmoon:NominalInflection .
### http://example.org/lang/schema/pi/NominalVerb
lang_schema:NominalVerb rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:NominalVerb .
### http://example.org/lang/schema/pi/NounAdjective
lang_schema:NounAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:NounAdjective .
### http://example.org/lang/schema/pi/PossessiveAdjective
lang_schema:PossessiveAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:DenominalAdjective ,
mmoon:PossessiveAdjective .
### http://example.org/lang/schema/pi/Prefix
lang_schema:Prefix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:Prefix .
### http://example.org/lang/schema/pi/RegularConjugation
lang_schema:RegularConjugation rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conjugation ,
mmoon:RegularConjugation .
### http://example.org/lang/schema/pi/RegularDegree
lang_schema:RegularDegree rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Degree ,
mmoon:RegularDegree .
### http://example.org/lang/schema/pi/Representation
lang_schema:Representation rdf:type owl:Class ;
rdfs:subClassOf mmoon:Representation .
### http://example.org/lang/schema/pi/Root
lang_schema:Root rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Morph ,
mmoon:Root .
### http://example.org/lang/schema/pi/SimpleLexeme
lang_schema:SimpleLexeme rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Lexeme ,
mmoon:SimpleLexeme .
### http://example.org/lang/schema/pi/Simulfix
lang_schema:Simulfix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:Simulfix .
### http://example.org/lang/schema/pi/Stem
lang_schema:Stem rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Morph ,
mmoon:Stem .
### http://example.org/lang/schema/pi/Suffix
lang_schema:Suffix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:Suffix .
### http://example.org/lang/schema/pi/SyntheticWordform
lang_schema:SyntheticWordform rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Wordform ,
mmoon:SyntheticWordform .
### http://example.org/lang/schema/pi/Transfix
lang_schema:Transfix rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:Transfix .
### http://example.org/lang/schema/pi/VerbalAdjective
lang_schema:VerbalAdjective rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:VerbalAdjective .
### http://example.org/lang/schema/pi/VerbalCompound
lang_schema:VerbalCompound rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Compounding ,
mmoon:VerbalCompound .
### http://example.org/lang/schema/pi/VerbalInflection
lang_schema:VerbalInflection rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Inflection ,
mmoon:VerbalInflection .
### http://example.org/lang/schema/pi/VerbalNoun
lang_schema:VerbalNoun rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Conversion ,
mmoon:VerbalNoun .
### http://example.org/lang/schema/pi/Word
lang_schema:Word rdf:type owl:Class ;
rdfs:subClassOf mmoon:Word .
### http://example.org/lang/schema/pi/WordFormation
lang_schema:WordFormation rdf:type owl:Class ;
rdfs:subClassOf lang_schema:MorphologicalRelationship ,
mmoon:WordFormation .
### http://example.org/lang/schema/pi/Wordform
lang_schema:Wordform rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Word ,
mmoon:Wordform .
### http://example.org/lang/schema/pi/ZeroMorph
lang_schema:ZeroMorph rdf:type owl:Class ;
rdfs:subClassOf lang_schema:Affix ,
mmoon:ZeroMorph .
### http://mmoon.org/core/Apprehensional
mmoon:Apprehensional rdf:type owl:Class .
### http://mmoon.org/core/Circumstantial
mmoon:Circumstantial rdf:type owl:Class .
### http://mmoon.org/core/Consecutive
mmoon:Consecutive rdf:type owl:Class .
### http://mmoon.org/core/CrossReference
mmoon:CrossReference rdf:type owl:Class .
### http://mmoon.org/core/Determination
mmoon:Determination rdf:type owl:Class .
### http://mmoon.org/core/Emphasizer
mmoon:Emphasizer rdf:type owl:Class .
### http://mmoon.org/core/FocusMarker
mmoon:FocusMarker rdf:type owl:Class .
### http://mmoon.org/core/InterpropositionalRelation
mmoon:InterpropositionalRelation rdf:type owl:Class .
### http://mmoon.org/core/MorphosyntacticFeature
mmoon:MorphosyntacticFeature rdf:type owl:Class .
### http://mmoon.org/core/Possessive
mmoon:Possessive rdf:type owl:Class .
### http://mmoon.org/core/StatusConstructus
mmoon:StatusConstructus rdf:type owl:Class .
### http://mmoon.org/core/TopicMarker
mmoon:TopicMarker rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### http://example.org/lang/schema/pi/Ablative
lang_schema:Ablative rdf:type owl:NamedIndividual ,
mmoon:Ablative .
### http://example.org/lang/schema/pi/AbsoluteAdjective
lang_schema:AbsoluteAdjective rdf:type owl:NamedIndividual ,
mmoon:AbsoluteAdjective .
### http://example.org/lang/schema/pi/AbsoluteRelativeTense
lang_schema:AbsoluteRelativeTense rdf:type owl:NamedIndividual ,
mmoon:AbsoluteRelativeTense .
### http://example.org/lang/schema/pi/AbsoluteState
lang_schema:AbsoluteState rdf:type owl:NamedIndividual ,
mmoon:AbsoluteState .
### http://example.org/lang/schema/pi/AbsoluteTense
lang_schema:AbsoluteTense rdf:type owl:NamedIndividual ,
mmoon:AbsoluteTense .
### http://example.org/lang/schema/pi/Absolutive
lang_schema:Absolutive rdf:type owl:NamedIndividual ,
mmoon:Absolutive .
### http://example.org/lang/schema/pi/Accusative
lang_schema:Accusative rdf:type owl:NamedIndividual ,
mmoon:Accusative .
### http://example.org/lang/schema/pi/ActionNominalizer
lang_schema:ActionNominalizer rdf:type owl:NamedIndividual ,
mmoon:ActionNominalizer .
### http://example.org/lang/schema/pi/ActionNoun
lang_schema:ActionNoun rdf:type owl:NamedIndividual ,
mmoon:ActionNoun .
### http://example.org/lang/schema/pi/Active
lang_schema:Active rdf:type owl:NamedIndividual ,
mmoon:Active .
### http://example.org/lang/schema/pi/Adelative
lang_schema:Adelative rdf:type owl:NamedIndividual ,
mmoon:Adelative .
### http://example.org/lang/schema/pi/Adessive
lang_schema:Adessive rdf:type owl:NamedIndividual ,
mmoon:Adessive .
### http://example.org/lang/schema/pi/AdjectivalInflection
lang_schema:AdjectivalInflection rdf:type owl:NamedIndividual ,
mmoon:AdjectivalInflection .
### http://example.org/lang/schema/pi/Adjective
lang_schema:Adjective rdf:type owl:NamedIndividual ,
mmoon:Adjective .
### http://example.org/lang/schema/pi/AdjectiveCompound
lang_schema:AdjectiveCompound rdf:type owl:NamedIndividual ,
mmoon:AdjectiveCompound .
### http://example.org/lang/schema/pi/AdjectiveExpansion
lang_schema:AdjectiveExpansion rdf:type owl:NamedIndividual ,
mmoon:AdjectiveExpansion .
### http://example.org/lang/schema/pi/AdjectiveNoun
lang_schema:AdjectiveNoun rdf:type owl:NamedIndividual ,
mmoon:AdjectiveNoun .
### http://example.org/lang/schema/pi/AdjectiveVerb
lang_schema:AdjectiveVerb rdf:type owl:NamedIndividual ,
mmoon:AdjectiveVerb .
### http://example.org/lang/schema/pi/Adjectivization
lang_schema:Adjectivization rdf:type owl:NamedIndividual ,
mmoon:Adjectivization .
### http://example.org/lang/schema/pi/Admonitive
lang_schema:Admonitive rdf:type owl:NamedIndividual ,
mmoon:Admonitive .
### http://example.org/lang/schema/pi/Adposition
lang_schema:Adposition rdf:type owl:NamedIndividual ,
mmoon:Adposition .
### http://example.org/lang/schema/pi/Adverb
lang_schema:Adverb rdf:type owl:NamedIndividual ,
mmoon:Adverb .
### http://example.org/lang/schema/pi/AdverbCompound
lang_schema:AdverbCompound rdf:type owl:NamedIndividual ,
mmoon:AdverbCompound .
### http://example.org/lang/schema/pi/Adverbialization
lang_schema:Adverbialization rdf:type owl:NamedIndividual ,
mmoon:Adverbialization .
### http://example.org/lang/schema/pi/Affirmation
lang_schema:Affirmation rdf:type owl:NamedIndividual ,
mmoon:Affirmation .
### http://example.org/lang/schema/pi/AgentNominalizer
lang_schema:AgentNominalizer rdf:type owl:NamedIndividual ,
mmoon:AgentNominalizer .
### http://example.org/lang/schema/pi/AgentNoun
lang_schema:AgentNoun rdf:type owl:NamedIndividual ,
mmoon:AgentNoun .
### http://example.org/lang/schema/pi/Agentive
lang_schema:Agentive rdf:type owl:NamedIndividual ,
mmoon:Agentive .
### http://example.org/lang/schema/pi/Aktionsart
lang_schema:Aktionsart rdf:type owl:NamedIndividual ,
mmoon:Aktionsart .
### http://example.org/lang/schema/pi/AlienabilityClassifier
lang_schema:AlienabilityClassifier rdf:type owl:NamedIndividual ,
mmoon:AlienabilityClassifier .
### http://example.org/lang/schema/pi/Alienable
lang_schema:Alienable rdf:type owl:NamedIndividual ,
mmoon:Alienable .
### http://example.org/lang/schema/pi/Allative
lang_schema:Allative rdf:type owl:NamedIndividual ,
mmoon:Allative .
### http://example.org/lang/schema/pi/AnimacyClassifier
lang_schema:AnimacyClassifier rdf:type owl:NamedIndividual ,
mmoon:AnimacyClassifier .
### http://example.org/lang/schema/pi/Animal
lang_schema:Animal rdf:type owl:NamedIndividual ,
mmoon:Animal .
### http://example.org/lang/schema/pi/Animate
lang_schema:Animate rdf:type owl:NamedIndividual ,
mmoon:Animate .
### http://example.org/lang/schema/pi/Anterior
lang_schema:Anterior rdf:type owl:NamedIndividual ,
mmoon:Anterior .
### http://example.org/lang/schema/pi/Anticausative
lang_schema:Anticausative rdf:type owl:NamedIndividual ,
mmoon:Anticausative .
### http://example.org/lang/schema/pi/Antipassive
lang_schema:Antipassive rdf:type owl:NamedIndividual ,
mmoon:Antipassive .
### http://example.org/lang/schema/pi/Aorist
lang_schema:Aorist rdf:type owl:NamedIndividual ,
mmoon:Aorist .
### http://example.org/lang/schema/pi/Applicative
lang_schema:Applicative rdf:type owl:NamedIndividual ,
mmoon:Applicative .
### http://example.org/lang/schema/pi/ApplicativeVerb
lang_schema:ApplicativeVerb rdf:type owl:NamedIndividual ,
mmoon:ApplicativeVerb .
### http://example.org/lang/schema/pi/Apprehensional
lang_schema:Apprehensional rdf:type owl:NamedIndividual ,
mmoon:Apprehensional .
### http://example.org/lang/schema/pi/Article
lang_schema:Article rdf:type owl:NamedIndividual ,
mmoon:Article .
### http://example.org/lang/schema/pi/Aspect
lang_schema:Aspect rdf:type owl:NamedIndividual ,
mmoon:Aspect .
### http://example.org/lang/schema/pi/Assumptive
lang_schema:Assumptive rdf:type owl:NamedIndividual ,
mmoon:Assumptive .
### http://example.org/lang/schema/pi/Attenuation
lang_schema:Attenuation rdf:type owl:NamedIndividual ,
mmoon:Attenuation .
### http://example.org/lang/schema/pi/AttenuativeAdjective
lang_schema:AttenuativeAdjective rdf:type owl:NamedIndividual ,
mmoon:AttenuativeAdjective .
### http://example.org/lang/schema/pi/AttenuativeVerb
lang_schema:AttenuativeVerb rdf:type owl:NamedIndividual ,
mmoon:AttenuativeVerb .
### http://example.org/lang/schema/pi/Auditory
lang_schema:Auditory rdf:type owl:NamedIndividual ,
mmoon:Auditory .
### http://example.org/lang/schema/pi/Augmentation
lang_schema:Augmentation rdf:type owl:NamedIndividual ,
mmoon:Augmentation .
### http://example.org/lang/schema/pi/AugmentativeNoun
lang_schema:AugmentativeNoun rdf:type owl:NamedIndividual ,
mmoon:AugmentativeNoun .
### http://example.org/lang/schema/pi/AuxiliaryVerb
lang_schema:AuxiliaryVerb rdf:type owl:NamedIndividual ,
mmoon:AuxiliaryVerb .
### http://example.org/lang/schema/pi/Aversive
lang_schema:Aversive rdf:type owl:NamedIndividual ,
mmoon:Aversive .
### http://example.org/lang/schema/pi/Benefactive
lang_schema:Benefactive rdf:type owl:NamedIndividual ,
mmoon:Benefactive .
### http://example.org/lang/schema/pi/BenefactiveDative
lang_schema:BenefactiveDative rdf:type owl:NamedIndividual ,
mmoon:BenefactiveDative .
### http://example.org/lang/schema/pi/CardinalNumber
lang_schema:CardinalNumber rdf:type owl:NamedIndividual ,
mmoon:CardinalNumber .
### http://example.org/lang/schema/pi/Case
lang_schema:Case rdf:type owl:NamedIndividual ,
mmoon:Case .
### http://example.org/lang/schema/pi/CasusRectus
lang_schema:CasusRectus rdf:type owl:NamedIndividual ,
mmoon:CasusRectus .
### http://example.org/lang/schema/pi/CausativeCase
lang_schema:CausativeCase rdf:type owl:NamedIndividual ,
mmoon:CausativeCase .
### http://example.org/lang/schema/pi/CausativeVerb
lang_schema:CausativeVerb rdf:type owl:NamedIndividual ,
mmoon:CausativeVerb .
### http://example.org/lang/schema/pi/CausativeVoice
lang_schema:CausativeVoice rdf:type owl:NamedIndividual ,
mmoon:CausativeVoice .
### http://example.org/lang/schema/pi/Causativization
lang_schema:Causativization rdf:type owl:NamedIndividual ,
mmoon:Causativization .
### http://example.org/lang/schema/pi/Circumposition
lang_schema:Circumposition rdf:type owl:NamedIndividual ,
mmoon:Circumposition .
### http://example.org/lang/schema/pi/Circumstantial
lang_schema:Circumstantial rdf:type owl:NamedIndividual ,
mmoon:Circumstantial .
### http://example.org/lang/schema/pi/Classifier
lang_schema:Classifier rdf:type owl:NamedIndividual ,
mmoon:Classifier .
### http://example.org/lang/schema/pi/Clusivity
lang_schema:Clusivity rdf:type owl:NamedIndividual ,
mmoon:Clusivity .
### http://example.org/lang/schema/pi/CollectivePersonNoun
lang_schema:CollectivePersonNoun rdf:type owl:NamedIndividual ,
mmoon:CollectivePersonNoun .
### http://example.org/lang/schema/pi/Comitative
lang_schema:Comitative rdf:type owl:NamedIndividual ,
mmoon:Comitative .
### http://example.org/lang/schema/pi/Common
lang_schema:Common rdf:type owl:NamedIndividual ,
mmoon:Common .
### http://example.org/lang/schema/pi/CommonNoun
lang_schema:CommonNoun rdf:type owl:NamedIndividual ,
mmoon:CommonNoun .
### http://example.org/lang/schema/pi/Comparative
lang_schema:Comparative rdf:type owl:NamedIndividual ,
mmoon:Comparative .
### http://example.org/lang/schema/pi/Complementizer
lang_schema:Complementizer rdf:type owl:NamedIndividual ,
mmoon:Complementizer .
### http://example.org/lang/schema/pi/CompletiveAspect
lang_schema:CompletiveAspect rdf:type owl:NamedIndividual ,
mmoon:CompletiveAspect .
### http://example.org/lang/schema/pi/Compounding
lang_schema:Compounding rdf:type owl:NamedIndividual ,
mmoon:Compounding .
### http://example.org/lang/schema/pi/ConativeAktionsart
lang_schema:ConativeAktionsart rdf:type owl:NamedIndividual ,
mmoon:ConativeAktionsart .
### http://example.org/lang/schema/pi/ConativeAspect
lang_schema:ConativeAspect rdf:type owl:NamedIndividual ,
mmoon:ConativeAspect .
### http://example.org/lang/schema/pi/Conditional
lang_schema:Conditional rdf:type owl:NamedIndividual ,
mmoon:Conditional .