forked from axelberndt/MPM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpm.odd
1524 lines (1394 loc) · 72.8 KB
/
mpm.odd
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"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_odds.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_odds.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<tei:TEI xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:svg="http://www.w3.org/2000/svg"
xmlns:math="http://www.w3.org/1998/Math/MathML"
xmlns:mpm="http://www.cemfi.de/mpm/ns/1.0"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns="http://www.cemfi.de/mpm/ns/1.0">
<tei:teiHeader>
<tei:fileDesc>
<tei:titleStmt>
<tei:title>MPM – Music Performance Markup</tei:title>
<tei:author>Axel Berndt</tei:author>
<tei:author>Benjamin W. Bohl</tei:author>
</tei:titleStmt>
<tei:publicationStmt>
<tei:p>unpublished</tei:p>
<!--<tei:publisher>
<tei:address>
<tei:addrLine>CeMFI – Center of Music and Film Informatics</tei:addrLine>
<tei:addrLine>University of Music Detmold & University of Applied Sciences OWL</tei:addrLine>
<tei:addrLine>Hornsche Str. 44</tei:addrLine>
<tei:addrLine>D-32756 Detmold</tei:addrLine>
<tei:addrLine>Germany</tei:addrLine>
</tei:address>
</tei:publisher>
<tei:date when=""/>-->
</tei:publicationStmt>
<tei:sourceDesc>
<tei:p>born digital.</tei:p>
</tei:sourceDesc>
</tei:fileDesc>
</tei:teiHeader>
<tei:text>
<tei:body>
<tei:schemaSpec ident="mpm" start="mpm" ns="http://www.cemfi.de/mpm/ns/1.0" prefix="mpm." status="draft">
<!-- borrowed from TEI -->
<tei:constraintSpec ident="isosch" scheme="isoschematron">
<tei:desc>Relationship between scheme attribute and contents: ISO Schematron</tei:desc>
<tei:constraint>
<sch:ns prefix="sch" uri="http://purl.oclc.org/dsdl/schematron"/>
<sch:ns xmlns:sch="http://purl.oclc.org/dsdl/schematron" prefix="mpm" uri="http://www.cemfi.de/mpm/ns/1.0"/>
<sch:report test="tei:constraint/sch:* and @scheme ne 'isoschematron'">Rules in the ISO Schematron language must be inside a constraintSpec with a value of 'isoschematron' on the scheme attribute</sch:report>
</tei:constraint>
</tei:constraintSpec>
<tei:constraintSpec ident="needrules" scheme="isoschematron">
<tei:constraint>
<sch:ns prefix="sch" uri="http://purl.oclc.org/dsdl/schematron"/>
<sch:rule context="tei:macroSpec/tei:constraintSpec[@scheme='isoschematron']/tei:constraint">
<sch:report test="sch:assert|sch:report">An ISO Schematron constraint specification for a macro should not have an 'assert' or 'report' element without a parent 'rule' element</sch:report>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
<!-- / borrowed from TEI -->
<tei:moduleSpec ident="mpm" mode="add" >
<tei:desc>mpm core module</tei:desc>
</tei:moduleSpec>
<tei:macroSpec ident="data.URI" module="mpm" type="dt">
<tei:desc>A Uniform Resource Identifier.</tei:desc>
<tei:content>
<rng:data type="anyURI"/>
</tei:content>
</tei:macroSpec>
<tei:macroSpec ident="data.name.ref" module="mpm" type="dt">
<tei:desc>A reference to a @name in the document.</tei:desc>
<tei:content>
<rng:data>
<rng:data type="string"/>
</rng:data>
</tei:content>
</tei:macroSpec>
<tei:classSpec ident="att.linking" type="atts" mode="add" module="mpm">
<tei:desc>Attribute class for attributes containink link and pointer targets.</tei:desc>
<!--<tei:attList>
<!-\-<tei:attDef ident="uri" module="mpm" mode="add">
<tei:datatype>
<tei:dataRef key="data.URI"/>
<!-\\- <rng:ref name="data.URI"/>-\\->
</tei:datatype>
</tei:attDef>-\->
<!-\-<tei:attDef ident="name.ref" module="mpm" mode="add"><!-\\- TODO reuired on style, accentuationPattern -\\->
<tei:datatype>
<rng:ref name="data.name.ref"/>
</tei:datatype>
<!-\\- constraint spec -\\->
<tei:constraintSpec ident="name.ref" scheme="isoschematron">
<tei:constraint>
<sch:rule context="@name.ref[not(local-name(parent::*) = 'style')]">
<sch:let name="ancestorMap" value="ancestor::*[ends-with(local-name(),'Map')][1]"/>
<sch:let name="mapType"
value="substring-before(local-name($ancestorMap), 'Map')"/>
<sch:let name="precStyleInstrNameRefVal" value="string((/mpm/performance[1]/global[1]/dated[1]/articulationMap[1]/articulation[4]/preceding-sibling::style)[last()]/@name.ref)"/>
<sch:let name="mapStartStyleName" value="string($ancestorMap/@startStyle)"></sch:let>
<sch:let name="styleName" value="string(if($precStyleInstrNameRefVal != '')then($precStyleInstrNameRefVal)else($mapStartStyleName))"/>
<sch:let name="defName" value="string(.)"/>
<sch:let name="stylesEl" value="concat($mapType,'Styles')"/>
<sch:let name="localStyles"
value="ancestor::mpm:part//*[local-name()=$stylesEl]/mpm:styleDef"/>
<sch:let name="localStyleNames" value="for $i in $localStyles return $i/@name"/>
<sch:let name="globalStyles"
value="ancestor::mpm:performance//mpm:header/*[local-name()=$stylesEl]/mpm:styleDef"/>
<sch:let name="globalStyleNames" value="for $i in $globalStyles return $i/@name"/>
<sch:assert role="error"
test="if($styleName = $localStyleNames and $defName = $localStyles[@name = $styleName]/*/@name)
then(true())
else(
if($styleName = $globalStyleNames and $defName = $globalStyles[@name = $styleName]/*/@name)
then(true())
else(false())
)">No <sch:value-of select="concat($mapType,'Def')"/> with @name "<sch:value-of select="$defName"/>" found in styleDef with @name "<sch:value-of select="$styleName"/>"</sch:assert>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
</tei:attDef>-\->
</tei:attList>-->
</tei:classSpec>
<tei:classSpec ident="att.enumeration" type="atts" mode="add" module="mpm">
<tei:desc>Enumeration attribute class.</tei:desc>
<tei:attList>
<tei:attDef ident="number">
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">1</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.named" type="atts" mode="add" module="mpm">
<tei:desc>Name attribute class.</tei:desc>
<tei:attList>
<tei:attDef ident="name" usage="req"><!-- ? same attribute required vs optional -->
<tei:datatype>
<rng:data type="string"/>
</tei:datatype>
<tei:constraintSpec ident="att.name.unique" scheme="isoschematron">
<tei:constraint>
<sch:rule context="@name">
<sch:let name="element" value="local-name(parent::*)"/>
<sch:let name="siblingNames" value="parent::*/preceding-sibling::*[local-name() = $element]/string(@name),parent::*/following-sibling::*[local-name() = $element]/string(@name)"/>
<sch:let name="siblingCount" value="count($siblingNames)"/>
<sch:report role="error" test="if($siblingCount gt 0)then(string(.) = $siblingNames)else(false())">Duplicate @name "<sch:value-of select="."/>" value in current context. <sch:value-of select="$siblingNames"/>;<sch:value-of select="not(string(.) = $siblingNames)"/></sch:report>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.refLike" type="atts" mode="add" module="mpm">
<tei:desc>Attribute class that defines allowed attributes for elements capturing references to external resources.</tei:desc>
<tei:classes>
<tei:memberOf key="att.linking"/>
</tei:classes>
<tei:attList>
<!--<tei:attRef class="att.linking" name="name.ref"/>-->
<tei:attDef ident="name.ref" module="mpm" mode="add"><!-- TODO reuired on style, accentuationPattern -->
<tei:datatype>
<rng:ref name="data.name.ref"/>
</tei:datatype>
<!-- constraint spec -->
<tei:constraintSpec ident="name.ref" scheme="isoschematron">
<tei:constraint>
<sch:rule context="@name.ref[not(local-name(parent::*) = 'style')]">
<sch:let name="ancestorMap" value="ancestor::*[ends-with(local-name(),'Map')][1]"/>
<sch:let name="mapType"
value="substring-before(local-name($ancestorMap), 'Map')"/>
<sch:let name="precStyleInstrNameRefVal" value="string((/mpm/performance[1]/global[1]/dated[1]/articulationMap[1]/articulation[4]/preceding-sibling::style)[last()]/@name.ref)"/>
<sch:let name="mapStartStyleName" value="string($ancestorMap/@startStyle)"></sch:let>
<sch:let name="styleName" value="string(if($precStyleInstrNameRefVal != '')then($precStyleInstrNameRefVal)else($mapStartStyleName))"/>
<sch:let name="defName" value="string(.)"/>
<sch:let name="stylesEl" value="concat($mapType,'Styles')"/>
<sch:let name="localStyles"
value="ancestor::mpm:part//*[local-name()=$stylesEl]/mpm:styleDef"/>
<sch:let name="localStyleNames" value="for $i in $localStyles return $i/@name"/>
<sch:let name="globalStyles"
value="ancestor::mpm:performance//mpm:header/*[local-name()=$stylesEl]/mpm:styleDef"/>
<sch:let name="globalStyleNames" value="for $i in $globalStyles return $i/@name"/>
<sch:assert role="error"
test="if($styleName = $localStyleNames and $defName = $localStyles[@name = $styleName]/*/@name)
then(true())
else(
if($styleName = $globalStyleNames and $defName = $globalStyles[@name = $styleName]/*/@name)
then(true())
else(false())
)">No <sch:value-of select="concat($mapType,'Def')"/> with @name "<sch:value-of select="$defName"/>" found in styleDef with @name "<sch:value-of select="$styleName"/>"</sch:assert>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.startStyle" type="atts" mode="add" module="mpm">
<tei:desc>startStyle attribute class.</tei:desc>
<tei:constraintSpec ident="startStyle" scheme="isoschematron">
<tei:constraint>
<sch:rule context="@startStyle">
<sch:let name="mapType"
value="substring-before(local-name(parent::*), 'Map')"/>
<sch:let name="styleName" value="string(.)"/>
<sch:let name="stylesEl" value="concat($mapType,'Styles')"/>
<sch:let name="localStyles"
value="ancestor::mpm:part//*[local-name()=$stylesEl]/mpm:styleDef/@name"/>
<sch:let name="globalStyles"
value="ancestor::mpm:performance//mpm:header/*[local-name()=$stylesEl]/mpm:styleDef/@name"/>
<sch:assert role="error"
test="if($styleName = $localStyles) then(true()) else(if($styleName = $globalStyles) then(true())else(false()))">mpm:styleDef with @name = "<sch:value-of select="$styleName"/>" not found in <sch:value-of select="if($styleName = $localStyles) then('local') else(if($styleName = $globalStyles) then('global')else('local or global'))"/> definitions, i.e. the ancestor mpm:part/mpm:header/mpm:<sch:value-of select="$stylesEl"/> element.</sch:assert>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
<tei:attList>
<tei:attDef ident="startStyle" usage="req">
<tei:datatype>
<rng:data type="string"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.typed" type="atts" mode="add" module="mpm">
<tei:desc>Type attribute class.</tei:desc>
<tei:attList>
<tei:attDef ident="type" usage="req">
<!--<tei:valList type="semi">
<tei:valItem ident="midi" mode="add">
<tei:gloss>reference to a MIDI</tei:gloss>
</tei:valItem>
<tei:valItem ident="mei" mode="add">
<tei:gloss>reference to a MEI file</tei:gloss>
</tei:valItem>
<tei:valItem ident="musicXML" mode="add">
<tei:gloss>reference to a musicXML file</tei:gloss>
</tei:valItem>
</tei:valList>-->
<tei:datatype>
<rng:data type="string"><!-- TODO: mei midi musicXML msm -->
</rng:data>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.uriLike" type="atts" mode="add" module="mpm">
<tei:desc>Attribute class that defines allowed attributes for elements capturing references to external resources.</tei:desc>
<tei:classes>
<tei:memberOf key="att.linking"/>
</tei:classes>
<tei:attList>
<!--<tei:attRef class="att.linking" name="uri"/>-->
<tei:attDef ident="uri" module="mpm" mode="add">
<tei:datatype>
<tei:dataRef key="data.URI"/>
<!-- <rng:ref name="data.URI"/>-->
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.value" type="atts" mode="add" module="mpm">
<tei:desc>Value attribute class.</tei:desc>
<tei:attList>
<tei:attDef ident="value" usage="req">
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="model.styleDefPart" type="model" module="mpm" mode="add">
<tei:desc>The header styleDefPart class groups elements that may appear in styleDef.</tei:desc>
</tei:classSpec>
<tei:classSpec ident="model.styleDefLike" type="model" module="mpm" mode="add">
<tei:desc>The header styleDefLike class groups elements that may appear where a styleDef appears.</tei:desc><!-- TODO improve description -->
</tei:classSpec>
<tei:classSpec ident="model.styleDefContainerLike" type="model" module="mpm" mode="add">
<tei:desc>The styleDefGrpLike class groups container elements for styleDef elements, such as the articulationStyles element.</tei:desc>
</tei:classSpec>
<tei:elementSpec ident="mpm" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="mpm">
<tei:desc>root element of mpm.</tei:desc>
<tei:content>
<rng:zeroOrMore>
<rng:ref name="referenceMusic"/>
</rng:zeroOrMore>
<rng:oneOrMore>
<rng:ref atLeast="1" name="performance"/>
</rng:oneOrMore>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="performance" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="mpm">
<tei:desc>groups information for one performance style.</tei:desc>
<tei:classes>
<tei:memberOf key="att.named"/>
</tei:classes>
<tei:content>
<rng:ref name="model.performance"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="referenceMusic" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="mpm">
<tei:desc>list of references to files processable with this performance description</tei:desc>
<tei:content>
<rng:zeroOrMore>
<rng:ref name="reference"/>
</rng:zeroOrMore>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="reference" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="mpm">
<tei:desc>reference to a music representation processable by this performance description.</tei:desc>
<tei:classes>
<tei:memberOf key="att.typed"/>
<tei:memberOf key="att.uriLike"/>
</tei:classes>
<tei:content/>
<tei:constraintSpec ident="reference.att.type" scheme="isoschematron">
<tei:desc>The mpm:reference element must have @type specified with one of the following values: mei, midi, msm, musicXML, umt</tei:desc>
<tei:constraint>
<sch:rule context="mpm:reference">
<sch:assert role="error" test="@type">The reference element must have @type.</sch:assert>
</sch:rule>
<sch:rule context="mpm:reference">
<sch:assert role="error" test="@type = ('mei', 'midi', 'msm', 'musicXML', 'umt')">The @type on mpm:reference must have one of the following string values: mei, midi, msm, musicXML, umt.</sch:assert><!-- TODO make semi-open attribute value list -->
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
<tei:constraintSpec ident="reference.att.uri" scheme="isoschematron">
<tei:desc>The mpm:reference element must have @uri defined.</tei:desc>
<tei:constraint>
<sch:rule context="mpm:reference">
<sch:assert role="error" test="@uri">The mpm:reference element must have @uri.</sch:assert>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
</tei:elementSpec>
<tei:elementSpec ident="styleDef" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="mpm">
<tei:desc>Element used in header sections for defining styles that can be referenced from the corresponding map elements. </tei:desc>
<tei:classes>
<tei:memberOf key="model.styleDefLike" min="0" max="unbounded"/>
<tei:memberOf key="att.named"/>
</tei:classes>
<tei:content>
<tei:classRef key="model.styleDefPart" expand="alternate"/>
</tei:content>
</tei:elementSpec>
<!-- module performance -->
<tei:moduleSpec ident="performance" mode="add" >
<tei:desc>performance</tei:desc>
</tei:moduleSpec>
<tei:macroSpec ident="model.performance" mode="add" module="performance">
<tei:desc>Content model for performance styles.</tei:desc><!-- TODO create metadata block -->
<tei:content>
<rng:interleave>
<rng:ref name="global"/>
<rng:zeroOrMore>
<rng:ref name="part"/>
</rng:zeroOrMore>
</rng:interleave>
</tei:content>
</tei:macroSpec>
<tei:classSpec ident="att.dateLike" type="atts">
<tei:desc>Date attributes</tei:desc>
<tei:attList>
<tei:attDef ident="date" usage="req">
<tei:datatype>
<rng:data type="decimal"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.loopable" type="atts" mode="add" module="performance">
<tei:attList>
<tei:attDef ident="loop" usage="req">
<tei:datatype>
<rng:data type="boolean"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.midi" type="atts" mode="add" module="performance">
<tei:attList>
<tei:attDef ident="midi.port">
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="midi.channel">
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">15</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.partLike" type="atts" mode="add" module="performance">
<tei:classes>
<tei:memberOf key="att.enumeration"/>
<tei:memberOf key="att.midi"/>
<tei:memberOf key="att.named"/>
</tei:classes>
</tei:classSpec>
<tei:classSpec ident="model.mapLike" type="model" mode="add" module="mpm">
<tei:desc>class.map groups all map elements.</tei:desc>
</tei:classSpec>
<tei:classSpec ident="att.instructionLike" type="atts" mode="add" module="performance">
<tei:desc>Groups elements that may occur in dated maps.</tei:desc>
<tei:classes>
<tei:memberOf key="att.refLike"/>
<tei:memberOf key="att.dateLike"/>
</tei:classes>
</tei:classSpec>
<tei:classSpec ident="model.headerPart" type="model" module="performance" mode="add">
<tei:desc>The header class groups child elements of the header element.</tei:desc>
</tei:classSpec>
<tei:elementSpec ident="dated" ns="http://www.cemfi.de/mpm/ns/1.0" module="performance" mode="add">
<tei:content>
<rng:zeroOrMore>
<rng:ref name="model.mapLike"/>
</rng:zeroOrMore>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="global" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="performance">
<tei:content>
<tei:elementRef key="header"/>
<tei:elementRef key="dated"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="header" ns="http://www.cemfi.de/mpm/ns/1.0" module="performance" mode="add">
<tei:content>
<rng:interleave>
<tei:classRef key="model.headerPart" expand="sequenceOptional"/><!-- invalid but works ;-) -->
</rng:interleave>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="part" ns="http://www.cemfi.de/mpm/ns/1.0" module="performance" mode="add">
<tei:desc>Defines a part. Parts with @port and @channel that do not match any MIDI data will be ignored.</tei:desc>
<tei:classes>
<tei:memberOf key="att.partLike"/>
</tei:classes>
<tei:content>
<tei:elementRef key="header"/>
<tei:elementRef key="dated"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="style" ns="http://www.cemfi.de/mpm/ns/1.0" mode="add" module="performance">
<tei:desc></tei:desc>
<tei:classes>
<tei:memberOf key="att.instructionLike"/>
<tei:memberOf key="att.standardArticulation"/>
<tei:memberOf key="model.articulationMapPart" min="0" max="unbounded"/>
<tei:memberOf key="model.dynamicsMapPart" min="0" max="unbounded"/>
<tei:memberOf key="model.metricalAccentuationMapPart" min="0" max="unbounded"/>
<tei:memberOf key="model.tempoMapPart" min="0" max="unbounded"/>
<tei:memberOf key="model.rubatoMapPart" min="0" max="unbounded"/>
</tei:classes>
<tei:constraintSpec ident="style-name.ref" scheme="isoschematron">
<tei:constraint>
<sch:rule context="mpm:style">
<sch:let name="mapType"
value="substring-before(local-name(parent::*), 'Map')"/>
<sch:let name="styleName" value="string(@name.ref)"/>
<sch:let name="stylesEl" value="concat($mapType,'Styles')"/>
<sch:let name="localStyles"
value="ancestor::mpm:part//*[local-name()=$stylesEl]/mpm:styleDef/@name"/>
<sch:let name="globalStyles"
value="ancestor::mpm:performance//mpm:header/*[local-name()=$stylesEl]/mpm:styleDef/@name"/>
<sch:assert role="error"
test="if($styleName = $localStyles) then(true()) else(if($styleName = $globalStyles) then(true())else(false()))">mpm:styleDef with @name = "<sch:value-of select="$styleName"/>" not found in <sch:value-of select="if($styleName = $localStyles) then('local') else(if($styleName = $globalStyles) then('global')else('local or global'))"/> definitions, i.e. the ancestor mpm:part/mpm:header/mpm:<sch:value-of select="$stylesEl"/> element.</sch:assert>
</sch:rule>
</tei:constraint>
</tei:constraintSpec>
</tei:elementSpec>
<!-- module misc -->
<tei:moduleSpec ident="misc" mode="add">
<tei:desc>miscellaneous</tei:desc>
</tei:moduleSpec>
<tei:classSpec ident="att.vienna" type="atts" module="misc" mode="add">
<tei:attList>
<tei:attDef ident="velXFadeOnOff" usage="req">
<tei:desc>Controller number for switching VelocityXFade on or off. On performance processing a global standard-tag will be generated if none exists in order to provide one for each part, with @velXFade=20 and @velXFadeOnOff=20.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="velXFade" usage="req">
<tei:desc>Controller number for VelocityXFade. On performance processing a global standard-tag will be generated if none exists in order to provide one for each part, with @velXFade=20 and @velXFadeOnOff=20.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="hSpan" usage="req">
<tei:desc>Controller number for switching the performance-matrix column (duration), standard value is 21.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="vSpan" usage="req">
<tei:desc>Controller number for switching the performance-matrix row (articulation), standard value is 1 (pitchwheel), because in Vienna Instruments this is the corresponding standard controller.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:elementSpec ident="sequencingCommands" ns="http://www.cemfi.de/mpm/ns/1.0" module="misc" mode="add">
<tei:desc>Defines a part. Parts with @port and @channel that do not match any MIDI data will be ignored.</tei:desc>
<tei:classes>
<tei:memberOf key="att.loopable"/>
<tei:memberOf key="model.headerPart" /><!-- min="0" max="1" -->
</tei:classes>
<tei:attList>
<tei:attDef ident="mute" usage="req">
<tei:datatype>
<rng:data type="boolean"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:elementSpec>
<tei:elementSpec ident="viennaCtrls" ns="http://www.cemfi.de/mpm/ns/1.0" module="misc" mode="add">
<tei:desc>Vienna Instruments allow control of "Velocity-Cross-Fade", that influences velocity, expression, ChannelVolume and tone color accordingly. It can be addressed via specific controllers. To provide the engine with the right controller data this element allows the corresponding encoding. On performance processing a global standard-tag will be generated if none exists in order to provide one for each part, with @velXFade=20 and @velXFadeOnOff=20.</tei:desc>
<tei:classes>
<tei:memberOf key="model.headerPart"/><!-- min="0" max="1" -->
<tei:memberOf key="att.vienna"/>
</tei:classes>
<tei:content>
<rng:empty/>
</tei:content>
</tei:elementSpec>
<!-- module articulations -->
<tei:moduleSpec ident="articulation" mode="add">
<tei:desc>articulation</tei:desc>
</tei:moduleSpec>
<tei:classSpec type="model" ident="model.articulationMapPart">
<tei:desc>Groups elements that may occur in mpm:articulationMap</tei:desc>
</tei:classSpec>
<tei:classSpec ident="att.articulation" type="atts" module="articulation" mode="add">
<tei:attList>
<!-- velocity -->
<tei:attDef ident="absoluteVelocity">
<tei:desc>Gives an absolute value for velocity that will replace existing velocity values.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="absoluteVelocityChange">
<tei:desc>Gives an absolute value (+/-) that will be added to the local velocity.</tei:desc>
<tei:datatype>
<rng:data type="int"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="relativeVelocity">
<tei:desc>Gives a relative amount of velocity change as decimal number, e.g. 1=100% (no change), 0.5% (half velocity), 2.0=200% (double velocity).</tei:desc>
<tei:datatype>
<rng:data type="decimal">
<rng:param name="minInclusive">0.0</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<!-- duration -->
<tei:attDef ident="absoluteDuration">
<tei:desc>Gives an absolute value for duration (in MIDI ticks) that will replace existing local duration values.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="absoluteDurationChange">
<tei:desc>Gives an absolute value (+/-) in MIDI ticks that will be added to the local duration values.</tei:desc>
<tei:datatype>
<rng:data type="int"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="absoluteDurationMs">
<tei:desc>Gives an absolute duration in milliseconds that will replace existing local duration values.</tei:desc>
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="absoluteDurationChangeMs">
<tei:desc>Gives an absolute value (+/-) in milliseconds that will be added to existing local duration values.</tei:desc>
<tei:datatype>
<rng:data type="int"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="relativeDuration">
<tei:desc>Gives a relative amount of duration change as decimal number, e.g. 1=100% (no change), 0.5% (half duration), 2.0=200% (double duration).</tei:desc>
<tei:datatype>
<rng:data type="decimal">
<rng:param name="minInclusive">0.0</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="absoluteDelay">
<tei:desc>Gives an absolute value for delay in MIDI ticks.</tei:desc>
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="absoluteDelayMs">
<tei:desc>Gives an absolute value for delay in milliseconds.</tei:desc>
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="detuneCents">
<tei:desc>Gives an detune value in cents.</tei:desc>
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="detuneHz">
<tei:desc>Gives an detune value in Hz.</tei:desc>
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec ident="att.standardArticulation" type="atts" module="articulation" mode="add">
<tei:attList>
<tei:attDef ident="standardArticulation"><!-- TODO require on style in articulationMap -->
<tei:desc></tei:desc>
<tei:datatype>
<rng:data type="string"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:elementSpec ident="articulation" ns="http://www.cemfi.de/mpm/ns/1.0" module="articulation" mode="add">
<tei:desc>Defines an articulation with a stylewide unique @name and respective duration and velocity modifiers.</tei:desc>
<tei:classes>
<tei:memberOf key="att.articulation"/>
<tei:memberOf key="att.instructionLike"/>
<tei:memberOf key="model.articulationMapPart" min="0" max="unbounded"/>
</tei:classes>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="articulationDef" ns="http://www.cemfi.de/mpm/ns/1.0" module="articulation" mode="add">
<tei:desc>Defines an articulation with a stylewide unique @name nad respective duration and velocity modifiers.</tei:desc>
<tei:classes>
<tei:memberOf key="att.named"/>
<tei:memberOf key="att.articulation"/>
<tei:memberOf key="model.styleDefPart" min="0" max="unbounded" exclude="dynamicsDef"/>
</tei:classes>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="articulationStyles" ns="http://www.cemfi.de/mpm/ns/1.0" module="articulation" mode="add">
<tei:desc>Enoded in global or local context's header-element. Groups style definitions. Global an local info may complement each other. If definitions with the same name exist in global and local context, the local instructions will override global definitions.</tei:desc>
<tei:classes>
<tei:memberOf key="model.headerPart" /><!-- TODO check min="0" max="1" -->
<tei:memberOf key="model.styleDefContainerLike"/>
</tei:classes>
<tei:content>
<tei:classRef key="model.styleDefLike" expand="sequenceOptionalRepeatable"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="articulationMap" ns="http://www.cemfi.de/mpm/ns/1.0" module="articulation" mode="add">
<tei:desc>Enoded in global or local context's header-element. Groups style definitions. Global an local info may complement each other. If definitions with the same name exist in global and local context, the local instructions will override global definitions.</tei:desc>
<tei:classes>
<tei:memberOf key="att.standardArticulation"/>
<tei:memberOf key="att.startStyle"/>
<tei:memberOf key="model.mapLike" min="0" max="1"/>
</tei:classes>
<tei:content>
<rng:interleave>
<tei:classRef key="model.articulationMapPart" expand="sequenceOptional"/><!--TODO check @expand invalid but works-->
</rng:interleave>
</tei:content>
</tei:elementSpec>
<!-- module dynamics -->
<tei:moduleSpec ident="dynamics" mode="add">
<tei:desc>dynamics</tei:desc>
</tei:moduleSpec>
<tei:classSpec type="model" ident="model.dynamicsMapPart">
<tei:desc>Groups elements that may occur in mpm:dynamicsMap</tei:desc>
</tei:classSpec>
<tei:classSpec ident="att.dynamics" type="atts" module="dynamics" mode="add">
<tei:desc>Group of dynamics attributes.</tei:desc>
<tei:attList>
<tei:attDef ident="curvature">
<tei:desc>Optional. Indicates the deviation from a linear volume transition/envelope. Potential values: [0] linear envelope; [1] steep envelop on the curves turning point; [0.3] default value.</tei:desc>
<!-- TODO Schematron ? -->
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="volume" usage="req">
<tei:desc>Gives the volume either as defined in parent::dynamicsmap attributes or as absolute MIDI velocity (0 to 127).</tei:desc>
<!-- TODO Schematron for controlling allowed values according to parent::dynamicsmap/@* name() -->
<tei:datatype>
<rng:text/><!-- TODO: define datatype -->
</tei:datatype>
</tei:attDef>
<tei:attDef ident="transition.to">
<tei:desc>Gives the target dynamics/volume either as defined in parent::dynamicsmap attributes or as absolute MIDI velocity (0 to 127).</tei:desc>
<!-- TODO Schematron for controlling allowed values according to parent::dynamicsmap/@* name() -->
<tei:datatype>
<rng:text/><!-- TODO: define datatype -->
</tei:datatype>
</tei:attDef>
<tei:attDef ident="protraction"><!-- TODO: how to encode default values? -->
<tei:desc>Optional. Indicates how long the level adjustment will be delayed. Value rang -1 to 1. Values smaller than [0] provoke a quicker change at the beginning, values larger than [1] provoke a quicker change at the end of the transgression.</tei:desc>
<tei:datatype>
<rng:data type="float">
<rng:param name="minInclusive">-1</rng:param>
<rng:param name="maxInclusive">1</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="subNoteDynamics"><!-- TODO: how to encode default values? -->
<tei:desc>Gives the density of ChannelVolumeChange-commands. This resembles the slope of 't' in calculating the bezier curve, e.g. for(t = 0; t lte 1; t = t + subNoteDynamics) {calculate X-Y-coordinates at t;}. If no subnote dynamics are wanted, the value is set to 0, 1, or left away</tei:desc>
<tei:datatype>
<rng:data type="decimal">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">1</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:elementSpec ident="dynamics" ns="http://www.cemfi.de/mpm/ns/1.0" module="dynamics" mode="add">
<tei:desc>Defines an articulation with a stylewide unique @name and respective duration and velocity modifiers.</tei:desc>
<tei:classes>
<tei:memberOf key="att.dynamics"/>
<tei:memberOf key="att.instructionLike"/>
<tei:memberOf key="model.dynamicsMapPart" min="0" max="unbounded"/>
</tei:classes>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="dynamicsDef" ns="http://www.cemfi.de/mpm/ns/1.0" module="dynamics" mode="add">
<tei:desc>Defines dynamincs with a stylewide unique @name nad respective velocity values.</tei:desc>
<tei:classes>
<tei:memberOf key="att.articulation"/><!-- TODO: !? -->
<tei:memberOf key="att.named"/>
<tei:memberOf key="att.value"/>
<tei:memberOf key="model.styleDefPart" min="0" max="unbounded"/>
</tei:classes>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="dynamicsStyles" ns="http://www.cemfi.de/mpm/ns/1.0" module="dynamics" mode="add">
<tei:desc>Enoded in global or local context's header-element. Groups style definitions. Global an local info may complement each other. If definitions with the same name exist in global and local context, the local instructions will override global definitions.</tei:desc>
<tei:classes>
<tei:memberOf key="model.headerPart" /><!-- TODO check min="0" max="1" -->
<tei:memberOf key="model.styleDefContainerLike"/>
</tei:classes>
<tei:content><!-- TODO content -->
<tei:classRef key="model.styleDefLike" expand="sequenceOptionalRepeatable"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="dynamicsMap" ns="http://www.cemfi.de/mpm/ns/1.0" module="dynamics" mode="add">
<tei:desc>Allowed in global or local context as child of dated-element. Contains dated dynamics instructions. Preprocessing has to make sure a global dynamicsmap exists for every style, and pass them to lokal contexts (part-element) if no dynamicsmap is present there. So to say, the global dynamicsmap has to be propagated to local contexts if not overridden there.</tei:desc>
<tei:classes>
<tei:memberOf key="att.startStyle"/>
<tei:memberOf key="model.mapLike"/>
</tei:classes>
<tei:content>
<rng:interleave>
<tei:classRef key="model.dynamicsMapPart" expand="sequenceOptional"/><!--TODO check @expand invalid but works-->
</rng:interleave>
</tei:content>
</tei:elementSpec>
<!-- module ornamentation -->
<tei:moduleSpec ident="ornamentation" mode="add">
<tei:desc>ornamentation</tei:desc>
</tei:moduleSpec>
<tei:classSpec type="model" ident="model.ornamentationMapPart" mode="add">
<tei:desc>Groups elements that may occur in mpm:ornamentationMap</tei:desc>
</tei:classSpec>
<tei:elementSpec ident="ornamentationDef" ns="http://www.cemfi.de/mpm/ns/1.0" module="ornamentation" mode="add">
<tei:desc><!-- TODO -->.</tei:desc>
<tei:classes>
<tei:memberOf key="att.named"/>
<tei:memberOf key="model.ornamentationDefPart" min="0" max="unbounded"/>
</tei:classes>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="ornamentationStyles" ns="http://www.cemfi.de/mpm/ns/1.0" module="articulation" mode="add">
<tei:desc>Enoded in global or local context's header-element. Groups style definitions. Global an local info may complement each other. If definitions with the same name exist in global and local context, the local instructions will override global definitions.</tei:desc>
<tei:classes>
<tei:memberOf key="model.headerPart" /><!-- TODO check min="0" max="1" -->
<tei:memberOf key="model.styleDefContainerLike"/>
</tei:classes>
<tei:content>
<tei:classRef key="model.styleDefLike" expand="sequenceOptionalRepeatable"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="ornamentationMap" ns="http://www.cemfi.de/mpm/ns/1.0" module="ornamentation" mode="add">
<tei:desc><!-- TODO --></tei:desc>
<tei:classes>
<tei:memberOf key="model.mapLike"/>
</tei:classes>
<tei:content>
<rng:zeroOrMore>
<rng:ref name="element"/>
</rng:zeroOrMore>
</tei:content>
</tei:elementSpec>
<!-- MODULE metricalAccentuation -->
<tei:moduleSpec ident="metricalAccentuation" mode="add">
<tei:desc>Module defining metrical accentuation.</tei:desc>
</tei:moduleSpec>
<tei:classSpec type="atts" ident="att.accentuation" module="metricalAccentuation" mode="add">
<tei:desc></tei:desc>
<tei:attList>
<tei:attDef ident="beat" usage="req">
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="value" usage="req"><!-- TODO: other value atts in schema defined? -->
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="transition.from" usage="req">
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
<tei:attDef ident="transition.to" usage="req">
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
</tei:classSpec>
<tei:classSpec type="model" ident="model.accentuationPatternDefPart" mode="add">
<tei:desc>Groups elements that may occur in mpm:metricalAccentuationMap</tei:desc>
</tei:classSpec>
<tei:classSpec type="model" ident="model.metricalAccentuationMapPart" mode="add">
<tei:desc>Groups elements that may occur in mpm:metricalAccentuationMap</tei:desc>
</tei:classSpec>
<tei:elementSpec ident="accentuation" ns="http://www.cemfi.de/mpm/ns/1.0" module="metricalAccentuation" mode="add">
<tei:desc>Defines an articulation with a stylewide unique @name and respective duration and velocity modifiers.</tei:desc>
<tei:classes>
<tei:memberOf key="att.accentuation"/>
<!-- <tei:memberOf key="att.instructionLike"/>-->
<tei:memberOf key="model.accentuationPatternDefPart" min="0" max="unbounded"/>
</tei:classes>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="accentuationPattern" ns="http://www.cemfi.de/mpm/ns/1.0" module="metricalAccentuation" mode="add">
<tei:desc>.</tei:desc>
<tei:classes>
<tei:memberOf key="att.instructionLike"/>
<tei:memberOf key="att.loopable"/>
<tei:memberOf key="model.metricalAccentuationMapPart" min="0" max="unbounded"/>
</tei:classes>
<tei:attList>
<tei:attDef ident="scale" usage="req">
<tei:datatype>
<rng:data type="int">
<rng:param name="minInclusive">0</rng:param>
<rng:param name="maxInclusive">127</rng:param>
</rng:data>
</tei:datatype>
</tei:attDef>
</tei:attList>
<tei:content/>
</tei:elementSpec>
<tei:elementSpec ident="accentuationPatternDef" ns="http://www.cemfi.de/mpm/ns/1.0" module="metricalAccentuation" mode="add">
<tei:desc><!-- TODO -->.</tei:desc>
<tei:classes>
<tei:memberOf key="att.named"/>
<tei:memberOf key="model.styleDefPart" min="0" max="unbounded"/>
</tei:classes>
<tei:attList>
<tei:attDef ident="length" usage="req">
<tei:desc>Gives the pattern length in metrical beats, e.g. 4 would resemble four metrical beats.</tei:desc>
<tei:datatype>
<rng:data type="float"/>
</tei:datatype>
</tei:attDef>
</tei:attList>
<tei:content>
<tei:classRef key="model.accentuationPatternDefPart"/>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="metricalAccentuationMap" ns="http://www.cemfi.de/mpm/ns/1.0" module="metricalAccentuation" mode="add">
<tei:desc></tei:desc>
<tei:classes>
<tei:memberOf key="att.startStyle"/>
<tei:memberOf key="model.mapLike"/>
</tei:classes>
<tei:content>
<rng:interleave>
<tei:classRef key="model.metricalAccentuationMapPart" expand="sequenceOptional"/><!--TODO check @expand and rng:interleave invalid but works-->
</rng:interleave>
</tei:content>
</tei:elementSpec>
<tei:elementSpec ident="metricalAccentuationStyles" ns="http://www.cemfi.de/mpm/ns/1.0" module="metricalAccentuation" mode="add">
<tei:desc></tei:desc>
<tei:classes>