-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpowl2.owl
4260 lines (4260 loc) · 362 KB
/
mpowl2.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"?>
<!DOCTYPE rdf:RDF [
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY xs "http://www.w3.org/2001/XMLSchema#">
<!ENTITY mei "http://www.music-encoding.org/ns/mei">
<!ENTITY xlink "http://www.w3.org/1999/xlink#">
<!ENTITY xml "http://www.w3.org/XML/1998/namespace#">
]>
<rdf:RDF xmlns:xs="http://www.w3.org/2001/XMLSchema#" xmlns:mei="http://www.music-encoding.org/ns/mei" xmlns:xlink="http://www.w3.org/1999/xlink#" xmlns:owl="&owl;" xmlns:rdf="&rdf;" xmlns:rdfs="&rdfs;" >
<owl:Ontology rdf:about="">
<!-- ################################################################################################################# -->
<!-- The imported and included files in the xsd follow - Should be double-checked for existence and if they should be imported using owl:imports. -->
<!-- ################################################################################################################# -->
<!-- <import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/> -->
<!-- <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2004/10/xml.xsd"/> -->
<!-- ##################################################################################### -->
<!-- In the "datatypes" entity, we refer to the file with the simple datatypes produced from the original schema. -->
<!-- ##################################################################################### -->
</owl:Ontology>
<!-- Datatype Definitions -->
<rdfs:Datatype rdf:about="&xsd;ID">
<rdfs:isDefinedBy rdf:resource="&xsd;"/>
<rdfs:label>ID</rdfs:label>
</rdfs:Datatype>
<rdfs:Datatype rdf:about="&xsd;IDREF">
<rdfs:isDefinedBy rdf:resource="&xsd;"/>
<rdfs:label>IDREF</rdfs:label>
</rdfs:Datatype>
<rdfs:Datatype rdf:about="&xsd;IDREFS">
<rdfs:isDefinedBy rdf:resource="&xsd;"/>
<rdfs:label>IDREFS</rdfs:label>
</rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ACCIDENTAL.EXPLICIT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>s</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>f</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ss</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>x</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ff</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>xs</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sx</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ts</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tf</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>n</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>nf</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ns</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>su</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sd</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fu</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fd</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>nu</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>nd</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>1qf</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>3qf</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>1qs</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>3qs</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ACCIDENTAL.IMPLICIT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>s</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>f</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ss</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ff</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>n</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>su</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sd</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fu</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fd</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ARTICULATION">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>acc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>stacc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ten</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>stacciss</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>marc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>marc-stacc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>spicc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>doit</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>scoop</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rip</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>plop</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fall</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>longfall</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>bend</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>flip</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smear</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>shake</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dnbow</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>upbow</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>harm</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>snap</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fingernail</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ten-stacc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>damp</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dampall</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>open</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>stop</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dbltongue</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>trpltongue</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>heel</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>toe</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tap</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>lhpizz</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dot</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>stroke</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.AUGMENTDOT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;nonNegativeInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:maxInclusive>4</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BARPLACE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>mensur</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>staff</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>takt</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BARRENDITION">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>dashed</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dotted</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dbl</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dbldashed</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dbldotted</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>end</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>invis</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rptstart</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rptboth</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rptend</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>single</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BEAM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[i|m|t][1-6]</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BEAT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;decimal"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>0</xs:minInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BEATRPT.REND">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="NS_data.BEATRPT.REND_UNType_1"/><rdf:Description rdf:about="NS_data.BEATRPT.REND_UNType_2"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.BEATRPT.REND_UNType_1">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>4|8|16|32|64|128</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.BEATRPT.REND_UNType_2">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>mixed</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BEND.AMOUNT">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="NS_data.BEND.AMOUNT_UNType_1"/><rdf:Description rdf:about="NS_data.BEND.AMOUNT_UNType_2"/><rdf:Description rdf:about="NS_data.BEND.AMOUNT_UNType_3"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.BEND.AMOUNT_UNType_1">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;decimal"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>\.25|\.5|\.75</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.BEND.AMOUNT_UNType_2">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;decimal"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[0-9](\.25|\.5|\.75)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.BEND.AMOUNT_UNType_3">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>full</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BOOLEAN">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>true</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>false</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.CERTAINTY">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>high</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>medium</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>low</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>unknown</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.CLEFLINE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.CLEFSHAPE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>G</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>GG</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>F</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>C</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>perc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>TAB</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.CLUSTER">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>white</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>black</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>chromatic</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.COLORNAMES">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>aqua</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>black</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>blue</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fuchsia</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>gray</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>green</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>lime</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>maroon</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>navy</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>olive</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>purple</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>red</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>silver</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>teal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>white</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>yellow</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.COLORVALUES">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="NS_data.COLORVALUES_UNType_1"/><rdf:Description rdf:about="NS_data.COLORVALUES_UNType_2"/><rdf:Description rdf:about="NS_data.COLORVALUES_UNType_3"/><rdf:Description rdf:about="NS_data.COLORVALUES_UNType_4"/><rdf:Description rdf:about="NS_data.COLORVALUES_UNType_5"/><rdf:Description rdf:about="NS_data.COLORVALUES_UNType_6"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.COLORVALUES_UNType_1">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>#[0-9A-Fa-f]{6,6}</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.COLORVALUES_UNType_2">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>#[0-9A-Fa-f]{8,8}</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.COLORVALUES_UNType_3">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>rgb\((\s*(([01]?[0-9]?[0-9])|2[0-4][0-9]|25[0-5])\s*,\s*){2}([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\s*\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.COLORVALUES_UNType_4">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>rgba\(\s*(([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\s*,\s*){3}(0(\.\d+)?|1(\.0+)?)\s*\)|rgba\(\s*(((\d{1,2})?%|100%)\s*,\s*){2}(\d{1,2}%|100%)\s*,\s*(0(\.\d+)?|1(\.0+)?)\s*\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.COLORVALUES_UNType_5">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>hsl\(\s*((\d{1,2})|[12]\d{2}|3[0-5]\d|360)\s*,\s*(\d{1,2}%|100%)\s*,\s*(\d{1,2}%|100%)\s*\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.COLORVALUES_UNType_6">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>hsla\(\s*(\d{1,2}|[12]\d{2}|3[0-5]\d|360)\s*,\s*(\d{1,2}%|100%)\s*,\s*(\d{1,2}%|100%)\s*,\s*(0(\.\d+)?|1(\.0+)?)\s*\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.COLOR">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.COLORNAMES"/><rdf:Description rdf:about="mei:data.COLORVALUES"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DEGREES">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;decimal"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:maxInclusive>360.0</xs:maxInclusive></rdf:Description><rdf:Description><xs:minInclusive>-360.0</xs:minInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.DURATION.cmn"/><rdf:Description rdf:about="mei:data.DURATION.mensural"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION.additive">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(long|breve|1|2|4|8|16|32|64|128|256|1024|2048)(\.)*</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION.gestural.prop">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[0-9]+(\.)*r</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION.gestural.pat">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[0-9]+(p|(\.[0-9]+)?(b|s))</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION.gestural">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.DURATION.gestural.prop"/><rdf:Description rdf:about="mei:data.DURATION.gestural.pat"/><rdf:Description rdf:about="mei:data.DURATION.mensural"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ENCLOSURE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>paren</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>brack</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FILL">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>void</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>solid</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>top</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>bottom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>left</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>right</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FINGER.FRET">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="NS_data.FINGER.FRET_UNType_1"/><rdf:Description rdf:about="NS_data.FINGER.FRET_UNType_2"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.FINGER.FRET_UNType_1">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>1</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>4</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.FINGER.FRET_UNType_2">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>x|o|t</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTFAMILY">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTNAME">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTSIZE">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.FONTSIZENUMERIC"/><rdf:Description rdf:about="mei:data.FONTSIZETERM"/><rdf:Description rdf:about="mei:data.PERCENT"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTSIZENUMERIC">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>\d*(\.\d+)?(pt)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTSIZETERM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>xx-small</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>x-small</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>small</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>medium</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>large</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>x-large</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>xx-large</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smaller</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>larger</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTSTYLE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>italic</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>normal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>oblique</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FONTWEIGHT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>bold</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>normal</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FRET">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>1</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>5</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.FRETNUMBER">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;nonNegativeInteger"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.GLISSANDO">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>i</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>m</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>t</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.GRACE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>acc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>unacc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>unknown</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.HEADSHAPE">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.HEADSHAPE.list"/><rdf:Description rdf:about="mei:data.NMTOKEN"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.HEADSHAPE.list">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>quarter</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>half</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>whole</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>backslash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>circle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>+</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>diamond</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>isotriangle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>oval</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>piewedge</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rectangle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rtriangle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>semicircle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>square</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>x</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.HORIZONTALALIGNMENT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>left</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>right</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>center</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>justify</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.INEUMEFORM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>liquescent1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>liquescent2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tied</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tiedliquescent1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tiedliquescent2</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.INEUMENAME">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>pessubpunctis</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>climacus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>scandicus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>bistropha</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tristropha</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>pressusminor</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>pressusmaior</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.INTERVAL.HARMONIC">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[AdMmP][0-9]+</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.INTERVAL.MELODIC">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="xs:decimal"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ISODATE">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="xs:date"/><rdf:Description rdf:about="xs:gYear"/><rdf:Description rdf:about="xs:gMonth"/><rdf:Description rdf:about="xs:gDay"/><rdf:Description rdf:about="xs:gYearMonth"/><rdf:Description rdf:about="xs:gMonthDay"/><rdf:Description rdf:about="xs:time"/><rdf:Description rdf:about="xs:dateTime"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ISOTIME">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;time"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.KEYSIGNATURE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>mixed|0|([1-9]|1[0-2])[f|s]</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.KEYSIGTOKEN">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[a-g][0-9](s|f|ss|x|ff|xs|sx|ts|tf|n|nf|ns|su|sd|fu|fd|nu|nd|1qf|3qf|1qs|3qs)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LAYERSCHEME">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>2o</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>2f</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>3o</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>3f</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LIGATUREFORM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>recta</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>obliqua</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LINEFORM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>dashed</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dotted</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>solid</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>wavy</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LINESTARTENDSYMBOL">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>angledown</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>angleup</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>angleright</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>angleleft</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>arrow</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>arrowopen</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>arrowwhite</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>harpoonleft</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>harpoonright</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>none</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LINESTARTENDSYMBOLSIZE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>1</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>9</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LINEWIDTH">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.LINEWIDTHTERM"/><rdf:Description rdf:about="mei:data.MEASUREMENTABS"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.LINEWIDTHTERM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>narrow</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>medium</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>wide</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MEASUREBEAT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>([0-9]+m\s*\+\s*)?[0-9]+(\.?[0-9]*)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MEASUREBEATOFFSET">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(\+|-)?[0-9]+m\+[0-9]+(\.[0-9]*)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MEASUREMENTABS">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(\+)?\d+(\.\d+)?(cm|mm|in|pt|pc|px|vu)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MEASUREMENTREL">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(\+|-)?\d+(\.\d+)?(cm|mm|in|pt|pc|px|vu)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MELODICFUNCTION">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>aln</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ant</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>app</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>apt</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>arp</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>arp7</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>aun</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>chg</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>cln</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ct</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ct7</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>cun</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>cup</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>et</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ln</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ped</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rep</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ret</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>23ret</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>78ret</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>43sus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>98sus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>76sus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>un</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>un7</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>upt</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>upt7</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MENSURATIONSIGN">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>C</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>O</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.METERSIGN">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>common</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>cut</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MIDICHANNEL">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:maxInclusive>16</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MIDIBPM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MIDIMSPB">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MIDINAMES">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>Acoustic_Grand_Piano</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Bright_Acoustic_Piano</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Grand_Piano</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Honky-tonk_Piano</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Piano_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Piano_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Harpsichord</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Clavi</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Celesta</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Glockenspiel</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Music_Box</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Vibraphone</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Marimba</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Xylophone</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tubular_Bells</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Dulcimer</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Drawbar_Organ</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Percussive_Organ</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Rock_Organ</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Church_Organ</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Reed_Organ</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Accordion</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Harmonica</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tango_Accordion</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Acoustic_Guitar_nylon</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Acoustic_Guitar_steel</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Guitar_jazz</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Guitar_clean</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Guitar_muted</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Overdriven_Guitar</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Distortion_Guitar</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Guitar_harmonics</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Acoustic_Bass</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Bass_finger</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Bass_pick</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Fretless_Bass</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Slap_Bass_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Slap_Bass_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Synth_Bass_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Synth_Bass_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Violin</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Viola</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Cello</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Contrabass</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tremolo_Strings</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pizzicato_Strings</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Orchestral_Harp</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Timpani</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>String_Ensemble_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>String_Ensemble_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>SynthStrings_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>SynthStrings_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Choir_Aahs</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Voice_Oohs</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Synth_Voice</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Orchestra_Hit</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Trumpet</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Trombone</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tuba</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Muted_Trumpet</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>French_Horn</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Brass_Section</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>SynthBrass_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>SynthBrass_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Soprano_Sax</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Alto_Sax</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tenor_Sax</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Baritone_Sax</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Oboe</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>English_Horn</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Bassoon</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Clarinet</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Piccolo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Flute</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Recorder</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pan_Flute</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Blown_Bottle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Shakuhachi</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Whistle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Ocarina</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_1_square</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_2_sawtooth</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_3_calliope</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_4_chiff</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_5_charang</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_6_voice</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_7_fifths</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Lead_8_bass_and_lead</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_1_new_age</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_2_warm</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_3_polysynth</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_4_choir</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_5_bowed</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_6_metallic</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_7_halo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pad_8_sweep</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_1_rain</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_2_soundtrack</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_3_crystal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_4_atmosphere</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_5_brightness</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_6_goblins</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_7_echoes</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>FX_8_sci-fi</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Sitar</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Banjo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Shamisen</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Koto</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Kalimba</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Bagpipe</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Fiddle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Shanai</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tinkle_Bell</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Agogo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Steel_Drums</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Woodblock</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Taiko_Drum</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Melodic_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Synth_Drum</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Reverse_Cymbal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Guitar_Fret_Noise</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Breath_Noise</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Seashore</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Bird_Tweet</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Telephone_Ring</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Helicopter</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Applause</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Gunshot</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Acoustic_Bass_Drum</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Bass_Drum_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Side_Stick</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Acoustic_Snare</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Hand_Clap</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Electric_Snare</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Floor_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Closed_Hi_Hat</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>High_Floor_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Pedal_Hi-Hat</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Open_Hi-Hat</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low-Mid_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Hi-Mid_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Crash_Cymbal_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>High_Tom</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Ride_Cymbal_1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Chinese_Cymbal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Ride_Bell</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Tambourine</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Splash_Cymbal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Cowbell</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Crash_Cymbal_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Vibraslap</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Ride_Cymbal_2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Hi_Bongo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Bongo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Mute_Hi_Conga</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Open_Hi_Conga</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Conga</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>High_Timbale</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Timbale</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>High_Agogo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Agogo</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Cabasa</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Maracas</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Short_Whistle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Long_Whistle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Short_Guiro</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Long_Guiro</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Claves</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Hi_Wood_Block</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Low_Wood_Block</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Mute_Cuica</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Open_Cuica</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Mute_Triangle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>Open_Triangle</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MIDIVALUE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;nonNegativeInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:maxInclusive>127</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MODE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>major</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>minor</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dorian</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>phrygian</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>lydian</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mixolydian</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>aeolian</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>locrian</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MODUSMAIOR">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>2</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>3</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MODUSMINOR">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>2</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>3</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.MUSICFONT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.NMTOKEN">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;NMTOKEN"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.NOTATIONTYPE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>cmn</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mensural</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mensural.black</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mensural.white</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>neume</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tab</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.NOTEHEADMODIFIER">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.NOTEHEADMODIFIER.list"/><rdf:Description rdf:about="mei:data.NOTEHEADMODIFIER.pat"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.NOTEHEADMODIFIER.list">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>backslash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>vline</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>hline</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>centerdot</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>paren</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>brack</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>box</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>circle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dblwhole</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.NOTEHEADMODIFIER.pat">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="NS_data.NOTEHEADMODIFIER.pat_UNType_1"/><rdf:Description rdf:about="NS_data.NOTEHEADMODIFIER.pat_UNType_2"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.NOTEHEADMODIFIER.pat_UNType_1">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;string"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>centertext\((A|B|C|D|E|F|G)(f|♭|n|♮|s|♯)?\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.NOTEHEADMODIFIER.pat_UNType_2">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;string"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>centertext\(H(s|♯)?\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.OCTAVE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;nonNegativeInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:maxInclusive>9</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.OCTAVE.DIS">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>8|15|22</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ORIENTATION">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>reversed|90CW|90CCW</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.OTHERSTAFF">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>above</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>below</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PAGE.PANELS">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>1</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>2</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PERCENT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[0-9]+(\.?[0-9]*)?%</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PGSCALE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&mei;data.PERCENT"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PITCHCLASS">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;nonNegativeInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:maxInclusive>11</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PITCHNAME">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[a-g]</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PITCHNAME.GES">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[a-g]|none</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PITCHNUMBER">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;nonNegativeInteger"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PLACE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>above</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>below</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.PROLATIO">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>2</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>3</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ROTATION">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.DEGREES"/><rdf:Description rdf:about="mei:data.ROTATIONDIRECTION"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ROTATIONDIRECTION">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>none</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>down</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>left</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ne</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>nw</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>se</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sw</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.SCALEDEGREE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(\^|v)?[1-7](\+|\-)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.SIZE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>normal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>cue</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.SLASH">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>1</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>6</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.SLUR">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[i|m|t][1-6]</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STAFFLOC">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;integer"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STAFFREL">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>above</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>below</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>within</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STEMDIRECTION">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.STEMDIRECTION.basic"/><rdf:Description rdf:about="mei:data.STEMDIRECTION.extended"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STEMDIRECTION.basic">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>up</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>down</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STEMDIRECTION.extended">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>left</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>right</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ne</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>se</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>nw</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sw</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STEMMODIFIER">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>none</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>1slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>2slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>3slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>4slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>5slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>6slash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sprech</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>z</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STEMPOSITION">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>left</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>right</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>center</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.STRINGNUMBER">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TEMPERAMENT">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>equal</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>just</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mean</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>pythagorean</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TEMPOVALUE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;decimal"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TEMPUS">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;positiveInteger"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:minInclusive>2</xs:minInclusive></rdf:Description><rdf:Description><xs:maxInclusive>3</xs:maxInclusive></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TEXTRENDITIONLIST">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>italic</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>oblique</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smcaps</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>bold</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>bolder</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>lighter</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>box</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>circle</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>dbox</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tbox</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>bslash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fslash</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>line-through</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>none</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>overline</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>overstrike</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>strike</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sub</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>sup</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>underline</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>ltr</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rtl</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>lro</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rlo</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TEXTRENDITIONPAR">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="NS_data.TEXTRENDITIONPAR_UNType_1"/><rdf:Description rdf:about="NS_data.TEXTRENDITIONPAR_UNType_2"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.TEXTRENDITIONPAR_UNType_1">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;string"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(underline|overline|line-through|strike)\(\d+\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="NS_data.TEXTRENDITIONPAR_UNType_2">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;string"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>(letter-spacing|line-height)\((\+|-)?\d+(\.\d+)?%?\)</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TEXTRENDITION">
<owl:equivalentClass><rdfs:Datatype>
<owl:unionOf rdf:parseType="Collection"><rdf:Description rdf:about="mei:data.TEXTRENDITIONLIST"/><rdf:Description rdf:about="mei:data.TEXTRENDITIONPAR"/></owl:unionOf></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TIE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[i|m|t]</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TSTAMPOFFSET">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;decimal"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.TUPLET">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[i|m|t][1-6]</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.UNEUMEFORM">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>liquescent1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>liquescent2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>liquescent3</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>quilismatic</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rectangular</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>rhombic</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tied</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.UNEUMENAME">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>punctum</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>virga</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>pes</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>clivis</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>torculus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>torculusresupinus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>porrectus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>porrectusflexus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>apostropha</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>oriscus</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>pressusmaior</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>pressusminor</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>virgastrata</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.URI">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;anyURI"/><owl:withRestrictions rdf:parseType="Collection"></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.BETYPE">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>byte</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smil</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>midi</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mmc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>mtc</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smpte-25</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smpte-24</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smpte-df30</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smpte-ndf30</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smpte-df29.97</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>smpte-ndf29.97</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>tcf</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>time</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION.cmn">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>long</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>breve</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>1</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>2</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>4</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>8</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>16</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>32</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>64</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>128</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>256</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>512</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>1024</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>2048</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.DURATION.mensural">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:enumeration>maxima</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>longa</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>brevis</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>semibrevis</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>minima</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>semiminima</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>fusa</xs:enumeration></rdf:Description><rdf:Description><xs:enumeration>semifusa</xs:enumeration></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<rdfs:Datatype rdf:ID="data.ORNAM.cmn">
<owl:equivalentClass><rdfs:Datatype>
<owl:onDatatype rdf:resource="&xs;token"/><owl:withRestrictions rdf:parseType="Collection"><rdf:Description><xs:pattern>[A|a|b|I|i|K|k|M|m|N|n|S|s|T|t|O]|(A|a|S|s|K|k)?(T|t|M|m)(I|i|S|s)?</xs:pattern></rdf:Description></owl:withRestrictions></rdfs:Datatype></owl:equivalentClass></rdfs:Datatype>
<!-- Class Definitions -->
<owl:DatatypeProperty rdf:ID="subtype__xs_NMTOKEN">
<rdfs:range rdf:resource="&xs;NMTOKEN"/>
<rdfs:label>subtype</rdfs:label>
<rdfs:comment>Provide any sub-classification for the element, additional to that given by its type attribute.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="n__xs_nonNegativeInteger">
<rdfs:range rdf:resource="&xs;nonNegativeInteger"/>
<rdfs:label>n</rdfs:label>
<rdfs:comment>A non-negative integer value functioning as a "name".</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="value__xs_decimal">
<rdfs:range rdf:resource="&xs;decimal"/>
<rdfs:label>value</rdfs:label>
<rdfs:comment>Numeric value capturing a measurement or count. Can only be interpreted in combination with the unit attribute.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="halign__mei_data.HORIZONTALALIGNMENT">
<rdfs:range rdf:resource="&datatypes;data.HORIZONTALALIGNMENT"/>
<rdfs:label>halign</rdfs:label>
<rdfs:comment>Records horizontal alignment of the page footer.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="rotation__mei_data.DEGREES">
<rdfs:range rdf:resource="&datatypes;data.DEGREES"/>
<rdfs:label>rotation</rdfs:label>
<rdfs:comment>A positive value for rotation rotates the text in a counter-clockwise fashion, while negative values produce clockwise rotation.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="delim__xs_string">
<rdfs:range rdf:resource="&xs;string"/>
<rdfs:label>delim</rdfs:label>
<rdfs:comment>Indicates the delimiter used to mark the portions of text that are to be stacked.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="mainLang__xs_language">
<rdfs:range rdf:resource="&xs;language"/>
<rdfs:label>mainLang</rdfs:label>
<rdfs:comment>(main language) supplies a code which identifies the chief language used in the bibliographic work.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="version__xs_NMTOKEN">
<rdfs:range rdf:resource="&xs;NMTOKEN"/>
<rdfs:label>version</rdfs:label>
<rdfs:comment>Supplies a version number for an application, independent of its identifier or display name.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="initial__mei_data.BOOLEAN">
<rdfs:range rdf:resource="&datatypes;data.BOOLEAN"/>
<rdfs:label>initial</rdfs:label>
<rdfs:comment>Marks this hand as the first one of the document.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="isodur__xs_duration">
<rdfs:range rdf:resource="&xs;duration"/>
<rdfs:label>isodur</rdfs:label>
<rdfs:comment>Holds a W3C duration value, e.g., "PT2H34M45.67S".</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="count__xs_positiveInteger">
<rdfs:range rdf:resource="&xs;positiveInteger"/>
<rdfs:label>count</rdfs:label>
<rdfs:comment>Indicates the number of performers.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="solo__mei_data.BOOLEAN">
<rdfs:range rdf:resource="&datatypes;data.BOOLEAN"/>
<rdfs:label>solo</rdfs:label>
<rdfs:comment>Marks this instrument or vocal part as a soloist. Do not use this attribute for a solo instrument which is not accompanied.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="currency__xs_NMTOKEN">
<rdfs:range rdf:resource="&xs;NMTOKEN"/>
<rdfs:label>currency</rdfs:label>
<rdfs:comment>Monetary unit.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="num__xs_positiveInteger">
<rdfs:range rdf:resource="&xs;positiveInteger"/>
<rdfs:label>num</rdfs:label>
<rdfs:comment>Records the channel configuration in numeric form.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="num__mei_data.MIDICHANNEL">
<rdfs:range rdf:resource="&datatypes;data.MIDICHANNEL"/>
<rdfs:label>num</rdfs:label>
<rdfs:comment>MIDI number in the range set by data.MIDICHANNEL.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="expan__xs_string">
<rdfs:range rdf:resource="&xs;string"/>
<rdfs:label>expan</rdfs:label>
<rdfs:comment>Records the expansion of a text abbreviation.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="degree__xs_string">
<rdfs:range rdf:resource="&xs;string"/>
<rdfs:label>degree</rdfs:label>
<rdfs:comment>Records the degree of damage.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="abbr__xs_string">
<rdfs:range rdf:resource="&xs;string"/>
<rdfs:label>abbr</rdfs:label>
<rdfs:comment>Captures the abbreviated form of the text.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="new__mei_data.URI">
<rdfs:range rdf:resource="&datatypes;data.URI"/>
<rdfs:label>new</rdfs:label>
<rdfs:comment>Identifies the new hand. The value must contain the ID of a hand element given elsewhere in the document.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="old__mei_data.URI">
<rdfs:range rdf:resource="&datatypes;data.URI"/>
<rdfs:label>old</rdfs:label>
<rdfs:comment>Identifies the old hand. The value must contain the ID of a hand element given elsewhere in the document.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="desc__xs_string">
<rdfs:range rdf:resource="&xs;string"/>
<rdfs:label>desc</rdfs:label>
<rdfs:comment>Provides a description of the means of restoration, 'stet' or 'strike-down', for example.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="ulx__xs_nonNegativeInteger">
<rdfs:range rdf:resource="&xs;nonNegativeInteger"/>
<rdfs:label>ulx</rdfs:label>
<rdfs:comment>Indicates the upper-left corner x coordinate.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="uly__xs_nonNegativeInteger">
<rdfs:range rdf:resource="&xs;nonNegativeInteger"/>
<rdfs:label>uly</rdfs:label>
<rdfs:comment>Indicates the upper-left corner y coordinate.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pos__xs_positiveInteger">
<rdfs:range rdf:resource="&xs;positiveInteger"/>
<rdfs:label>pos</rdfs:label>
<rdfs:comment>Records the fret position at which the chord tablature is to be played.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="fing__mei_data.FINGER.FRET">
<rdfs:range rdf:resource="&datatypes;data.FINGER.FRET"/>
<rdfs:label>fing</rdfs:label>
<rdfs:comment>Indicates which finger, if any, should be used to play an individual string. The index, middle, ring, and little fingers are represented by the values 1-4, while 't' is for the thumb. The values 'x' and 'o' indicate muffled and open strings, respectively.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="abstype__mei_data.BETYPE">
<rdfs:range rdf:resource="&datatypes;data.BETYPE"/>
<rdfs:label>abstype</rdfs:label>
<rdfs:comment>Specifies the kind of values used in the absolute attribute.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="inttype__mei_data.BETYPE">
<rdfs:range rdf:resource="&datatypes;data.BETYPE"/>
<rdfs:label>inttype</rdfs:label>
<rdfs:comment>Specifies the kind of values used in the interval attribute.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="since__mei_data.URI">
<rdfs:range rdf:resource="&datatypes;data.URI"/>
<rdfs:label>since</rdfs:label>
<rdfs:comment>Identifies the reference point for determining the time of the current when element, which is obtained by adding the interval to the time of the reference point. The value should be the ID of another when element within the same parent element. If the since attribute is omitted and the absolute attribute is not specified, then the reference point is understood to be the immediately preceding when element.</rdfs:comment>
</owl:DatatypeProperty>
<owl:Class rdf:ID="macro.metaLike.page">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&mei;pgHead"/>
<owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&mei;pgFoot"/>
<owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&mei;pgDesc"/>
<owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:label>macro.metaLike.page</rdfs:label>
</owl:Class>
<owl:DatatypeProperty rdf:about="#&mei;pgHead">
<rdfs:domain rdf:resource="#macro.metaLike.page"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="#&mei;pgFoot">
<rdfs:domain rdf:resource="#macro.metaLike.page"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="#&mei;pgDesc">
<rdfs:domain rdf:resource="#macro.metaLike.page"/>
</owl:DatatypeProperty>
<owl:Class rdf:ID="macro.availabilityPart">
<rdfs:label>macro.availabilityPart</rdfs:label>
</owl:Class>
<owl:DatatypeProperty rdf:about="#&mei;accessRestrict">
<rdfs:domain rdf:resource="#macro.availabilityPart"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="#&mei;distributor">
<rdfs:domain rdf:resource="#macro.availabilityPart"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="#&mei;price">
<rdfs:domain rdf:resource="#macro.availabilityPart"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="#&mei;sysReq">
<rdfs:domain rdf:resource="#macro.availabilityPart"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="#&mei;useRestrict">
<rdfs:domain rdf:resource="#macro.availabilityPart"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="accid__NS_accid_UNType">
<rdfs:label>accid</rdfs:label>
<rdfs:comment>(accidental) – Records a temporary alteration to the pitch of a note.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="actor__NS_actor_UNType">
<rdfs:label>actor</rdfs:label>
<rdfs:comment>Name of an actor appearing within a cast list.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="address__NS_address_UNType">
<rdfs:label>address</rdfs:label>
<rdfs:comment>Contains a postal address, for example of a publisher, an organization, or an individual.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="addrLine__NS_addrLine_UNType">
<rdfs:label>addrLine</rdfs:label>
<rdfs:comment>(address line) – Single line of a postal address.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="annot__NS_annot_UNType">
<rdfs:label>annot</rdfs:label>
<rdfs:comment>(annotation) – Provides a short statement explaining the text or indicating the basis for an assertion.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="arranger__NS_arranger_UNType">
<rdfs:label>arranger</rdfs:label>
<rdfs:comment>A person or organization who transcribes a musical composition, usually for a different medium from that of the original; in an arrangement the musical substance remains essentially unchanged.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="artic__NS_artic_UNType">
<rdfs:label>artic</rdfs:label>
<rdfs:comment>(articulation) – An indication of how to play a note or chord.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="author__NS_author_UNType">
<rdfs:label>author</rdfs:label>
<rdfs:comment>The name of the creator of the intellectual content of a non-musical, literary work.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="barLine__NS_barLine_UNType">
<rdfs:label>barLine</rdfs:label>
<rdfs:comment>Vertical line drawn through one or more staves that divides musical notation into metrical units.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="bibl__NS_bibl_UNType">
<rdfs:label>bibl</rdfs:label>
<rdfs:comment>(bibliographic reference) – Provides a loosely-structured bibliographic citation in which the sub-components may or may not be explicitly marked.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="biblList__NS_biblList_UNType">
<rdfs:label>biblList</rdfs:label>
<rdfs:comment>List of bibliographic references.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="biblScope__NS_biblScope_UNType">
<rdfs:label>biblScope</rdfs:label>
<rdfs:comment>(scope of citation) – Defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="body__NS_body_UNType">
<rdfs:label>body</rdfs:label>
<rdfs:comment>Contains the whole of a single musical text, excluding any front or back matter.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="caption__NS_caption_UNType">
<rdfs:label>caption</rdfs:label>
<rdfs:comment>A label which accompanies an illustration or a table.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="castGrp__NS_castGrp_UNType">
<rdfs:label>castGrp</rdfs:label>
<rdfs:comment>(cast group) – Groups one or more individual castItem elements within a cast list.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="castItem__NS_castItem_UNType">
<rdfs:label>castItem</rdfs:label>
<rdfs:comment>Contains a single entry within a cast list, describing either a single role or a list of non-speaking roles.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="castList__NS_castList_UNType">
<rdfs:label>castList</rdfs:label>
<rdfs:comment>Contains a single cast list or dramatis personae.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="chord__NS_chord_UNType">
<rdfs:label>chord</rdfs:label>
<rdfs:comment>A simultaneous sounding of two or more notes in the same layer *with the same duration*.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="clef__NS_clef_UNType">
<rdfs:label>clef</rdfs:label>
<rdfs:comment>Indication of the exact location of a particular note on the staff and, therefore, the other notes as well.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="clefGrp__NS_clefGrp_UNType">
<rdfs:label>clefGrp</rdfs:label>
<rdfs:comment>(clef group) – A set of simultaneously-occurring clefs.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="composer__NS_composer_UNType">
<rdfs:label>composer</rdfs:label>
<rdfs:comment>The name of the creator of the intellectual content of a musical work.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="creation__NS_creation_UNType">
<rdfs:label>creation</rdfs:label>
<rdfs:comment>Non-bibliographic details of the creation of an intellectual entity, in narrative form, such as the date, place, and circumstances of its composition. More detailed information may be captured within the history element.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="custos__NS_custos_UNType">
<rdfs:label>custos</rdfs:label>
<rdfs:comment>Symbol placed at the end of a line of music to indicate the first note of the next line. Sometimes called a "direct".</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="date__NS_date_UNType">
<rdfs:label>date</rdfs:label>
<rdfs:comment>A string identifying a point in time or the time period between two such points.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="depth__NS_depth_UNType">
<rdfs:label>depth</rdfs:label>
<rdfs:comment>Description of a measurement taken through a three-dimensional object.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="desc__NS_desc_UNType">
<rdfs:label>desc</rdfs:label>
<rdfs:comment>(description) – Container for text that briefly describes the feature to which it is attached, including its intended usage, purpose, or application as appropriate.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="dir__NS_dir_UNType">
<rdfs:label>dir</rdfs:label>
<rdfs:comment>(directive) – An instruction expressed as a combination of text and symbols — such as segno and coda symbols, fermatas over a bar line, etc., typically above, below, or between staves, but not on the staff — that is not encoded elsewhere in more specific elements, like <tempo> or <dynam>.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="distributor__NS_distributor_UNType">
<rdfs:label>distributor</rdfs:label>
<rdfs:comment>Person or agency, other than a publisher, from which access (including electronic access) to a bibliographic entity may be obtained.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="div__NS_div_UNType">
<rdfs:label>div</rdfs:label>
<rdfs:comment>(division) – Major structural division of text, such as a preface, chapter or section.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="dot__NS_dot_UNType">
<rdfs:label>dot</rdfs:label>
<rdfs:comment>Dot of augmentation or division.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="dynam__NS_dynam_UNType">
<rdfs:label>dynam</rdfs:label>
<rdfs:comment>(dynamic) – Indication of the volume of a note, phrase, or section of music.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="edition__NS_edition_UNType">
<rdfs:label>edition</rdfs:label>
<rdfs:comment>(edition designation) – A word or text phrase that indicates a difference in either content or form between the item being described and a related item previously issued by the same publisher/distributor (e.g. 2nd edition, version 2.0, etc.), or simultaneously issued by either the same publisher/distributor or another publisher/distributor (e.g. large print edition, British edition, etc.).</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="editor__NS_editor_UNType">
<rdfs:label>editor</rdfs:label>
<rdfs:comment>The name of the individual(s), institution(s) or organization(s) acting in an editorial capacity.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="ending__NS_ending_UNType">
<rdfs:label>ending</rdfs:label>
<rdfs:comment>Alternative ending for a repeated passage of music; i.e., prima volta, seconda volta, etc.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="event__NS_event_UNType">
<rdfs:label>event</rdfs:label>
<rdfs:comment>Contains a free-text event description.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="eventList__NS_eventList_UNType">
<rdfs:label>eventList</rdfs:label>
<rdfs:comment>Contains historical information given as a sequence of significant past events.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="expansion__NS_expansion_UNType">
<rdfs:label>expansion</rdfs:label>
<rdfs:comment>Indicates how a section may be programmatically expanded into its 'through-composed' form.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="extent__NS_extent_UNType">
<rdfs:label>extent</rdfs:label>
<rdfs:comment>Used to express size in terms other than physical dimensions, such as number of pages, number of records in file, number of bytes, performance duration for music, audio recordings and visual projections, etc.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="funder__NS_funder_UNType">
<rdfs:label>funder</rdfs:label>
<rdfs:comment>Names of individuals, institutions, or organizations responsible for funding. Funders provide financial support for a project; they are distinct from sponsors, who provide intellectual support and authority.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="genre__NS_genre_UNType">
<rdfs:label>genre</rdfs:label>
<rdfs:comment>Term or terms that designate a category characterizing a particular style, form, or content.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="group__NS_group_UNType">
<rdfs:label>group</rdfs:label>
<rdfs:comment>Contains a composite musical text, grouping together a sequence of distinct musical texts (or groups of such musical texts) which are regarded as a unit for some purpose, for example, the collected works of a composer.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="grpSym__NS_grpSym_UNType">
<rdfs:label>grpSym</rdfs:label>
<rdfs:comment>(group symbol) – A brace or bracket used to group two or more staves of a score or part.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="head__NS_head_UNType">
<rdfs:label>head</rdfs:label>
<rdfs:comment>(heading) – Contains any heading, for example, the title of a section of text, or the heading of a list.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="height__NS_height_UNType">
<rdfs:label>height</rdfs:label>
<rdfs:comment>Description of the vertical size of an object.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="identifier__NS_identifier_UNType">
<rdfs:label>identifier</rdfs:label>
<rdfs:comment>An alpha-numeric string that establishes the identity of the described material.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="imprint__NS_imprint_UNType">
<rdfs:label>imprint</rdfs:label>
<rdfs:comment>Information relating to the publication or distribution of a bibliographic item.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="incip__NS_incip_UNType">
<rdfs:label>incip</rdfs:label>
<rdfs:comment>(incipit) – The opening music and/or words of a composition.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="keyAccid__NS_keyAccid_UNType">
<rdfs:label>keyAccid</rdfs:label>
<rdfs:comment>(key accidental) – Accidental in a key signature.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="keySig__NS_keySig_UNType">
<rdfs:label>keySig</rdfs:label>
<rdfs:comment>(key signature) – Written key signature.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="label__NS_label_UNType">
<rdfs:label>label</rdfs:label>
<rdfs:comment>A container for text that identifies the feature to which it is attached.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="layer__NS_layer_UNType">
<rdfs:label>layer</rdfs:label>
<rdfs:comment>An independent stream of events on a staff.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="layerDef__NS_layerDef_UNType">
<rdfs:label>layerDef</rdfs:label>
<rdfs:comment>(layer definition) – Container for layer meta-information.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="lb__NS_lb_UNType">
<rdfs:label>lb</rdfs:label>
<rdfs:comment>(line break) – An empty formatting element that forces text to begin on a new line.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="librettist__NS_librettist_UNType">
<rdfs:label>librettist</rdfs:label>
<rdfs:comment>Person or organization who is a writer of the text of an opera, oratorio, etc.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="lyricist__NS_lyricist_UNType">
<rdfs:label>lyricist</rdfs:label>
<rdfs:comment>Person or organization who is a writer of the text of a song.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="mdiv__NS_mdiv_UNType">
<rdfs:label>mdiv</rdfs:label>
<rdfs:comment>(musical division) – Contains a subdivision of the body of a musical text.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="mei__NS_mei_UNType">
<rdfs:label>mei</rdfs:label>
<rdfs:comment>Contains a single MEI-conformant document, consisting of an MEI header and a musical text, either in isolation or as part of an meiCorpus element.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="music__NS_music_UNType">
<rdfs:label>music</rdfs:label>
<rdfs:comment>Contains a single musical text of any kind, whether unitary or composite, for example, an etude, opera, song cycle, symphony, or anthology of piano solos.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="name__NS_name_UNType">
<rdfs:label>name</rdfs:label>
<rdfs:comment>Proper noun or noun phrase.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="note__NS_note_UNType">
<rdfs:label>note</rdfs:label>
<rdfs:comment>A single pitched event. </rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="num__NS_num_UNType">
<rdfs:label>num</rdfs:label>
<rdfs:comment>(number) – Numeric information in any form.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="ornam__NS_ornam_UNType">
<rdfs:label>ornam</rdfs:label>
<rdfs:comment>An element indicating an ornament that is not a mordent, turn, or trill. </rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="p__NS_p_UNType">
<rdfs:label>p</rdfs:label>
<rdfs:comment>(paragraph) – One or more text phrases that form a logical prose passage.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pad__NS_pad_UNType">
<rdfs:label>pad</rdfs:label>
<rdfs:comment>(padding) – An indication of extra visual space between notational elements.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="part__NS_part_UNType">
<rdfs:label>part</rdfs:label>
<rdfs:comment>An alternative visual rendition of the score from the point of view of a particular performer (or group of performers).</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="parts__NS_parts_UNType">
<rdfs:label>parts</rdfs:label>
<rdfs:comment>Provides a container for performers' parts.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pb__NS_pb_UNType">
<rdfs:label>pb</rdfs:label>
<rdfs:comment>(page break) – An empty formatting element that forces text to begin on a new page.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pgDesc__NS_pgDesc_UNType">
<rdfs:label>pgDesc</rdfs:label>
<rdfs:comment>(page description) – Contains a brief prose description of the appearance or description of the content of a physical page.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pgFoot__NS_pgFoot_UNType">
<rdfs:label>pgFoot</rdfs:label>
<rdfs:comment>(page footer) – A running footer on the first page. Also, used to temporarily override a running footer on individual pages.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pgFoot2__NS_pgFoot2_UNType">
<rdfs:label>pgFoot2</rdfs:label>
<rdfs:comment>(page footer 2) – A running footer on the pages following the first.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pgHead__NS_pgHead_UNType">
<rdfs:label>pgHead</rdfs:label>
<rdfs:comment>(page header) – A running header on the first page. Also, used to temporarily override a running header on individual pages.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pgHead2__NS_pgHead2_UNType">
<rdfs:label>pgHead2</rdfs:label>
<rdfs:comment>(page header 2) – A running header on the pages following the first.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="phrase__NS_phrase_UNType">
<rdfs:label>phrase</rdfs:label>
<rdfs:comment>Indication of 1) a "unified melodic idea" or 2) performance technique.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="physLoc__NS_physLoc_UNType">
<rdfs:label>physLoc</rdfs:label>
<rdfs:comment>(physical location) – Groups information about the current physical location of a bibliographic item, such as the repository in which it is located and its shelf mark(s), and its previous locations.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="publisher__NS_publisher_UNType">
<rdfs:label>publisher</rdfs:label>
<rdfs:comment>Name of the organization responsible for the publication of a bibliographic item.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="pubPlace__NS_pubPlace_UNType">
<rdfs:label>pubPlace</rdfs:label>
<rdfs:comment>(publication place) – Name of the place where a bibliographic item was published.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="recipient__NS_recipient_UNType">
<rdfs:label>recipient</rdfs:label>
<rdfs:comment>The name of the individual(s), institution(s) or organization(s) receiving correspondence.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="relatedItem__NS_relatedItem_UNType">
<rdfs:label>relatedItem</rdfs:label>
<rdfs:comment>(related item) – Contains or references another bibliographic item which is related to the present one.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="rend__NS_rend_UNType">
<rdfs:label>rend</rdfs:label>
<rdfs:comment>(render) – A formatting element indicating special visual rendering, e.g., bold or italicized, of a text word or phrase.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="repository__NS_repository_UNType">
<rdfs:label>repository</rdfs:label>
<rdfs:comment>Institution, agency, or individual which holds a bibliographic item.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="resp__NS_resp_UNType">
<rdfs:label>resp</rdfs:label>
<rdfs:comment>(responsibility) – A phrase describing the nature of intellectual responsibility.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="respStmt__NS_respStmt_UNType">
<rdfs:label>respStmt</rdfs:label>
<rdfs:comment>(responsibility statement) – Names one or more individuals, groups, or in rare cases, mechanical processes, responsible for creation or realization of the intellectual or artistic content.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="rest__NS_rest_UNType">
<rdfs:label>rest</rdfs:label>
<rdfs:comment>A non-sounding event found in the source being transcribed.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="role__NS_role_UNType">
<rdfs:label>role</rdfs:label>
<rdfs:comment>Name of a dramatic role, as given in a cast list.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="roleDesc__NS_roleDesc_UNType">
<rdfs:label>roleDesc</rdfs:label>
<rdfs:comment>(role description) – Describes a character's role in a drama.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="sb__NS_sb_UNType">
<rdfs:label>sb</rdfs:label>
<rdfs:comment>(system break) – An empty formatting element that forces musical notation to begin on a new line.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="score__NS_score_UNType">
<rdfs:label>score</rdfs:label>
<rdfs:comment>Full score view of the musical content.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="scoreDef__NS_scoreDef_UNType">
<rdfs:label>scoreDef</rdfs:label>
<rdfs:comment>(score definition) – Container for score meta-information.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="section__NS_section_UNType">
<rdfs:label>section</rdfs:label>
<rdfs:comment>Segment of music data.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="series__NS_series_UNType">
<rdfs:label>series</rdfs:label>
<rdfs:comment>Contains information about the serial publication in which a bibliographic item has appeared.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="space__NS_space_UNType">
<rdfs:label>space</rdfs:label>
<rdfs:comment>A placeholder used to fill an incomplete measure, layer, etc. most often so that the combined duration of the events equals the number of beats in the measure.</rdfs:comment>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="sponsor__NS_sponsor_UNType">