relaton-3gpp 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2519 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ instantiations of this grammar may replace leaf strings
4
+ with more elaborated types; e.g. title (text) replaced with
5
+ title-main, title-intro, title-part; type replaced with
6
+ enum.
7
+
8
+ some renaming at leaf nodes is permissible
9
+
10
+ obligations can change both from optional to mandatory,
11
+ and from mandatory to optional; optional elements may
12
+ be omitted; freely positioned alternatives may be replaced
13
+ with strict ordering
14
+
15
+ DO NOT introduce a namespace here. We do not want a distinct namespace
16
+ for these elements, and a distinct namespace for any grammar inheriting
17
+ these elements; we just want one namespace for any child grammars
18
+ of this.
19
+ -->
20
+ <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
21
+ <include href="reqt.rng"/>
22
+ <!-- include "biblio.rnc" { } -->
23
+ <include href="basicdoc.rng">
24
+ <start>
25
+ <ref name="standard-document"/>
26
+ </start>
27
+ <define name="doctype">
28
+ <element name="doctype">
29
+ <optional>
30
+ <attribute name="abbreviation"/>
31
+ </optional>
32
+ <ref name="DocumentType"/>
33
+ </element>
34
+ </define>
35
+ <define name="section-title">
36
+ <element name="title">
37
+ <zeroOrMore>
38
+ <ref name="TextElement"/>
39
+ </zeroOrMore>
40
+ </element>
41
+ <zeroOrMore>
42
+ <element name="variant-title">
43
+ <ref name="TypedTitleString"/>
44
+ </element>
45
+ </zeroOrMore>
46
+ </define>
47
+ <define name="hyperlink">
48
+ <element name="link">
49
+ <attribute name="target">
50
+ <data type="anyURI"/>
51
+ </attribute>
52
+ <optional>
53
+ <attribute name="type">
54
+ <ref name="ReferenceFormat"/>
55
+ </attribute>
56
+ </optional>
57
+ <optional>
58
+ <attribute name="alt"/>
59
+ </optional>
60
+ <optional>
61
+ <attribute name="update-type">
62
+ <data type="boolean"/>
63
+ </attribute>
64
+ </optional>
65
+ <oneOrMore>
66
+ <ref name="PureTextElement"/>
67
+ </oneOrMore>
68
+ </element>
69
+ </define>
70
+ <define name="xref">
71
+ <element name="xref">
72
+ <attribute name="target">
73
+ <data type="string">
74
+ <param name="pattern">\i\c*|\c+#\c+</param>
75
+ </data>
76
+ </attribute>
77
+ <optional>
78
+ <attribute name="to">
79
+ <data type="string">
80
+ <param name="pattern">\i\c*|\c+#\c+</param>
81
+ </data>
82
+ </attribute>
83
+ </optional>
84
+ <optional>
85
+ <attribute name="type">
86
+ <ref name="ReferenceFormat"/>
87
+ </attribute>
88
+ </optional>
89
+ <optional>
90
+ <attribute name="alt"/>
91
+ </optional>
92
+ <optional>
93
+ <attribute name="case">
94
+ <choice>
95
+ <value>capital</value>
96
+ <value>lowercase</value>
97
+ </choice>
98
+ </attribute>
99
+ </optional>
100
+ <optional>
101
+ <attribute name="droploc">
102
+ <data type="boolean"/>
103
+ </attribute>
104
+ </optional>
105
+ <oneOrMore>
106
+ <ref name="PureTextElement"/>
107
+ </oneOrMore>
108
+ </element>
109
+ </define>
110
+ <define name="erefType">
111
+ <optional>
112
+ <attribute name="normative">
113
+ <data type="boolean"/>
114
+ </attribute>
115
+ </optional>
116
+ <attribute name="citeas"/>
117
+ <attribute name="type">
118
+ <ref name="ReferenceFormat"/>
119
+ </attribute>
120
+ <optional>
121
+ <attribute name="alt"/>
122
+ </optional>
123
+ <optional>
124
+ <attribute name="case">
125
+ <choice>
126
+ <value>capital</value>
127
+ <value>lowercase</value>
128
+ </choice>
129
+ </attribute>
130
+ </optional>
131
+ <optional>
132
+ <attribute name="droploc">
133
+ <data type="boolean"/>
134
+ </attribute>
135
+ </optional>
136
+ <ref name="CitationType"/>
137
+ <oneOrMore>
138
+ <ref name="PureTextElement"/>
139
+ </oneOrMore>
140
+ </define>
141
+ <define name="ul">
142
+ <element name="ul">
143
+ <attribute name="id">
144
+ <data type="ID"/>
145
+ </attribute>
146
+ <optional>
147
+ <attribute name="keep-with-next">
148
+ <data type="boolean"/>
149
+ </attribute>
150
+ </optional>
151
+ <optional>
152
+ <attribute name="keep-lines-together">
153
+ <data type="boolean"/>
154
+ </attribute>
155
+ </optional>
156
+ <optional>
157
+ <attribute name="tag"/>
158
+ </optional>
159
+ <optional>
160
+ <attribute name="multilingual-rendering">
161
+ <ref name="MultilingualRenderingType"/>
162
+ </attribute>
163
+ </optional>
164
+ <oneOrMore>
165
+ <ref name="ul_li"/>
166
+ </oneOrMore>
167
+ <zeroOrMore>
168
+ <ref name="note"/>
169
+ </zeroOrMore>
170
+ </element>
171
+ </define>
172
+ <define name="ol">
173
+ <element name="ol">
174
+ <attribute name="id">
175
+ <data type="ID"/>
176
+ </attribute>
177
+ <optional>
178
+ <attribute name="keep-with-next">
179
+ <data type="boolean"/>
180
+ </attribute>
181
+ </optional>
182
+ <optional>
183
+ <attribute name="keep-lines-together">
184
+ <data type="boolean"/>
185
+ </attribute>
186
+ </optional>
187
+ <optional>
188
+ <attribute name="tag"/>
189
+ </optional>
190
+ <optional>
191
+ <attribute name="multilingual-rendering">
192
+ <ref name="MultilingualRenderingType"/>
193
+ </attribute>
194
+ </optional>
195
+ <optional>
196
+ <attribute name="type">
197
+ <choice>
198
+ <value>roman</value>
199
+ <value>alphabet</value>
200
+ <value>arabic</value>
201
+ <value>roman_upper</value>
202
+ <value>alphabet_upper</value>
203
+ </choice>
204
+ </attribute>
205
+ </optional>
206
+ <oneOrMore>
207
+ <ref name="li"/>
208
+ </oneOrMore>
209
+ <zeroOrMore>
210
+ <ref name="note"/>
211
+ </zeroOrMore>
212
+ </element>
213
+ </define>
214
+ <define name="dl">
215
+ <element name="dl">
216
+ <attribute name="id">
217
+ <data type="ID"/>
218
+ </attribute>
219
+ <optional>
220
+ <attribute name="keep-with-next">
221
+ <data type="boolean"/>
222
+ </attribute>
223
+ </optional>
224
+ <optional>
225
+ <attribute name="keep-lines-together">
226
+ <data type="boolean"/>
227
+ </attribute>
228
+ </optional>
229
+ <optional>
230
+ <attribute name="key">
231
+ <data type="boolean"/>
232
+ </attribute>
233
+ </optional>
234
+ <optional>
235
+ <attribute name="tag"/>
236
+ </optional>
237
+ <optional>
238
+ <attribute name="multilingual-rendering">
239
+ <ref name="MultilingualRenderingType"/>
240
+ </attribute>
241
+ </optional>
242
+ <oneOrMore>
243
+ <ref name="dt"/>
244
+ <ref name="dd"/>
245
+ </oneOrMore>
246
+ <zeroOrMore>
247
+ <ref name="note"/>
248
+ </zeroOrMore>
249
+ </element>
250
+ </define>
251
+ <define name="dt">
252
+ <element name="dt">
253
+ <optional>
254
+ <attribute name="id">
255
+ <data type="ID"/>
256
+ </attribute>
257
+ </optional>
258
+ <zeroOrMore>
259
+ <ref name="TextElement"/>
260
+ </zeroOrMore>
261
+ </element>
262
+ </define>
263
+ <define name="example">
264
+ <element name="example">
265
+ <attribute name="id">
266
+ <data type="ID"/>
267
+ </attribute>
268
+ <optional>
269
+ <attribute name="unnumbered">
270
+ <data type="boolean"/>
271
+ </attribute>
272
+ </optional>
273
+ <optional>
274
+ <attribute name="subsequence"/>
275
+ </optional>
276
+ <optional>
277
+ <attribute name="number"/>
278
+ </optional>
279
+ <optional>
280
+ <attribute name="keep-with-next">
281
+ <data type="boolean"/>
282
+ </attribute>
283
+ </optional>
284
+ <optional>
285
+ <attribute name="keep-lines-together">
286
+ <data type="boolean"/>
287
+ </attribute>
288
+ </optional>
289
+ <optional>
290
+ <attribute name="tag"/>
291
+ </optional>
292
+ <optional>
293
+ <attribute name="multilingual-rendering">
294
+ <ref name="MultilingualRenderingType"/>
295
+ </attribute>
296
+ </optional>
297
+ <optional>
298
+ <ref name="tname"/>
299
+ </optional>
300
+ <oneOrMore>
301
+ <choice>
302
+ <ref name="formula"/>
303
+ <ref name="ul"/>
304
+ <ref name="ol"/>
305
+ <ref name="dl"/>
306
+ <ref name="quote"/>
307
+ <ref name="sourcecode"/>
308
+ <ref name="paragraph-with-footnote"/>
309
+ <ref name="figure"/>
310
+ </choice>
311
+ </oneOrMore>
312
+ <zeroOrMore>
313
+ <ref name="note"/>
314
+ </zeroOrMore>
315
+ </element>
316
+ </define>
317
+ <define name="table">
318
+ <element name="table">
319
+ <attribute name="id">
320
+ <data type="ID"/>
321
+ </attribute>
322
+ <optional>
323
+ <attribute name="unnumbered">
324
+ <data type="boolean"/>
325
+ </attribute>
326
+ </optional>
327
+ <optional>
328
+ <attribute name="number"/>
329
+ </optional>
330
+ <optional>
331
+ <attribute name="subsequence"/>
332
+ </optional>
333
+ <optional>
334
+ <attribute name="alt"/>
335
+ </optional>
336
+ <optional>
337
+ <attribute name="summary"/>
338
+ </optional>
339
+ <optional>
340
+ <attribute name="uri">
341
+ <data type="anyURI"/>
342
+ </attribute>
343
+ </optional>
344
+ <optional>
345
+ <attribute name="keep-with-next">
346
+ <data type="boolean"/>
347
+ </attribute>
348
+ </optional>
349
+ <optional>
350
+ <attribute name="keep-lines-together">
351
+ <data type="boolean"/>
352
+ </attribute>
353
+ </optional>
354
+ <optional>
355
+ <attribute name="width"/>
356
+ </optional>
357
+ <optional>
358
+ <attribute name="tag"/>
359
+ </optional>
360
+ <optional>
361
+ <attribute name="multilingual-rendering">
362
+ <ref name="MultilingualRenderingType"/>
363
+ </attribute>
364
+ </optional>
365
+ <optional>
366
+ <ref name="colgroup"/>
367
+ </optional>
368
+ <optional>
369
+ <ref name="tname"/>
370
+ </optional>
371
+ <optional>
372
+ <ref name="thead"/>
373
+ </optional>
374
+ <ref name="tbody"/>
375
+ <optional>
376
+ <ref name="tfoot"/>
377
+ </optional>
378
+ <zeroOrMore>
379
+ <ref name="table-note"/>
380
+ </zeroOrMore>
381
+ <optional>
382
+ <ref name="dl"/>
383
+ </optional>
384
+ </element>
385
+ </define>
386
+ <define name="figure">
387
+ <element name="figure">
388
+ <attribute name="id">
389
+ <data type="ID"/>
390
+ </attribute>
391
+ <optional>
392
+ <attribute name="unnumbered">
393
+ <data type="boolean"/>
394
+ </attribute>
395
+ </optional>
396
+ <optional>
397
+ <attribute name="number"/>
398
+ </optional>
399
+ <optional>
400
+ <attribute name="subsequence"/>
401
+ </optional>
402
+ <optional>
403
+ <attribute name="keep-with-next">
404
+ <data type="boolean"/>
405
+ </attribute>
406
+ </optional>
407
+ <optional>
408
+ <attribute name="keep-lines-together">
409
+ <data type="boolean"/>
410
+ </attribute>
411
+ </optional>
412
+ <optional>
413
+ <attribute name="class"/>
414
+ </optional>
415
+ <optional>
416
+ <attribute name="tag"/>
417
+ </optional>
418
+ <optional>
419
+ <attribute name="multilingual-rendering">
420
+ <ref name="MultilingualRenderingType"/>
421
+ </attribute>
422
+ </optional>
423
+ <optional>
424
+ <ref name="source"/>
425
+ </optional>
426
+ <optional>
427
+ <ref name="tname"/>
428
+ </optional>
429
+ <choice>
430
+ <ref name="image"/>
431
+ <ref name="video"/>
432
+ <ref name="audio"/>
433
+ <ref name="pre"/>
434
+ <oneOrMore>
435
+ <ref name="paragraph-with-footnote"/>
436
+ </oneOrMore>
437
+ <zeroOrMore>
438
+ <ref name="figure"/>
439
+ </zeroOrMore>
440
+ </choice>
441
+ <zeroOrMore>
442
+ <ref name="fn"/>
443
+ </zeroOrMore>
444
+ <optional>
445
+ <ref name="dl"/>
446
+ </optional>
447
+ <zeroOrMore>
448
+ <ref name="note"/>
449
+ </zeroOrMore>
450
+ </element>
451
+ </define>
452
+ <define name="sourcecode">
453
+ <element name="sourcecode">
454
+ <attribute name="id">
455
+ <data type="ID"/>
456
+ </attribute>
457
+ <optional>
458
+ <attribute name="unnumbered">
459
+ <data type="boolean"/>
460
+ </attribute>
461
+ </optional>
462
+ <optional>
463
+ <attribute name="number"/>
464
+ </optional>
465
+ <optional>
466
+ <attribute name="subsequence"/>
467
+ </optional>
468
+ <optional>
469
+ <attribute name="keep-with-next">
470
+ <data type="boolean"/>
471
+ </attribute>
472
+ </optional>
473
+ <optional>
474
+ <attribute name="keep-lines-together">
475
+ <data type="boolean"/>
476
+ </attribute>
477
+ </optional>
478
+ <optional>
479
+ <attribute name="lang"/>
480
+ </optional>
481
+ <optional>
482
+ <attribute name="tag"/>
483
+ </optional>
484
+ <optional>
485
+ <attribute name="multilingual-rendering">
486
+ <ref name="MultilingualRenderingType"/>
487
+ </attribute>
488
+ </optional>
489
+ <optional>
490
+ <ref name="tname"/>
491
+ </optional>
492
+ <oneOrMore>
493
+ <choice>
494
+ <text/>
495
+ <ref name="callout"/>
496
+ </choice>
497
+ </oneOrMore>
498
+ <zeroOrMore>
499
+ <ref name="annotation"/>
500
+ </zeroOrMore>
501
+ <zeroOrMore>
502
+ <ref name="note"/>
503
+ </zeroOrMore>
504
+ </element>
505
+ </define>
506
+ <define name="formula">
507
+ <element name="formula">
508
+ <attribute name="id">
509
+ <data type="ID"/>
510
+ </attribute>
511
+ <optional>
512
+ <attribute name="unnumbered">
513
+ <data type="boolean"/>
514
+ </attribute>
515
+ </optional>
516
+ <optional>
517
+ <attribute name="number"/>
518
+ </optional>
519
+ <optional>
520
+ <attribute name="subsequence"/>
521
+ </optional>
522
+ <optional>
523
+ <attribute name="keep-with-next">
524
+ <data type="boolean"/>
525
+ </attribute>
526
+ </optional>
527
+ <optional>
528
+ <attribute name="keep-lines-together">
529
+ <data type="boolean"/>
530
+ </attribute>
531
+ </optional>
532
+ <optional>
533
+ <attribute name="inequality">
534
+ <data type="boolean"/>
535
+ </attribute>
536
+ </optional>
537
+ <optional>
538
+ <attribute name="tag"/>
539
+ </optional>
540
+ <optional>
541
+ <attribute name="multilingual-rendering">
542
+ <ref name="MultilingualRenderingType"/>
543
+ </attribute>
544
+ </optional>
545
+ <ref name="stem"/>
546
+ <optional>
547
+ <ref name="dl"/>
548
+ </optional>
549
+ <zeroOrMore>
550
+ <ref name="note"/>
551
+ </zeroOrMore>
552
+ </element>
553
+ </define>
554
+ <define name="ParagraphType">
555
+ <attribute name="id">
556
+ <data type="ID"/>
557
+ </attribute>
558
+ <optional>
559
+ <attribute name="align">
560
+ <ref name="Alignments"/>
561
+ </attribute>
562
+ </optional>
563
+ <optional>
564
+ <attribute name="keep-with-next">
565
+ <data type="boolean"/>
566
+ </attribute>
567
+ </optional>
568
+ <optional>
569
+ <attribute name="keep-lines-together">
570
+ <data type="boolean"/>
571
+ </attribute>
572
+ </optional>
573
+ <optional>
574
+ <attribute name="tag"/>
575
+ </optional>
576
+ <optional>
577
+ <attribute name="multilingual-rendering">
578
+ <ref name="MultilingualRenderingType"/>
579
+ </attribute>
580
+ </optional>
581
+ <zeroOrMore>
582
+ <ref name="TextElement"/>
583
+ </zeroOrMore>
584
+ <zeroOrMore>
585
+ <ref name="note"/>
586
+ </zeroOrMore>
587
+ </define>
588
+ <define name="paragraph-with-footnote">
589
+ <element name="p">
590
+ <attribute name="id">
591
+ <data type="ID"/>
592
+ </attribute>
593
+ <optional>
594
+ <attribute name="align">
595
+ <ref name="Alignments"/>
596
+ </attribute>
597
+ </optional>
598
+ <optional>
599
+ <attribute name="keep-with-next">
600
+ <data type="boolean"/>
601
+ </attribute>
602
+ </optional>
603
+ <optional>
604
+ <attribute name="keep-lines-together">
605
+ <data type="boolean"/>
606
+ </attribute>
607
+ </optional>
608
+ <optional>
609
+ <attribute name="tag"/>
610
+ </optional>
611
+ <optional>
612
+ <attribute name="multilingual-rendering">
613
+ <ref name="MultilingualRenderingType"/>
614
+ </attribute>
615
+ </optional>
616
+ <zeroOrMore>
617
+ <choice>
618
+ <ref name="TextElement"/>
619
+ <ref name="fn"/>
620
+ </choice>
621
+ </zeroOrMore>
622
+ <zeroOrMore>
623
+ <ref name="note"/>
624
+ </zeroOrMore>
625
+ </element>
626
+ </define>
627
+ <define name="quote">
628
+ <element name="quote">
629
+ <attribute name="id">
630
+ <data type="ID"/>
631
+ </attribute>
632
+ <optional>
633
+ <attribute name="alignment">
634
+ <ref name="Alignments"/>
635
+ </attribute>
636
+ </optional>
637
+ <optional>
638
+ <attribute name="keep-with-next">
639
+ <data type="boolean"/>
640
+ </attribute>
641
+ </optional>
642
+ <optional>
643
+ <attribute name="keep-lines-together">
644
+ <data type="boolean"/>
645
+ </attribute>
646
+ </optional>
647
+ <optional>
648
+ <attribute name="tag"/>
649
+ </optional>
650
+ <optional>
651
+ <attribute name="multilingual-rendering">
652
+ <ref name="MultilingualRenderingType"/>
653
+ </attribute>
654
+ </optional>
655
+ <optional>
656
+ <ref name="quote-source"/>
657
+ </optional>
658
+ <optional>
659
+ <ref name="quote-author"/>
660
+ </optional>
661
+ <oneOrMore>
662
+ <ref name="paragraph-with-footnote"/>
663
+ </oneOrMore>
664
+ <zeroOrMore>
665
+ <ref name="note"/>
666
+ </zeroOrMore>
667
+ </element>
668
+ </define>
669
+ <define name="BibDataExtensionType">
670
+ <ref name="doctype"/>
671
+ <optional>
672
+ <ref name="docsubtype"/>
673
+ </optional>
674
+ <optional>
675
+ <ref name="editorialgroup"/>
676
+ </optional>
677
+ <zeroOrMore>
678
+ <ref name="ics"/>
679
+ </zeroOrMore>
680
+ <zeroOrMore>
681
+ <ref name="structuredidentifier"/>
682
+ </zeroOrMore>
683
+ </define>
684
+ <!-- TitleType = text -->
685
+ <define name="sections">
686
+ <element name="sections">
687
+ <oneOrMore>
688
+ <choice>
689
+ <ref name="clause"/>
690
+ <ref name="terms"/>
691
+ <ref name="term-clause"/>
692
+ <ref name="definitions"/>
693
+ </choice>
694
+ </oneOrMore>
695
+ </element>
696
+ </define>
697
+ <define name="references">
698
+ <element name="references">
699
+ <optional>
700
+ <attribute name="id">
701
+ <data type="ID"/>
702
+ </attribute>
703
+ </optional>
704
+ <optional>
705
+ <attribute name="obligation">
706
+ <choice>
707
+ <value>normative</value>
708
+ <value>informative</value>
709
+ </choice>
710
+ </attribute>
711
+ </optional>
712
+ <attribute name="normative">
713
+ <data type="boolean"/>
714
+ </attribute>
715
+ <optional>
716
+ <ref name="section-title"/>
717
+ </optional>
718
+ <zeroOrMore>
719
+ <ref name="BasicBlock"/>
720
+ </zeroOrMore>
721
+ <zeroOrMore>
722
+ <ref name="bibitem"/>
723
+ <zeroOrMore>
724
+ <ref name="note"/>
725
+ </zeroOrMore>
726
+ </zeroOrMore>
727
+ <zeroOrMore>
728
+ <ref name="references"/>
729
+ </zeroOrMore>
730
+ </element>
731
+ </define>
732
+ <define name="note">
733
+ <element name="note">
734
+ <attribute name="id">
735
+ <data type="ID"/>
736
+ </attribute>
737
+ <optional>
738
+ <attribute name="unnumbered">
739
+ <data type="boolean"/>
740
+ </attribute>
741
+ </optional>
742
+ <optional>
743
+ <attribute name="number"/>
744
+ </optional>
745
+ <optional>
746
+ <attribute name="subsequence"/>
747
+ </optional>
748
+ <optional>
749
+ <attribute name="keep-with-next">
750
+ <data type="boolean"/>
751
+ </attribute>
752
+ </optional>
753
+ <optional>
754
+ <attribute name="keep-lines-together">
755
+ <data type="boolean"/>
756
+ </attribute>
757
+ </optional>
758
+ <optional>
759
+ <attribute name="type"/>
760
+ </optional>
761
+ <optional>
762
+ <attribute name="tag"/>
763
+ </optional>
764
+ <optional>
765
+ <attribute name="multilingual-rendering">
766
+ <ref name="MultilingualRenderingType"/>
767
+ </attribute>
768
+ </optional>
769
+ <oneOrMore>
770
+ <choice>
771
+ <ref name="paragraph"/>
772
+ <ref name="ul"/>
773
+ <ref name="ol"/>
774
+ <ref name="dl"/>
775
+ <ref name="formula"/>
776
+ <ref name="quote"/>
777
+ <ref name="sourcecode"/>
778
+ </choice>
779
+ </oneOrMore>
780
+ </element>
781
+ </define>
782
+ <define name="Basic-Section">
783
+ <optional>
784
+ <attribute name="id">
785
+ <data type="ID"/>
786
+ </attribute>
787
+ </optional>
788
+ <optional>
789
+ <attribute name="language"/>
790
+ </optional>
791
+ <optional>
792
+ <attribute name="script"/>
793
+ </optional>
794
+ <optional>
795
+ <attribute name="obligation">
796
+ <choice>
797
+ <value>normative</value>
798
+ <value>informative</value>
799
+ </choice>
800
+ </attribute>
801
+ </optional>
802
+ <optional>
803
+ <ref name="section-title"/>
804
+ </optional>
805
+ <oneOrMore>
806
+ <ref name="BasicBlock"/>
807
+ </oneOrMore>
808
+ </define>
809
+ <define name="li">
810
+ <element name="li">
811
+ <group>
812
+ <optional>
813
+ <attribute name="id">
814
+ <data type="ID"/>
815
+ </attribute>
816
+ </optional>
817
+ <oneOrMore>
818
+ <ref name="BasicBlock"/>
819
+ </oneOrMore>
820
+ </group>
821
+ <!-- exclude figures? -->
822
+ </element>
823
+ </define>
824
+ <define name="dd">
825
+ <element name="dd">
826
+ <zeroOrMore>
827
+ <!-- exclude figures? -->
828
+ <ref name="BasicBlock"/>
829
+ </zeroOrMore>
830
+ </element>
831
+ </define>
832
+ <define name="thead">
833
+ <element name="thead">
834
+ <oneOrMore>
835
+ <ref name="tr"/>
836
+ </oneOrMore>
837
+ </element>
838
+ </define>
839
+ <define name="td">
840
+ <element name="td">
841
+ <optional>
842
+ <attribute name="colspan"/>
843
+ </optional>
844
+ <optional>
845
+ <attribute name="rowspan"/>
846
+ </optional>
847
+ <optional>
848
+ <attribute name="align">
849
+ <choice>
850
+ <value>left</value>
851
+ <value>right</value>
852
+ <value>center</value>
853
+ </choice>
854
+ </attribute>
855
+ </optional>
856
+ <optional>
857
+ <attribute name="valign">
858
+ <choice>
859
+ <value>top</value>
860
+ <value>middle</value>
861
+ <value>bottom</value>
862
+ <value>baseline</value>
863
+ </choice>
864
+ </attribute>
865
+ </optional>
866
+ <choice>
867
+ <zeroOrMore>
868
+ <choice>
869
+ <ref name="TextElement"/>
870
+ <ref name="fn"/>
871
+ </choice>
872
+ </zeroOrMore>
873
+ <oneOrMore>
874
+ <choice>
875
+ <ref name="paragraph-with-footnote"/>
876
+ <ref name="dl"/>
877
+ <ref name="ul"/>
878
+ <ref name="ol"/>
879
+ <ref name="figure"/>
880
+ </choice>
881
+ </oneOrMore>
882
+ </choice>
883
+ </element>
884
+ </define>
885
+ <define name="th">
886
+ <element name="th">
887
+ <optional>
888
+ <attribute name="colspan"/>
889
+ </optional>
890
+ <optional>
891
+ <attribute name="rowspan"/>
892
+ </optional>
893
+ <optional>
894
+ <attribute name="align">
895
+ <choice>
896
+ <value>left</value>
897
+ <value>right</value>
898
+ <value>center</value>
899
+ </choice>
900
+ </attribute>
901
+ </optional>
902
+ <optional>
903
+ <attribute name="valign">
904
+ <choice>
905
+ <value>top</value>
906
+ <value>middle</value>
907
+ <value>bottom</value>
908
+ <value>baseline</value>
909
+ </choice>
910
+ </attribute>
911
+ </optional>
912
+ <choice>
913
+ <zeroOrMore>
914
+ <choice>
915
+ <ref name="TextElement"/>
916
+ <ref name="fn"/>
917
+ </choice>
918
+ </zeroOrMore>
919
+ <oneOrMore>
920
+ <ref name="paragraph-with-footnote"/>
921
+ </oneOrMore>
922
+ </choice>
923
+ </element>
924
+ </define>
925
+ <define name="table-note">
926
+ <element name="note">
927
+ <optional>
928
+ <attribute name="id">
929
+ <data type="ID"/>
930
+ </attribute>
931
+ </optional>
932
+ <ref name="paragraph"/>
933
+ </element>
934
+ </define>
935
+ <define name="em">
936
+ <element name="em">
937
+ <zeroOrMore>
938
+ <choice>
939
+ <ref name="PureTextElement"/>
940
+ <ref name="stem"/>
941
+ <ref name="index"/>
942
+ <ref name="eref"/>
943
+ <ref name="xref"/>
944
+ <ref name="hyperlink"/>
945
+ </choice>
946
+ </zeroOrMore>
947
+ </element>
948
+ </define>
949
+ <define name="strong">
950
+ <element name="strong">
951
+ <zeroOrMore>
952
+ <choice>
953
+ <ref name="PureTextElement"/>
954
+ <ref name="stem"/>
955
+ <ref name="index"/>
956
+ <ref name="eref"/>
957
+ <ref name="xref"/>
958
+ <ref name="hyperlink"/>
959
+ </choice>
960
+ </zeroOrMore>
961
+ </element>
962
+ </define>
963
+ <define name="tt">
964
+ <element name="tt">
965
+ <zeroOrMore>
966
+ <choice>
967
+ <ref name="PureTextElement"/>
968
+ <ref name="index"/>
969
+ <ref name="eref"/>
970
+ <ref name="xref"/>
971
+ <ref name="hyperlink"/>
972
+ </choice>
973
+ </zeroOrMore>
974
+ </element>
975
+ </define>
976
+ <define name="keyword">
977
+ <element name="keyword">
978
+ <zeroOrMore>
979
+ <choice>
980
+ <ref name="PureTextElement"/>
981
+ <ref name="index"/>
982
+ </choice>
983
+ </zeroOrMore>
984
+ </element>
985
+ </define>
986
+ <define name="strike">
987
+ <element name="strike">
988
+ <zeroOrMore>
989
+ <choice>
990
+ <ref name="PureTextElement"/>
991
+ <ref name="index"/>
992
+ </choice>
993
+ </zeroOrMore>
994
+ </element>
995
+ </define>
996
+ <define name="underline">
997
+ <element name="underline">
998
+ <zeroOrMore>
999
+ <choice>
1000
+ <ref name="PureTextElement"/>
1001
+ <ref name="index"/>
1002
+ </choice>
1003
+ </zeroOrMore>
1004
+ </element>
1005
+ </define>
1006
+ <define name="smallcap">
1007
+ <element name="smallcap">
1008
+ <zeroOrMore>
1009
+ <choice>
1010
+ <ref name="PureTextElement"/>
1011
+ <ref name="index"/>
1012
+ </choice>
1013
+ </zeroOrMore>
1014
+ </element>
1015
+ </define>
1016
+ <define name="pagebreak">
1017
+ <element name="pagebreak">
1018
+ <optional>
1019
+ <attribute name="orientation">
1020
+ <choice>
1021
+ <value>landscape</value>
1022
+ <value>portrait</value>
1023
+ </choice>
1024
+ </attribute>
1025
+ </optional>
1026
+ </element>
1027
+ </define>
1028
+ </include>
1029
+ <!-- end overrides -->
1030
+ <define name="MultilingualRenderingType">
1031
+ <choice>
1032
+ <value>common</value>
1033
+ <value>all-columns</value>
1034
+ <value>parallel</value>
1035
+ <value>tag</value>
1036
+ </choice>
1037
+ </define>
1038
+ <define name="docsubtype">
1039
+ <element name="subdoctype">
1040
+ <ref name="DocumentSubtype"/>
1041
+ </element>
1042
+ </define>
1043
+ <define name="DocumentSubtype">
1044
+ <text/>
1045
+ </define>
1046
+ <define name="colgroup">
1047
+ <element name="colgroup">
1048
+ <oneOrMore>
1049
+ <ref name="col"/>
1050
+ </oneOrMore>
1051
+ </element>
1052
+ </define>
1053
+ <define name="col">
1054
+ <element name="col">
1055
+ <attribute name="width"/>
1056
+ </element>
1057
+ </define>
1058
+ <define name="BibItemType" combine="choice">
1059
+ <value>internal</value>
1060
+ </define>
1061
+ <define name="TextElement" combine="choice">
1062
+ <choice>
1063
+ <ref name="concept"/>
1064
+ <ref name="add"/>
1065
+ <ref name="del"/>
1066
+ </choice>
1067
+ </define>
1068
+ <define name="add">
1069
+ <element name="add">
1070
+ <choice>
1071
+ <ref name="PureTextElement"/>
1072
+ <ref name="eref"/>
1073
+ <ref name="stem"/>
1074
+ <ref name="keyword"/>
1075
+ <ref name="xref"/>
1076
+ <ref name="hyperlink"/>
1077
+ </choice>
1078
+ </element>
1079
+ </define>
1080
+ <define name="del">
1081
+ <element name="del">
1082
+ <choice>
1083
+ <ref name="PureTextElement"/>
1084
+ <ref name="eref"/>
1085
+ <ref name="stem"/>
1086
+ <ref name="keyword"/>
1087
+ <ref name="xref"/>
1088
+ <ref name="hyperlink"/>
1089
+ </choice>
1090
+ </element>
1091
+ </define>
1092
+ <define name="concept">
1093
+ <element name="concept">
1094
+ <optional>
1095
+ <attribute name="ital">
1096
+ <data type="boolean"/>
1097
+ </attribute>
1098
+ </optional>
1099
+ <optional>
1100
+ <attribute name="ref">
1101
+ <data type="boolean"/>
1102
+ </attribute>
1103
+ </optional>
1104
+ <optional>
1105
+ <attribute name="linkmention">
1106
+ <data type="boolean"/>
1107
+ </attribute>
1108
+ </optional>
1109
+ <optional>
1110
+ <attribute name="linkref">
1111
+ <data type="boolean"/>
1112
+ </attribute>
1113
+ </optional>
1114
+ <optional>
1115
+ <element name="refterm">
1116
+ <zeroOrMore>
1117
+ <choice>
1118
+ <ref name="PureTextElement"/>
1119
+ <ref name="stem"/>
1120
+ </choice>
1121
+ </zeroOrMore>
1122
+ </element>
1123
+ </optional>
1124
+ <optional>
1125
+ <element name="renderterm">
1126
+ <zeroOrMore>
1127
+ <choice>
1128
+ <ref name="PureTextElement"/>
1129
+ <ref name="stem"/>
1130
+ </choice>
1131
+ </zeroOrMore>
1132
+ </element>
1133
+ </optional>
1134
+ <choice>
1135
+ <ref name="eref"/>
1136
+ <ref name="xref"/>
1137
+ <ref name="termref"/>
1138
+ </choice>
1139
+ </element>
1140
+ </define>
1141
+ <define name="BasicBlock" combine="choice">
1142
+ <choice>
1143
+ <ref name="requirement"/>
1144
+ <ref name="recommendation"/>
1145
+ <ref name="permission"/>
1146
+ <ref name="imagemap"/>
1147
+ <ref name="svgmap"/>
1148
+ <ref name="inputform"/>
1149
+ <ref name="toc"/>
1150
+ <ref name="passthrough"/>
1151
+ </choice>
1152
+ </define>
1153
+ <define name="toc">
1154
+ <element name="toc">
1155
+ <ref name="ul"/>
1156
+ </element>
1157
+ </define>
1158
+ <define name="passthrough">
1159
+ <element name="passthrough">
1160
+ <optional>
1161
+ <attribute name="formats"/>
1162
+ </optional>
1163
+ <text/>
1164
+ </element>
1165
+ </define>
1166
+ <define name="inputform">
1167
+ <element name="form">
1168
+ <attribute name="id">
1169
+ <data type="ID"/>
1170
+ </attribute>
1171
+ <attribute name="name"/>
1172
+ <attribute name="action"/>
1173
+ <optional>
1174
+ <attribute name="class"/>
1175
+ </optional>
1176
+ <optional>
1177
+ <attribute name="tag"/>
1178
+ </optional>
1179
+ <optional>
1180
+ <attribute name="multilingual-rendering">
1181
+ <ref name="MultilingualRenderingType"/>
1182
+ </attribute>
1183
+ </optional>
1184
+ <zeroOrMore>
1185
+ <choice>
1186
+ <ref name="TextElement"/>
1187
+ <ref name="FormInput"/>
1188
+ </choice>
1189
+ </zeroOrMore>
1190
+ </element>
1191
+ </define>
1192
+ <define name="FormInput">
1193
+ <choice>
1194
+ <ref name="input"/>
1195
+ <ref name="formlabel"/>
1196
+ <ref name="select"/>
1197
+ <ref name="textarea"/>
1198
+ </choice>
1199
+ </define>
1200
+ <define name="InputType">
1201
+ <choice>
1202
+ <value>button</value>
1203
+ <value>checkbox</value>
1204
+ <value>date</value>
1205
+ <value>file</value>
1206
+ <value>password</value>
1207
+ <value>radio</value>
1208
+ <value>submit</value>
1209
+ <value>text</value>
1210
+ </choice>
1211
+ </define>
1212
+ <define name="input">
1213
+ <element name="input">
1214
+ <attribute name="type">
1215
+ <ref name="InputType"/>
1216
+ </attribute>
1217
+ <optional>
1218
+ <attribute name="checked">
1219
+ <data type="boolean"/>
1220
+ </attribute>
1221
+ </optional>
1222
+ <optional>
1223
+ <attribute name="disabled">
1224
+ <data type="boolean"/>
1225
+ </attribute>
1226
+ </optional>
1227
+ <optional>
1228
+ <attribute name="readonly">
1229
+ <data type="boolean"/>
1230
+ </attribute>
1231
+ </optional>
1232
+ <optional>
1233
+ <attribute name="maxlength">
1234
+ <data type="int"/>
1235
+ </attribute>
1236
+ </optional>
1237
+ <optional>
1238
+ <attribute name="minlength">
1239
+ <data type="int"/>
1240
+ </attribute>
1241
+ </optional>
1242
+ <optional>
1243
+ <attribute name="name"/>
1244
+ </optional>
1245
+ <optional>
1246
+ <attribute name="value"/>
1247
+ </optional>
1248
+ <optional>
1249
+ <attribute name="id">
1250
+ <data type="ID"/>
1251
+ </attribute>
1252
+ </optional>
1253
+ </element>
1254
+ </define>
1255
+ <define name="formlabel">
1256
+ <element name="label">
1257
+ <attribute name="for">
1258
+ <data type="IDREF"/>
1259
+ </attribute>
1260
+ <zeroOrMore>
1261
+ <ref name="PureTextElement"/>
1262
+ </zeroOrMore>
1263
+ </element>
1264
+ </define>
1265
+ <define name="select">
1266
+ <element name="select">
1267
+ <optional>
1268
+ <attribute name="name"/>
1269
+ </optional>
1270
+ <optional>
1271
+ <attribute name="value"/>
1272
+ </optional>
1273
+ <optional>
1274
+ <attribute name="id">
1275
+ <data type="ID"/>
1276
+ </attribute>
1277
+ </optional>
1278
+ <optional>
1279
+ <attribute name="disabled">
1280
+ <data type="boolean"/>
1281
+ </attribute>
1282
+ </optional>
1283
+ <optional>
1284
+ <attribute name="multiple">
1285
+ <data type="boolean"/>
1286
+ </attribute>
1287
+ </optional>
1288
+ <optional>
1289
+ <attribute name="size">
1290
+ <data type="int"/>
1291
+ </attribute>
1292
+ </optional>
1293
+ <oneOrMore>
1294
+ <ref name="option"/>
1295
+ </oneOrMore>
1296
+ </element>
1297
+ </define>
1298
+ <define name="option">
1299
+ <element name="option">
1300
+ <optional>
1301
+ <attribute name="disabled">
1302
+ <data type="boolean"/>
1303
+ </attribute>
1304
+ </optional>
1305
+ <optional>
1306
+ <attribute name="value"/>
1307
+ </optional>
1308
+ <zeroOrMore>
1309
+ <ref name="PureTextElement"/>
1310
+ </zeroOrMore>
1311
+ </element>
1312
+ </define>
1313
+ <define name="textarea">
1314
+ <element name="textarea">
1315
+ <optional>
1316
+ <attribute name="name"/>
1317
+ </optional>
1318
+ <optional>
1319
+ <attribute name="value"/>
1320
+ </optional>
1321
+ <optional>
1322
+ <attribute name="id">
1323
+ <data type="ID"/>
1324
+ </attribute>
1325
+ </optional>
1326
+ <optional>
1327
+ <attribute name="rows">
1328
+ <data type="int"/>
1329
+ </attribute>
1330
+ </optional>
1331
+ <optional>
1332
+ <attribute name="cols">
1333
+ <data type="int"/>
1334
+ </attribute>
1335
+ </optional>
1336
+ </element>
1337
+ </define>
1338
+ <define name="bibliography">
1339
+ <element name="bibliography">
1340
+ <oneOrMore>
1341
+ <choice>
1342
+ <ref name="references"/>
1343
+ <ref name="reference-clause"/>
1344
+ </choice>
1345
+ </oneOrMore>
1346
+ </element>
1347
+ </define>
1348
+ <define name="reference-clause">
1349
+ <element name="clause">
1350
+ <optional>
1351
+ <attribute name="id">
1352
+ <data type="ID"/>
1353
+ </attribute>
1354
+ </optional>
1355
+ <optional>
1356
+ <attribute name="language"/>
1357
+ </optional>
1358
+ <optional>
1359
+ <attribute name="script"/>
1360
+ </optional>
1361
+ <optional>
1362
+ <attribute name="inline-header">
1363
+ <data type="boolean"/>
1364
+ </attribute>
1365
+ </optional>
1366
+ <optional>
1367
+ <attribute name="number"/>
1368
+ </optional>
1369
+ <optional>
1370
+ <attribute name="obligation">
1371
+ <choice>
1372
+ <value>normative</value>
1373
+ <value>informative</value>
1374
+ </choice>
1375
+ </attribute>
1376
+ </optional>
1377
+ <optional>
1378
+ <ref name="section-title"/>
1379
+ </optional>
1380
+ <zeroOrMore>
1381
+ <ref name="BasicBlock"/>
1382
+ </zeroOrMore>
1383
+ <choice>
1384
+ <oneOrMore>
1385
+ <ref name="reference-clause"/>
1386
+ </oneOrMore>
1387
+ <zeroOrMore>
1388
+ <ref name="references"/>
1389
+ </zeroOrMore>
1390
+ </choice>
1391
+ </element>
1392
+ </define>
1393
+ <define name="editorialgroup">
1394
+ <element name="editorialgroup">
1395
+ <oneOrMore>
1396
+ <ref name="technical-committee"/>
1397
+ </oneOrMore>
1398
+ </element>
1399
+ </define>
1400
+ <define name="technical-committee">
1401
+ <element name="technical-committee">
1402
+ <ref name="IsoWorkgroup"/>
1403
+ </element>
1404
+ </define>
1405
+ <define name="IsoWorkgroup">
1406
+ <optional>
1407
+ <attribute name="number"/>
1408
+ </optional>
1409
+ <optional>
1410
+ <attribute name="type"/>
1411
+ </optional>
1412
+ <optional>
1413
+ <attribute name="identifier"/>
1414
+ </optional>
1415
+ <optional>
1416
+ <attribute name="prefix"/>
1417
+ </optional>
1418
+ <text/>
1419
+ </define>
1420
+ <define name="ics">
1421
+ <element name="ics">
1422
+ <element name="code">
1423
+ <text/>
1424
+ </element>
1425
+ <optional>
1426
+ <element name="text">
1427
+ <text/>
1428
+ </element>
1429
+ </optional>
1430
+ </element>
1431
+ </define>
1432
+ <define name="standard-document">
1433
+ <element name="standard-document">
1434
+ <attribute name="version"/>
1435
+ <attribute name="type">
1436
+ <choice>
1437
+ <value>semantic</value>
1438
+ <value>presentation</value>
1439
+ </choice>
1440
+ </attribute>
1441
+ <ref name="bibdata"/>
1442
+ <optional>
1443
+ <ref name="misccontainer"/>
1444
+ </optional>
1445
+ <optional>
1446
+ <ref name="boilerplate"/>
1447
+ </optional>
1448
+ <optional>
1449
+ <ref name="preface"/>
1450
+ </optional>
1451
+ <ref name="sections"/>
1452
+ <zeroOrMore>
1453
+ <ref name="annex"/>
1454
+ </zeroOrMore>
1455
+ <optional>
1456
+ <ref name="bibliography"/>
1457
+ </optional>
1458
+ <zeroOrMore>
1459
+ <ref name="indexsect"/>
1460
+ </zeroOrMore>
1461
+ </element>
1462
+ </define>
1463
+ <define name="misccontainer">
1464
+ <element name="misc-container">
1465
+ <oneOrMore>
1466
+ <ref name="AnyElement"/>
1467
+ </oneOrMore>
1468
+ </element>
1469
+ </define>
1470
+ <define name="preface">
1471
+ <element name="preface">
1472
+ <oneOrMore>
1473
+ <choice>
1474
+ <ref name="content"/>
1475
+ <ref name="abstract"/>
1476
+ <ref name="foreword"/>
1477
+ <ref name="introduction"/>
1478
+ <ref name="acknowledgements"/>
1479
+ </choice>
1480
+ </oneOrMore>
1481
+ </element>
1482
+ </define>
1483
+ <define name="foreword">
1484
+ <element name="foreword">
1485
+ <ref name="Content-Section"/>
1486
+ </element>
1487
+ </define>
1488
+ <define name="introduction">
1489
+ <element name="introduction">
1490
+ <ref name="Content-Section"/>
1491
+ </element>
1492
+ </define>
1493
+ <define name="indexsect">
1494
+ <element name="indexsect">
1495
+ <ref name="Content-Section"/>
1496
+ </element>
1497
+ </define>
1498
+ <define name="boilerplate">
1499
+ <element name="boilerplate">
1500
+ <optional>
1501
+ <ref name="copyright-statement"/>
1502
+ </optional>
1503
+ <optional>
1504
+ <ref name="license-statement"/>
1505
+ </optional>
1506
+ <optional>
1507
+ <ref name="legal-statement"/>
1508
+ </optional>
1509
+ <optional>
1510
+ <ref name="feedback-statement"/>
1511
+ </optional>
1512
+ </element>
1513
+ </define>
1514
+ <define name="copyright-statement">
1515
+ <element name="copyright-statement">
1516
+ <ref name="Content-Section"/>
1517
+ </element>
1518
+ </define>
1519
+ <define name="license-statement">
1520
+ <element name="license-statement">
1521
+ <ref name="Content-Section"/>
1522
+ </element>
1523
+ </define>
1524
+ <define name="legal-statement">
1525
+ <element name="legal-statement">
1526
+ <ref name="Content-Section"/>
1527
+ </element>
1528
+ </define>
1529
+ <define name="feedback-statement">
1530
+ <element name="feedback-statement">
1531
+ <ref name="Content-Section"/>
1532
+ </element>
1533
+ </define>
1534
+ <define name="definitions">
1535
+ <element name="definitions">
1536
+ <optional>
1537
+ <attribute name="id">
1538
+ <data type="ID"/>
1539
+ </attribute>
1540
+ </optional>
1541
+ <optional>
1542
+ <attribute name="language"/>
1543
+ </optional>
1544
+ <optional>
1545
+ <attribute name="script"/>
1546
+ </optional>
1547
+ <optional>
1548
+ <attribute name="type"/>
1549
+ </optional>
1550
+ <optional>
1551
+ <attribute name="obligation">
1552
+ <choice>
1553
+ <value>normative</value>
1554
+ <value>informative</value>
1555
+ </choice>
1556
+ </attribute>
1557
+ </optional>
1558
+ <optional>
1559
+ <ref name="section-title"/>
1560
+ </optional>
1561
+ <oneOrMore>
1562
+ <zeroOrMore>
1563
+ <ref name="BasicBlock"/>
1564
+ </zeroOrMore>
1565
+ <ref name="dl"/>
1566
+ </oneOrMore>
1567
+ </element>
1568
+ </define>
1569
+ <define name="content">
1570
+ <element name="clause">
1571
+ <ref name="Content-Section"/>
1572
+ </element>
1573
+ </define>
1574
+ <define name="abstract">
1575
+ <element name="abstract">
1576
+ <ref name="Content-Section"/>
1577
+ </element>
1578
+ </define>
1579
+ <define name="acknowledgements">
1580
+ <element name="acknowledgements">
1581
+ <ref name="Content-Section"/>
1582
+ </element>
1583
+ </define>
1584
+ <define name="content-subsection">
1585
+ <element name="clause">
1586
+ <ref name="Content-Section"/>
1587
+ </element>
1588
+ </define>
1589
+ <define name="Content-Section">
1590
+ <optional>
1591
+ <attribute name="id">
1592
+ <data type="ID"/>
1593
+ </attribute>
1594
+ </optional>
1595
+ <optional>
1596
+ <attribute name="language"/>
1597
+ </optional>
1598
+ <optional>
1599
+ <attribute name="script"/>
1600
+ </optional>
1601
+ <optional>
1602
+ <attribute name="inline-header">
1603
+ <data type="boolean"/>
1604
+ </attribute>
1605
+ </optional>
1606
+ <optional>
1607
+ <attribute name="obligation">
1608
+ <choice>
1609
+ <value>normative</value>
1610
+ <value>informative</value>
1611
+ </choice>
1612
+ </attribute>
1613
+ </optional>
1614
+ <optional>
1615
+ <attribute name="number"/>
1616
+ </optional>
1617
+ <optional>
1618
+ <attribute name="type"/>
1619
+ </optional>
1620
+ <optional>
1621
+ <ref name="section-title"/>
1622
+ </optional>
1623
+ <group>
1624
+ <zeroOrMore>
1625
+ <ref name="BasicBlock"/>
1626
+ </zeroOrMore>
1627
+ <zeroOrMore>
1628
+ <ref name="content-subsection"/>
1629
+ </zeroOrMore>
1630
+ </group>
1631
+ </define>
1632
+ <define name="clause">
1633
+ <element name="clause">
1634
+ <ref name="Clause-Section"/>
1635
+ </element>
1636
+ </define>
1637
+ <define name="Clause-Section">
1638
+ <optional>
1639
+ <attribute name="id">
1640
+ <data type="ID"/>
1641
+ </attribute>
1642
+ </optional>
1643
+ <optional>
1644
+ <attribute name="language"/>
1645
+ </optional>
1646
+ <optional>
1647
+ <attribute name="script"/>
1648
+ </optional>
1649
+ <optional>
1650
+ <attribute name="inline-header">
1651
+ <data type="boolean"/>
1652
+ </attribute>
1653
+ </optional>
1654
+ <optional>
1655
+ <attribute name="obligation">
1656
+ <choice>
1657
+ <value>normative</value>
1658
+ <value>informative</value>
1659
+ </choice>
1660
+ </attribute>
1661
+ </optional>
1662
+ <optional>
1663
+ <attribute name="type"/>
1664
+ </optional>
1665
+ <optional>
1666
+ <attribute name="number"/>
1667
+ </optional>
1668
+ <optional>
1669
+ <ref name="section-title"/>
1670
+ </optional>
1671
+ <choice>
1672
+ <choice>
1673
+ <oneOrMore>
1674
+ <ref name="BasicBlock"/>
1675
+ </oneOrMore>
1676
+ <ref name="amend"/>
1677
+ </choice>
1678
+ <oneOrMore>
1679
+ <choice>
1680
+ <ref name="clause-subsection"/>
1681
+ <ref name="terms"/>
1682
+ <ref name="definitions"/>
1683
+ </choice>
1684
+ </oneOrMore>
1685
+ </choice>
1686
+ </define>
1687
+ <define name="Annex-Section">
1688
+ <optional>
1689
+ <attribute name="id">
1690
+ <data type="ID"/>
1691
+ </attribute>
1692
+ </optional>
1693
+ <optional>
1694
+ <attribute name="language"/>
1695
+ </optional>
1696
+ <optional>
1697
+ <attribute name="script"/>
1698
+ </optional>
1699
+ <optional>
1700
+ <attribute name="inline-header">
1701
+ <data type="boolean"/>
1702
+ </attribute>
1703
+ </optional>
1704
+ <optional>
1705
+ <attribute name="obligation">
1706
+ <choice>
1707
+ <value>normative</value>
1708
+ <value>informative</value>
1709
+ </choice>
1710
+ </attribute>
1711
+ </optional>
1712
+ <optional>
1713
+ <ref name="section-title"/>
1714
+ </optional>
1715
+ <group>
1716
+ <zeroOrMore>
1717
+ <ref name="BasicBlock"/>
1718
+ </zeroOrMore>
1719
+ <zeroOrMore>
1720
+ <choice>
1721
+ <ref name="annex-subsection"/>
1722
+ <ref name="terms"/>
1723
+ <ref name="definitions"/>
1724
+ <ref name="references"/>
1725
+ </choice>
1726
+ </zeroOrMore>
1727
+ </group>
1728
+ </define>
1729
+ <define name="clause-subsection">
1730
+ <element name="clause">
1731
+ <ref name="Clause-Section"/>
1732
+ </element>
1733
+ </define>
1734
+ <define name="annex-subsection">
1735
+ <element name="clause">
1736
+ <ref name="Annex-Section"/>
1737
+ </element>
1738
+ </define>
1739
+ <define name="annex">
1740
+ <element name="annex">
1741
+ <ref name="Annex-Section"/>
1742
+ </element>
1743
+ </define>
1744
+ <define name="terms">
1745
+ <element name="terms">
1746
+ <optional>
1747
+ <attribute name="id">
1748
+ <data type="ID"/>
1749
+ </attribute>
1750
+ </optional>
1751
+ <optional>
1752
+ <attribute name="language"/>
1753
+ </optional>
1754
+ <optional>
1755
+ <attribute name="script"/>
1756
+ </optional>
1757
+ <optional>
1758
+ <attribute name="type"/>
1759
+ </optional>
1760
+ <optional>
1761
+ <attribute name="number"/>
1762
+ </optional>
1763
+ <optional>
1764
+ <attribute name="obligation">
1765
+ <choice>
1766
+ <value>normative</value>
1767
+ <value>informative</value>
1768
+ </choice>
1769
+ </attribute>
1770
+ </optional>
1771
+ <optional>
1772
+ <ref name="section-title"/>
1773
+ </optional>
1774
+ <zeroOrMore>
1775
+ <ref name="BasicBlock"/>
1776
+ </zeroOrMore>
1777
+ <choice>
1778
+ <oneOrMore>
1779
+ <ref name="term"/>
1780
+ </oneOrMore>
1781
+ <group>
1782
+ <zeroOrMore>
1783
+ <ref name="terms"/>
1784
+ </zeroOrMore>
1785
+ <optional>
1786
+ <ref name="definitions"/>
1787
+ </optional>
1788
+ </group>
1789
+ </choice>
1790
+ </element>
1791
+ </define>
1792
+ <define name="term">
1793
+ <element name="term">
1794
+ <optional>
1795
+ <attribute name="id">
1796
+ <data type="ID"/>
1797
+ </attribute>
1798
+ </optional>
1799
+ <oneOrMore>
1800
+ <ref name="preferred"/>
1801
+ </oneOrMore>
1802
+ <zeroOrMore>
1803
+ <ref name="admitted"/>
1804
+ </zeroOrMore>
1805
+ <zeroOrMore>
1806
+ <ref name="deprecates"/>
1807
+ </zeroOrMore>
1808
+ <zeroOrMore>
1809
+ <ref name="related"/>
1810
+ </zeroOrMore>
1811
+ <optional>
1812
+ <ref name="termdomain"/>
1813
+ </optional>
1814
+ <optional>
1815
+ <ref name="termsubject"/>
1816
+ </optional>
1817
+ <oneOrMore>
1818
+ <ref name="termdefinition"/>
1819
+ </oneOrMore>
1820
+ <zeroOrMore>
1821
+ <ref name="termnote"/>
1822
+ </zeroOrMore>
1823
+ <zeroOrMore>
1824
+ <ref name="termexample"/>
1825
+ </zeroOrMore>
1826
+ <zeroOrMore>
1827
+ <ref name="termsource"/>
1828
+ </zeroOrMore>
1829
+ </element>
1830
+ </define>
1831
+ <define name="preferred">
1832
+ <element name="preferred">
1833
+ <ref name="Designation"/>
1834
+ </element>
1835
+ </define>
1836
+ <define name="admitted">
1837
+ <element name="admitted">
1838
+ <ref name="Designation"/>
1839
+ </element>
1840
+ </define>
1841
+ <define name="related">
1842
+ <element name="related">
1843
+ <attribute name="type">
1844
+ <ref name="RelatedTermType"/>
1845
+ </attribute>
1846
+ <element name="preferred">
1847
+ <ref name="Designation"/>
1848
+ </element>
1849
+ <choice>
1850
+ <ref name="eref"/>
1851
+ <ref name="xref"/>
1852
+ <ref name="termref"/>
1853
+ </choice>
1854
+ </element>
1855
+ </define>
1856
+ <define name="RelatedTermType">
1857
+ <choice>
1858
+ <value>deprecates</value>
1859
+ <value>supersedes</value>
1860
+ <value>narrower</value>
1861
+ <value>broader</value>
1862
+ <value>equivalent</value>
1863
+ <value>compare</value>
1864
+ <value>contrast</value>
1865
+ <value>see</value>
1866
+ </choice>
1867
+ </define>
1868
+ <define name="deprecates">
1869
+ <element name="deprecates">
1870
+ <ref name="Designation"/>
1871
+ </element>
1872
+ </define>
1873
+ <define name="Designation">
1874
+ <optional>
1875
+ <attribute name="absent">
1876
+ <data type="boolean"/>
1877
+ </attribute>
1878
+ </optional>
1879
+ <optional>
1880
+ <attribute name="geographic-area"/>
1881
+ </optional>
1882
+ <choice>
1883
+ <ref name="expression_designation"/>
1884
+ <ref name="letter_symbol_designation"/>
1885
+ <ref name="graphical_symbol_designation"/>
1886
+ </choice>
1887
+ <optional>
1888
+ <ref name="fieldofapplication"/>
1889
+ </optional>
1890
+ <optional>
1891
+ <ref name="usageinfo"/>
1892
+ </optional>
1893
+ <zeroOrMore>
1894
+ <ref name="termsource"/>
1895
+ </zeroOrMore>
1896
+ </define>
1897
+ <define name="fieldofapplication">
1898
+ <element name="field-of-application">
1899
+ <oneOrMore>
1900
+ <ref name="PureTextElement"/>
1901
+ </oneOrMore>
1902
+ </element>
1903
+ </define>
1904
+ <define name="usageinfo">
1905
+ <element name="usage-info">
1906
+ <oneOrMore>
1907
+ <ref name="PureTextElement"/>
1908
+ </oneOrMore>
1909
+ </element>
1910
+ </define>
1911
+ <define name="letter_symbol_designation">
1912
+ <element name="letter-symbol">
1913
+ <optional>
1914
+ <attribute name="isInternational">
1915
+ <data type="boolean"/>
1916
+ </attribute>
1917
+ </optional>
1918
+ <element name="name">
1919
+ <oneOrMore>
1920
+ <choice>
1921
+ <ref name="PureTextElement"/>
1922
+ <ref name="stem"/>
1923
+ </choice>
1924
+ </oneOrMore>
1925
+ </element>
1926
+ </element>
1927
+ </define>
1928
+ <define name="graphical_symbol_designation">
1929
+ <element name="graphical-symbol">
1930
+ <optional>
1931
+ <attribute name="isInternational">
1932
+ <data type="boolean"/>
1933
+ </attribute>
1934
+ </optional>
1935
+ <ref name="figure"/>
1936
+ </element>
1937
+ </define>
1938
+ <define name="expression_designation">
1939
+ <element name="expression">
1940
+ <optional>
1941
+ <attribute name="language">
1942
+ <a:documentation>ISO-639</a:documentation>
1943
+ </attribute>
1944
+ </optional>
1945
+ <optional>
1946
+ <attribute name="script">
1947
+ <a:documentation>ISO-15924</a:documentation>
1948
+ </attribute>
1949
+ </optional>
1950
+ <optional>
1951
+ <attribute name="type">
1952
+ <ref name="ExpressionDesignationType"/>
1953
+ </attribute>
1954
+ </optional>
1955
+ <optional>
1956
+ <attribute name="isInternational">
1957
+ <data type="boolean"/>
1958
+ </attribute>
1959
+ </optional>
1960
+ <element name="name">
1961
+ <zeroOrMore>
1962
+ <ref name="PureTextElement"/>
1963
+ </zeroOrMore>
1964
+ </element>
1965
+ <optional>
1966
+ <element name="abbreviation-type">
1967
+ <ref name="AbbreviationType"/>
1968
+ </element>
1969
+ </optional>
1970
+ <optional>
1971
+ <element name="pronunciation">
1972
+ <ref name="LocalizedString"/>
1973
+ </element>
1974
+ </optional>
1975
+ <optional>
1976
+ <element name="grammar-info">
1977
+ <ref name="Grammar"/>
1978
+ </element>
1979
+ </optional>
1980
+ </element>
1981
+ </define>
1982
+ <define name="ExpressionDesignationType">
1983
+ <choice>
1984
+ <value>prefix</value>
1985
+ <value>suffix</value>
1986
+ <value>abbreviation</value>
1987
+ <value>full</value>
1988
+ </choice>
1989
+ </define>
1990
+ <define name="AbbreviationType">
1991
+ <choice>
1992
+ <value>truncation</value>
1993
+ <value>acronym</value>
1994
+ <value>initialism</value>
1995
+ </choice>
1996
+ </define>
1997
+ <define name="Grammar">
1998
+ <zeroOrMore>
1999
+ <element name="gender">
2000
+ <ref name="GrammarGender"/>
2001
+ </element>
2002
+ </zeroOrMore>
2003
+ <zeroOrMore>
2004
+ <element name="number">
2005
+ <ref name="GrammarNumber"/>
2006
+ </element>
2007
+ </zeroOrMore>
2008
+ <optional>
2009
+ <element name="isPreposition">
2010
+ <data type="boolean"/>
2011
+ </element>
2012
+ </optional>
2013
+ <optional>
2014
+ <element name="isParticiple">
2015
+ <data type="boolean"/>
2016
+ </element>
2017
+ </optional>
2018
+ <optional>
2019
+ <element name="isAdjective">
2020
+ <data type="boolean"/>
2021
+ </element>
2022
+ </optional>
2023
+ <optional>
2024
+ <element name="isVerb">
2025
+ <data type="boolean"/>
2026
+ </element>
2027
+ </optional>
2028
+ <optional>
2029
+ <element name="isAdverb">
2030
+ <data type="boolean"/>
2031
+ </element>
2032
+ </optional>
2033
+ <optional>
2034
+ <element name="isNoun">
2035
+ <data type="boolean"/>
2036
+ </element>
2037
+ </optional>
2038
+ <zeroOrMore>
2039
+ <element name="grammar-value">
2040
+ <text/>
2041
+ </element>
2042
+ </zeroOrMore>
2043
+ </define>
2044
+ <define name="GrammarGender">
2045
+ <choice>
2046
+ <value>masculine</value>
2047
+ <value>feminine</value>
2048
+ <value>neuter</value>
2049
+ <value>common</value>
2050
+ </choice>
2051
+ </define>
2052
+ <define name="GrammarNumber">
2053
+ <choice>
2054
+ <value>singular</value>
2055
+ <value>dual</value>
2056
+ <value>plural</value>
2057
+ </choice>
2058
+ </define>
2059
+ <define name="termdomain">
2060
+ <element name="domain">
2061
+ <oneOrMore>
2062
+ <ref name="TextElement"/>
2063
+ </oneOrMore>
2064
+ </element>
2065
+ </define>
2066
+ <define name="termsubject">
2067
+ <element name="subject">
2068
+ <oneOrMore>
2069
+ <ref name="TextElement"/>
2070
+ </oneOrMore>
2071
+ </element>
2072
+ </define>
2073
+ <define name="termdefinition">
2074
+ <element name="definition">
2075
+ <choice>
2076
+ <ref name="verbaldefinition"/>
2077
+ <ref name="nonverbalrep"/>
2078
+ <group>
2079
+ <ref name="verbaldefinition"/>
2080
+ <ref name="nonverbalrep"/>
2081
+ </group>
2082
+ </choice>
2083
+ </element>
2084
+ </define>
2085
+ <define name="verbaldefinition">
2086
+ <element name="verbal-definition">
2087
+ <oneOrMore>
2088
+ <choice>
2089
+ <ref name="paragraph"/>
2090
+ <ref name="dl"/>
2091
+ <ref name="ol"/>
2092
+ <ref name="ul"/>
2093
+ <ref name="table"/>
2094
+ <ref name="figure"/>
2095
+ <ref name="formula"/>
2096
+ </choice>
2097
+ </oneOrMore>
2098
+ <zeroOrMore>
2099
+ <ref name="termsource"/>
2100
+ </zeroOrMore>
2101
+ </element>
2102
+ </define>
2103
+ <define name="nonverbalrep">
2104
+ <element name="non-verbal-representation">
2105
+ <oneOrMore>
2106
+ <choice>
2107
+ <ref name="table"/>
2108
+ <ref name="figure"/>
2109
+ <ref name="formula"/>
2110
+ </choice>
2111
+ </oneOrMore>
2112
+ <zeroOrMore>
2113
+ <ref name="termsource"/>
2114
+ </zeroOrMore>
2115
+ </element>
2116
+ </define>
2117
+ <define name="termnote">
2118
+ <element name="termnote">
2119
+ <attribute name="id">
2120
+ <data type="ID"/>
2121
+ </attribute>
2122
+ <optional>
2123
+ <attribute name="unnumbered">
2124
+ <data type="boolean"/>
2125
+ </attribute>
2126
+ </optional>
2127
+ <optional>
2128
+ <attribute name="number"/>
2129
+ </optional>
2130
+ <optional>
2131
+ <attribute name="subsequence"/>
2132
+ </optional>
2133
+ <optional>
2134
+ <attribute name="keep-with-next">
2135
+ <data type="boolean"/>
2136
+ </attribute>
2137
+ </optional>
2138
+ <optional>
2139
+ <attribute name="keep-lines-together">
2140
+ <data type="boolean"/>
2141
+ </attribute>
2142
+ </optional>
2143
+ <optional>
2144
+ <attribute name="tag"/>
2145
+ </optional>
2146
+ <optional>
2147
+ <attribute name="multilingual-rendering">
2148
+ <ref name="MultilingualRenderingType"/>
2149
+ </attribute>
2150
+ </optional>
2151
+ <oneOrMore>
2152
+ <choice>
2153
+ <ref name="paragraph"/>
2154
+ <ref name="ul"/>
2155
+ <ref name="ol"/>
2156
+ <ref name="dl"/>
2157
+ <ref name="formula"/>
2158
+ </choice>
2159
+ </oneOrMore>
2160
+ </element>
2161
+ </define>
2162
+ <define name="termexample">
2163
+ <element name="termexample">
2164
+ <attribute name="id">
2165
+ <data type="ID"/>
2166
+ </attribute>
2167
+ <optional>
2168
+ <attribute name="keep-with-next">
2169
+ <data type="boolean"/>
2170
+ </attribute>
2171
+ </optional>
2172
+ <optional>
2173
+ <attribute name="keep-lines-together">
2174
+ <data type="boolean"/>
2175
+ </attribute>
2176
+ </optional>
2177
+ <optional>
2178
+ <attribute name="tag"/>
2179
+ </optional>
2180
+ <optional>
2181
+ <attribute name="multilingual-rendering">
2182
+ <ref name="MultilingualRenderingType"/>
2183
+ </attribute>
2184
+ </optional>
2185
+ <ref name="paragraph"/>
2186
+ </element>
2187
+ </define>
2188
+ <define name="termsource">
2189
+ <element name="termsource">
2190
+ <attribute name="status">
2191
+ <choice>
2192
+ <value>identical</value>
2193
+ <value>modified</value>
2194
+ </choice>
2195
+ </attribute>
2196
+ <attribute name="type">
2197
+ <choice>
2198
+ <value>authoritative</value>
2199
+ <value>lineage</value>
2200
+ </choice>
2201
+ </attribute>
2202
+ <ref name="origin"/>
2203
+ <optional>
2204
+ <ref name="modification"/>
2205
+ </optional>
2206
+ </element>
2207
+ </define>
2208
+ <define name="origin">
2209
+ <element name="origin">
2210
+ <choice>
2211
+ <ref name="erefType"/>
2212
+ <ref name="termref"/>
2213
+ </choice>
2214
+ </element>
2215
+ </define>
2216
+ <define name="modification">
2217
+ <element name="modification">
2218
+ <ref name="paragraph"/>
2219
+ </element>
2220
+ </define>
2221
+ <define name="termref">
2222
+ <element name="termref">
2223
+ <attribute name="base"/>
2224
+ <attribute name="target"/>
2225
+ <optional>
2226
+ <text/>
2227
+ </optional>
2228
+ </element>
2229
+ </define>
2230
+ <define name="structuredidentifier">
2231
+ <element name="structuredidentifier">
2232
+ <optional>
2233
+ <attribute name="type"/>
2234
+ </optional>
2235
+ <oneOrMore>
2236
+ <element name="agency">
2237
+ <text/>
2238
+ </element>
2239
+ </oneOrMore>
2240
+ <optional>
2241
+ <element name="class">
2242
+ <text/>
2243
+ </element>
2244
+ </optional>
2245
+ <element name="docnumber">
2246
+ <text/>
2247
+ </element>
2248
+ <optional>
2249
+ <element name="partnumber">
2250
+ <text/>
2251
+ </element>
2252
+ </optional>
2253
+ <optional>
2254
+ <element name="edition">
2255
+ <text/>
2256
+ </element>
2257
+ </optional>
2258
+ <optional>
2259
+ <element name="version">
2260
+ <text/>
2261
+ </element>
2262
+ </optional>
2263
+ <optional>
2264
+ <element name="supplementtype">
2265
+ <text/>
2266
+ </element>
2267
+ </optional>
2268
+ <optional>
2269
+ <element name="supplementnumber">
2270
+ <text/>
2271
+ </element>
2272
+ </optional>
2273
+ <optional>
2274
+ <element name="language">
2275
+ <text/>
2276
+ </element>
2277
+ </optional>
2278
+ <optional>
2279
+ <element name="year">
2280
+ <text/>
2281
+ </element>
2282
+ </optional>
2283
+ </element>
2284
+ </define>
2285
+ <define name="term-clause">
2286
+ <element name="clause">
2287
+ <optional>
2288
+ <attribute name="id">
2289
+ <data type="ID"/>
2290
+ </attribute>
2291
+ </optional>
2292
+ <optional>
2293
+ <attribute name="language"/>
2294
+ </optional>
2295
+ <optional>
2296
+ <attribute name="script"/>
2297
+ </optional>
2298
+ <optional>
2299
+ <attribute name="inline-header">
2300
+ <data type="boolean"/>
2301
+ </attribute>
2302
+ </optional>
2303
+ <optional>
2304
+ <attribute name="obligation">
2305
+ <choice>
2306
+ <value>normative</value>
2307
+ <value>informative</value>
2308
+ </choice>
2309
+ </attribute>
2310
+ </optional>
2311
+ <optional>
2312
+ <ref name="section-title"/>
2313
+ </optional>
2314
+ <zeroOrMore>
2315
+ <ref name="BasicBlock"/>
2316
+ </zeroOrMore>
2317
+ <zeroOrMore>
2318
+ <choice>
2319
+ <ref name="term-clause"/>
2320
+ <ref name="terms"/>
2321
+ <ref name="definitions"/>
2322
+ </choice>
2323
+ </zeroOrMore>
2324
+ </element>
2325
+ </define>
2326
+ <define name="termdocsource">
2327
+ <element name="termdocsource">
2328
+ <ref name="CitationType"/>
2329
+ </element>
2330
+ </define>
2331
+ <define name="amend">
2332
+ <element name="amend">
2333
+ <optional>
2334
+ <attribute name="id">
2335
+ <data type="ID"/>
2336
+ </attribute>
2337
+ </optional>
2338
+ <attribute name="change">
2339
+ <choice>
2340
+ <value>add</value>
2341
+ <value>modify</value>
2342
+ <value>delete</value>
2343
+ <value>replace</value>
2344
+ </choice>
2345
+ </attribute>
2346
+ <optional>
2347
+ <attribute name="path"/>
2348
+ </optional>
2349
+ <optional>
2350
+ <attribute name="path_end"/>
2351
+ </optional>
2352
+ <optional>
2353
+ <attribute name="title"/>
2354
+ </optional>
2355
+ <optional>
2356
+ <attribute name="tag"/>
2357
+ </optional>
2358
+ <optional>
2359
+ <attribute name="multilingual-rendering">
2360
+ <ref name="MultilingualRenderingType"/>
2361
+ </attribute>
2362
+ </optional>
2363
+ <optional>
2364
+ <element name="location">
2365
+ <zeroOrMore>
2366
+ <ref name="locality"/>
2367
+ </zeroOrMore>
2368
+ </element>
2369
+ </optional>
2370
+ <zeroOrMore>
2371
+ <ref name="autonumber"/>
2372
+ </zeroOrMore>
2373
+ <optional>
2374
+ <element name="description">
2375
+ <zeroOrMore>
2376
+ <ref name="BasicBlock"/>
2377
+ </zeroOrMore>
2378
+ </element>
2379
+ </optional>
2380
+ <optional>
2381
+ <element name="newcontent">
2382
+ <optional>
2383
+ <attribute name="id">
2384
+ <data type="ID"/>
2385
+ </attribute>
2386
+ </optional>
2387
+ <zeroOrMore>
2388
+ <ref name="BasicBlock"/>
2389
+ </zeroOrMore>
2390
+ </element>
2391
+ </optional>
2392
+ <optional>
2393
+ <element name="description">
2394
+ <zeroOrMore>
2395
+ <ref name="BasicBlock"/>
2396
+ </zeroOrMore>
2397
+ </element>
2398
+ </optional>
2399
+ </element>
2400
+ </define>
2401
+ <define name="autonumber">
2402
+ <element name="autonumber">
2403
+ <attribute name="type">
2404
+ <choice>
2405
+ <value>requirement</value>
2406
+ <value>recommendation</value>
2407
+ <value>permission</value>
2408
+ <value>table</value>
2409
+ <value>figure</value>
2410
+ <value>admonition</value>
2411
+ <value>formula</value>
2412
+ <value>sourcecode</value>
2413
+ <value>example</value>
2414
+ <value>note</value>
2415
+ </choice>
2416
+ </attribute>
2417
+ <text/>
2418
+ </element>
2419
+ </define>
2420
+ <define name="imagemap">
2421
+ <element name="imagemap">
2422
+ <optional>
2423
+ <attribute name="tag"/>
2424
+ </optional>
2425
+ <optional>
2426
+ <attribute name="multilingual-rendering">
2427
+ <ref name="MultilingualRenderingType"/>
2428
+ </attribute>
2429
+ </optional>
2430
+ <ref name="figure"/>
2431
+ <zeroOrMore>
2432
+ <element name="area">
2433
+ <attribute name="type">
2434
+ <choice>
2435
+ <value>rect</value>
2436
+ <value>circle</value>
2437
+ <value>ellipse</value>
2438
+ <value>poly</value>
2439
+ </choice>
2440
+ </attribute>
2441
+ <choice>
2442
+ <ref name="xref"/>
2443
+ <ref name="hyperlink"/>
2444
+ <ref name="eref"/>
2445
+ </choice>
2446
+ <oneOrMore>
2447
+ <element name="coords">
2448
+ <attribute name="x">
2449
+ <data type="float"/>
2450
+ </attribute>
2451
+ <attribute name="y">
2452
+ <data type="float"/>
2453
+ </attribute>
2454
+ </element>
2455
+ </oneOrMore>
2456
+ <optional>
2457
+ <element name="radius">
2458
+ <attribute name="x">
2459
+ <data type="float"/>
2460
+ </attribute>
2461
+ <optional>
2462
+ <attribute name="y">
2463
+ <data type="float"/>
2464
+ </attribute>
2465
+ </optional>
2466
+ </element>
2467
+ </optional>
2468
+ </element>
2469
+ </zeroOrMore>
2470
+ </element>
2471
+ </define>
2472
+ <define name="svgmap">
2473
+ <element name="svgmap">
2474
+ <optional>
2475
+ <attribute name="tag"/>
2476
+ </optional>
2477
+ <optional>
2478
+ <attribute name="multilingual-rendering">
2479
+ <ref name="MultilingualRenderingType"/>
2480
+ </attribute>
2481
+ </optional>
2482
+ <ref name="figure"/>
2483
+ <zeroOrMore>
2484
+ <element name="target">
2485
+ <attribute name="href">
2486
+ <data type="anyURI"/>
2487
+ </attribute>
2488
+ <choice>
2489
+ <ref name="xref"/>
2490
+ <ref name="hyperlink"/>
2491
+ <ref name="eref"/>
2492
+ </choice>
2493
+ </element>
2494
+ </zeroOrMore>
2495
+ </element>
2496
+ </define>
2497
+ <define name="ul_li">
2498
+ <element name="li">
2499
+ <optional>
2500
+ <attribute name="id">
2501
+ <data type="ID"/>
2502
+ </attribute>
2503
+ </optional>
2504
+ <optional>
2505
+ <attribute name="uncheckedcheckbox">
2506
+ <data type="boolean"/>
2507
+ </attribute>
2508
+ </optional>
2509
+ <optional>
2510
+ <attribute name="checkedcheckbox">
2511
+ <data type="boolean"/>
2512
+ </attribute>
2513
+ </optional>
2514
+ <oneOrMore>
2515
+ <ref name="BasicBlock"/>
2516
+ </oneOrMore>
2517
+ </element>
2518
+ </define>
2519
+ </grammar>