-
Notifications
You must be signed in to change notification settings - Fork 1
/
syntax.xhtml
2067 lines (1924 loc) · 150 KB
/
syntax.xhtml
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset='utf-8' />
<meta http-equiv="Content-Type" content="application/xhtml+xml" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #4D3D00; shape-rendering: crispEdges; stroke-width: 2; }
.thin-line {stroke: #4D3D00; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif; font-size: 12px; fill: #4D3D00; }
text.terminal {font-family: Verdana, Sans-serif; font-size: 12px; fill: #4D3D00; font-weight: bold; }
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #d0e0e8; stroke: #332900;}
rect.nonterminal {fill: #e0e9f0; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #dfe8f4; stroke: #332900;}
</style>
</defs>
</svg>
<title>RDL Syntax</title>
</head>
<body>
<header>
<div class="inner">
<h1><a href="index.html">RDL</a></h1>
<h2>Resource Description Language</h2>
</div>
<div class="aside">
<a href="https://github.com/ardielle" class="button"><small>View project on </small>GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
<p><a href="index.html">(back to the overview)</a></p>
<h2><a name="Syntax">Syntax</a></h2>
<p>These diagrams were generated from <a href="rdl_ebnf.txt" target="rdl_ebnf.txt">this EBNF file</a>.</p>
<h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="SchemaV3">SchemaV3:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="494" height="102">
<polygon points="17 51 9 47 9 55"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SchemaOptions" xlink:title="SchemaOptions">
<rect x="51" y="69" width="114" height="32"/>
<rect x="49" y="67" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="87">SchemaOptions</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeDef" xlink:title="TypeDef">
<rect x="225" y="3" width="68" height="32"/>
<rect x="223" y="1" width="68" height="32" class="nonterminal"/>
<text class="nonterminal" x="233" y="21">TypeDef</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ResourceDef" xlink:title="ResourceDef">
<rect x="353" y="3" width="94" height="32"/>
<rect x="351" y="1" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="361" y="21">ResourceDef</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 51 h2 m20 0 h10 m0 0 h124 m-154 0 h20 m134 0 h20 m-174 0 q10 0 10 10 m154 0 q0 -10 10 -10 m-164 10 v12 m154 0 v-12 m-154 12 q0 10 10 10 m134 0 q10 0 10 -10 m-144 10 h10 m114 0 h10 m40 -32 h10 m0 0 h78 m-108 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m88 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-88 0 h10 m68 0 h10 m40 34 h10 m0 0 h104 m-134 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m114 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-114 0 h10 m94 0 h10 m23 34 h-3"/>
<polygon points="485 51 477 47 477 55"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml"></p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="SchemaOptions">SchemaOptions:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="926" height="102">
<polygon points="17 51 9 47 9 55"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NamespaceSpec" xlink:title="NamespaceSpec">
<rect x="51" y="69" width="118" height="32"/>
<rect x="49" y="67" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="87">NamespaceSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NameSpec" xlink:title="NameSpec">
<rect x="229" y="69" width="84" height="32"/>
<rect x="227" y="67" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="237" y="87">NameSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#VersionSpec" xlink:title="VersionSpec">
<rect x="373" y="69" width="92" height="32"/>
<rect x="371" y="67" width="92" height="32" class="nonterminal"/>
<text class="nonterminal" x="381" y="87">VersionSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BasePath" xlink:title="BasePath">
<rect x="525" y="69" width="74" height="32"/>
<rect x="523" y="67" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="533" y="87">BasePath</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#IncludeSpec" xlink:title="IncludeSpec">
<rect x="659" y="3" width="90" height="32"/>
<rect x="657" y="1" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="667" y="21">IncludeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#UseSpec" xlink:title="UseSpec">
<rect x="809" y="3" width="70" height="32"/>
<rect x="807" y="1" width="70" height="32" class="nonterminal"/>
<text class="nonterminal" x="817" y="21">UseSpec</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 51 h2 m20 0 h10 m0 0 h128 m-158 0 h20 m138 0 h20 m-178 0 q10 0 10 10 m158 0 q0 -10 10 -10 m-168 10 v12 m158 0 v-12 m-158 12 q0 10 10 10 m138 0 q10 0 10 -10 m-148 10 h10 m118 0 h10 m40 -32 h10 m0 0 h94 m-124 0 h20 m104 0 h20 m-144 0 q10 0 10 10 m124 0 q0 -10 10 -10 m-134 10 v12 m124 0 v-12 m-124 12 q0 10 10 10 m104 0 q10 0 10 -10 m-114 10 h10 m84 0 h10 m40 -32 h10 m0 0 h102 m-132 0 h20 m112 0 h20 m-152 0 q10 0 10 10 m132 0 q0 -10 10 -10 m-142 10 v12 m132 0 v-12 m-132 12 q0 10 10 10 m112 0 q10 0 10 -10 m-122 10 h10 m92 0 h10 m40 -32 h10 m0 0 h84 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v12 m114 0 v-12 m-114 12 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m40 -32 h10 m0 0 h100 m-130 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m110 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-110 0 h10 m90 0 h10 m40 34 h10 m0 0 h80 m-110 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m90 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-90 0 h10 m70 0 h10 m23 34 h-3"/>
<polygon points="917 51 909 47 909 55"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaV3" title="SchemaV3">SchemaV3</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="NamespaceSpec">NamespaceSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="346" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="94" height="32" rx="10"/>
<rect x="29" y="1" width="94" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">namespace</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Namespace" xlink:title="Namespace">
<rect x="145" y="3" width="90" height="32"/>
<rect x="143" y="1" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="153" y="21">Namespace</text>
</a>
<rect x="275" y="35" width="24" height="32" rx="10"/>
<rect x="273" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="283" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m94 0 h10 m0 0 h10 m90 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="337 17 329 13 329 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaOptions" title="SchemaOptions">SchemaOptions</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="NameSpec">NameSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="272" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="56" height="32" rx="10"/>
<rect x="29" y="1" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">name</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Name" xlink:title="Name">
<rect x="107" y="3" width="54" height="32"/>
<rect x="105" y="1" width="54" height="32" class="nonterminal"/>
<text class="nonterminal" x="115" y="21">Name</text>
</a>
<rect x="201" y="35" width="24" height="32" rx="10"/>
<rect x="199" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="209" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m56 0 h10 m0 0 h10 m54 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="263 17 255 13 255 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaOptions" title="SchemaOptions">SchemaOptions</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="VersionSpec">VersionSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="328" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="68" height="32" rx="10"/>
<rect x="29" y="1" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">version</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralInteger" xlink:title="LiteralInteger">
<rect x="119" y="3" width="98" height="32"/>
<rect x="117" y="1" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="127" y="21">LiteralInteger</text>
</a>
<rect x="257" y="35" width="24" height="32" rx="10"/>
<rect x="255" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="265" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m68 0 h10 m0 0 h10 m98 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="319 17 311 13 311 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaOptions" title="SchemaOptions">SchemaOptions</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="BasePath">BasePath:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="302" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="50" height="32" rx="10"/>
<rect x="29" y="1" width="50" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">base</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralString" xlink:title="LiteralString">
<rect x="101" y="3" width="90" height="32"/>
<rect x="99" y="1" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="109" y="21">LiteralString</text>
</a>
<rect x="231" y="35" width="24" height="32" rx="10"/>
<rect x="229" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="239" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m50 0 h10 m0 0 h10 m90 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="293 17 285 13 285 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaOptions" title="SchemaOptions">SchemaOptions</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="IncludeSpec">IncludeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="316" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="64" height="32" rx="10"/>
<rect x="29" y="1" width="64" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">include</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralString" xlink:title="LiteralString">
<rect x="115" y="3" width="90" height="32"/>
<rect x="113" y="1" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="123" y="21">LiteralString</text>
</a>
<rect x="245" y="35" width="24" height="32" rx="10"/>
<rect x="243" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="253" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m64 0 h10 m0 0 h10 m90 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="307 17 299 13 299 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaOptions" title="SchemaOptions">SchemaOptions</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="UseSpec">UseSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="294" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="42" height="32" rx="10"/>
<rect x="29" y="1" width="42" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">use</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralString" xlink:title="LiteralString">
<rect x="93" y="3" width="90" height="32"/>
<rect x="91" y="1" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="101" y="21">LiteralString</text>
</a>
<rect x="223" y="35" width="24" height="32" rx="10"/>
<rect x="221" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="231" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m42 0 h10 m0 0 h10 m90 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="285 17 277 13 277 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaOptions" title="SchemaOptions">SchemaOptions</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="TypeDef">TypeDef:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="362" height="68">
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="50" height="32" rx="10"/>
<rect x="29" y="1" width="50" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">type</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Name" xlink:title="Name">
<rect x="101" y="3" width="54" height="32"/>
<rect x="99" y="1" width="54" height="32" class="nonterminal"/>
<text class="nonterminal" x="109" y="21">Name</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeSpec" xlink:title="TypeSpec">
<rect x="175" y="3" width="76" height="32"/>
<rect x="173" y="1" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="183" y="21">TypeSpec</text>
</a>
<rect x="291" y="35" width="24" height="32" rx="10"/>
<rect x="289" y="33" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="299" y="53">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m50 0 h10 m0 0 h10 m54 0 h10 m0 0 h10 m76 0 h10 m20 0 h10 m0 0 h34 m-64 0 h20 m44 0 h20 m-84 0 q10 0 10 10 m64 0 q0 -10 10 -10 m-74 10 v12 m64 0 v-12 m-64 12 q0 10 10 10 m44 0 q10 0 10 -10 m-54 10 h10 m24 0 h10 m23 -32 h-3"/>
<polygon points="353 17 345 13 345 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#SchemaV3" title="SchemaV3">SchemaV3</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="TypeSpec">TypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="220" height="432">
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeRef" xlink:title="TypeRef">
<rect x="51" y="3" width="66" height="32"/>
<rect x="49" y="1" width="66" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">TypeRef</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#AliasTypeSpec" xlink:title="AliasTypeSpec">
<rect x="51" y="47" width="102" height="32"/>
<rect x="49" y="45" width="102" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">AliasTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BytesTypeSpec" xlink:title="BytesTypeSpec">
<rect x="51" y="91" width="110" height="32"/>
<rect x="49" y="89" width="110" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">BytesTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#StringTypeSpec" xlink:title="StringTypeSpec">
<rect x="51" y="135" width="110" height="32"/>
<rect x="49" y="133" width="110" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">StringTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SymbolTypeSpec" xlink:title="SymbolTypeSpec">
<rect x="51" y="179" width="122" height="32"/>
<rect x="49" y="177" width="122" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="197">SymbolTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ArrayTypeSpec" xlink:title="ArrayTypeSpec">
<rect x="51" y="223" width="108" height="32"/>
<rect x="49" y="221" width="108" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="241">ArrayTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#MapTypeSpec" xlink:title="MapTypeSpec">
<rect x="51" y="267" width="102" height="32"/>
<rect x="49" y="265" width="102" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="285">MapTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#StructTypeSpec" xlink:title="StructTypeSpec">
<rect x="51" y="311" width="112" height="32"/>
<rect x="49" y="309" width="112" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="329">StructTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#UnionTypeSpec" xlink:title="UnionTypeSpec">
<rect x="51" y="355" width="110" height="32"/>
<rect x="49" y="353" width="110" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="373">UnionTypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#EnumTypeSpec" xlink:title="EnumTypeSpec">
<rect x="51" y="399" width="110" height="32"/>
<rect x="49" y="397" width="110" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="417">EnumTypeSpec</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m66 0 h10 m0 0 h56 m-162 0 h20 m142 0 h20 m-182 0 q10 0 10 10 m162 0 q0 -10 10 -10 m-172 10 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m102 0 h10 m0 0 h20 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m110 0 h10 m0 0 h12 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m110 0 h10 m0 0 h12 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m122 0 h10 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m108 0 h10 m0 0 h14 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m102 0 h10 m0 0 h20 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m112 0 h10 m0 0 h10 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m110 0 h10 m0 0 h12 m-152 -10 v20 m162 0 v-20 m-162 20 v24 m162 0 v-24 m-162 24 q0 10 10 10 m142 0 q10 0 10 -10 m-152 10 h10 m110 0 h10 m0 0 h12 m23 -396 h-3"/>
<polygon points="211 17 203 13 203 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#FieldSpec" title="FieldSpec">FieldSpec</a>, <a href="#InputSpec" title="InputSpec">InputSpec</a>, <a href="#OutputSpec" title="OutputSpec">OutputSpec</a>, <a href="#TypeDef" title="TypeDef">TypeDef</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="AliasTypeSpec">AliasTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="430" height="96">
<polygon points="17 61 9 57 9 65"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeRef" xlink:title="TypeRef">
<rect x="31" y="47" width="66" height="32"/>
<rect x="29" y="45" width="66" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="65">TypeRef</text>
</a>
<rect x="137" y="47" width="26" height="32" rx="10"/>
<rect x="135" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="145" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="203" y="47" width="114" height="32"/>
<rect x="201" y="45" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="211" y="65">ExtendedOption</text>
</a>
<rect x="203" y="3" width="24" height="32" rx="10"/>
<rect x="201" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="211" y="21">,</text>
<rect x="357" y="47" width="26" height="32" rx="10"/>
<rect x="355" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="365" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m66 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m114 0 h10 m-154 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m134 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-134 0 h10 m24 0 h10 m0 0 h90 m20 44 h10 m26 0 h10 m-286 0 h20 m266 0 h20 m-306 0 q10 0 10 10 m286 0 q0 -10 10 -10 m-296 10 v14 m286 0 v-14 m-286 14 q0 10 10 10 m266 0 q10 0 10 -10 m-276 10 h10 m0 0 h256 m23 -34 h-3"/>
<polygon points="421 61 413 57 413 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="BytesTypeSpec">BytesTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="650" height="112">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="58" height="32" rx="10"/>
<rect x="29" y="45" width="58" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">Bytes</text>
<rect x="129" y="79" width="26" height="32" rx="10"/>
<rect x="127" y="77" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="137" y="97">[</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralInteger" xlink:title="LiteralInteger">
<rect x="175" y="79" width="98" height="32"/>
<rect x="173" y="77" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="183" y="97">LiteralInteger</text>
</a>
<rect x="293" y="79" width="26" height="32" rx="10"/>
<rect x="291" y="77" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="301" y="97">]</text>
<rect x="379" y="47" width="26" height="32" rx="10"/>
<rect x="377" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="387" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BytesOption" xlink:title="BytesOption">
<rect x="445" y="47" width="92" height="32"/>
<rect x="443" y="45" width="92" height="32" class="nonterminal"/>
<text class="nonterminal" x="453" y="65">BytesOption</text>
</a>
<rect x="445" y="3" width="24" height="32" rx="10"/>
<rect x="443" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="453" y="21">,</text>
<rect x="577" y="47" width="26" height="32" rx="10"/>
<rect x="575" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="585" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m58 0 h10 m20 0 h10 m0 0 h200 m-230 0 h20 m210 0 h20 m-250 0 q10 0 10 10 m230 0 q0 -10 10 -10 m-240 10 v12 m230 0 v-12 m-230 12 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m26 0 h10 m0 0 h10 m98 0 h10 m0 0 h10 m26 0 h10 m40 -32 h10 m26 0 h10 m20 0 h10 m92 0 h10 m-132 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m112 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-112 0 h10 m24 0 h10 m0 0 h68 m20 44 h10 m26 0 h10 m-264 0 h20 m244 0 h20 m-284 0 q10 0 10 10 m264 0 q0 -10 10 -10 m-274 10 v14 m264 0 v-14 m-264 14 q0 10 10 10 m244 0 q10 0 10 -10 m-254 10 h10 m0 0 h234 m23 -34 h-3"/>
<polygon points="641 61 633 57 633 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="BytesOption">BytesOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="380" height="124">
<polygon points="17 17 9 13 9 21"/>
<rect x="71" y="3" width="70" height="32" rx="10"/>
<rect x="69" y="1" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="21">minsize</text>
<rect x="71" y="47" width="74" height="32" rx="10"/>
<rect x="69" y="45" width="74" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="65">maxsize</text>
<rect x="185" y="3" width="30" height="32" rx="10"/>
<rect x="183" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="193" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralInteger" xlink:title="LiteralInteger">
<rect x="235" y="3" width="98" height="32"/>
<rect x="233" y="1" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="243" y="21">LiteralInteger</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="91" width="114" height="32"/>
<rect x="49" y="89" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m40 0 h10 m70 0 h10 m0 0 h4 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m20 -44 h10 m30 0 h10 m0 0 h10 m98 0 h10 m-322 0 h20 m302 0 h20 m-342 0 q10 0 10 10 m322 0 q0 -10 10 -10 m-332 10 v68 m322 0 v-68 m-322 68 q0 10 10 10 m302 0 q10 0 10 -10 m-312 10 h10 m114 0 h10 m0 0 h168 m23 -88 h-3"/>
<polygon points="371 17 363 13 363 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#BytesTypeSpec" title="BytesTypeSpec">BytesTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="StringTypeSpec">StringTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="402" height="96">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="58" height="32" rx="10"/>
<rect x="29" y="45" width="58" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">String</text>
<rect x="129" y="47" width="26" height="32" rx="10"/>
<rect x="127" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="137" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#StringOption" xlink:title="StringOption">
<rect x="195" y="47" width="94" height="32"/>
<rect x="193" y="45" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="203" y="65">StringOption</text>
</a>
<rect x="195" y="3" width="24" height="32" rx="10"/>
<rect x="193" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="203" y="21">,</text>
<rect x="329" y="47" width="26" height="32" rx="10"/>
<rect x="327" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="337" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m58 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m94 0 h10 m-134 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m114 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-114 0 h10 m24 0 h10 m0 0 h70 m20 44 h10 m26 0 h10 m-266 0 h20 m246 0 h20 m-286 0 q10 0 10 10 m266 0 q0 -10 10 -10 m-276 10 v14 m266 0 v-14 m-266 14 q0 10 10 10 m246 0 q10 0 10 -10 m-256 10 h10 m0 0 h236 m23 -34 h-3"/>
<polygon points="393 61 385 57 385 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="StringOption">StringOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="452" height="256">
<polygon points="17 17 9 13 9 21"/>
<rect x="51" y="3" width="68" height="32" rx="10"/>
<rect x="49" y="1" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">pattern</text>
<rect x="139" y="3" width="30" height="32" rx="10"/>
<rect x="137" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="147" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralString" xlink:title="LiteralString">
<rect x="189" y="3" width="90" height="32"/>
<rect x="187" y="1" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="197" y="21">LiteralString</text>
</a>
<rect x="51" y="91" width="62" height="32" rx="10"/>
<rect x="49" y="89" width="62" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="109">values</text>
<rect x="133" y="91" width="30" height="32" rx="10"/>
<rect x="131" y="89" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="141" y="109">=</text>
<rect x="183" y="91" width="26" height="32" rx="10"/>
<rect x="181" y="89" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="191" y="109">[</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralString" xlink:title="LiteralString">
<rect x="249" y="91" width="90" height="32"/>
<rect x="247" y="89" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="257" y="109">LiteralString</text>
</a>
<rect x="249" y="47" width="24" height="32" rx="10"/>
<rect x="247" y="45" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="257" y="65">,</text>
<rect x="379" y="91" width="26" height="32" rx="10"/>
<rect x="377" y="89" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="387" y="109">]</text>
<rect x="71" y="135" width="70" height="32" rx="10"/>
<rect x="69" y="133" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="153">minsize</text>
<rect x="71" y="179" width="74" height="32" rx="10"/>
<rect x="69" y="177" width="74" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="197">maxsize</text>
<rect x="185" y="135" width="30" height="32" rx="10"/>
<rect x="183" y="133" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="193" y="153">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralInteger" xlink:title="LiteralInteger">
<rect x="235" y="135" width="98" height="32"/>
<rect x="233" y="133" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="243" y="153">LiteralInteger</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="223" width="114" height="32"/>
<rect x="49" y="221" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="241">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m68 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m90 0 h10 m0 0 h126 m-394 0 h20 m374 0 h20 m-414 0 q10 0 10 10 m394 0 q0 -10 10 -10 m-404 10 v68 m394 0 v-68 m-394 68 q0 10 10 10 m374 0 q10 0 10 -10 m-384 10 h10 m62 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m26 0 h10 m20 0 h10 m90 0 h10 m-130 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m110 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-110 0 h10 m24 0 h10 m0 0 h66 m20 44 h10 m26 0 h10 m-384 -10 v20 m394 0 v-20 m-394 20 v24 m394 0 v-24 m-394 24 q0 10 10 10 m374 0 q10 0 10 -10 m-364 10 h10 m70 0 h10 m0 0 h4 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m20 -44 h10 m30 0 h10 m0 0 h10 m98 0 h10 m0 0 h72 m-384 -10 v20 m394 0 v-20 m-394 20 v68 m394 0 v-68 m-394 68 q0 10 10 10 m374 0 q10 0 10 -10 m-384 10 h10 m114 0 h10 m0 0 h240 m23 -220 h-3"/>
<polygon points="443 17 435 13 435 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#FieldOption" title="FieldOption">FieldOption</a>, <a href="#StringTypeSpec" title="StringTypeSpec">StringTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="SymbolTypeSpec">SymbolTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="422" height="96">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="68" height="32" rx="10"/>
<rect x="29" y="45" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">Symbol</text>
<rect x="139" y="47" width="26" height="32" rx="10"/>
<rect x="137" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="147" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SymbolOption" xlink:title="SymbolOption">
<rect x="205" y="47" width="104" height="32"/>
<rect x="203" y="45" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="213" y="65">SymbolOption</text>
</a>
<rect x="205" y="3" width="24" height="32" rx="10"/>
<rect x="203" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="213" y="21">,</text>
<rect x="349" y="47" width="26" height="32" rx="10"/>
<rect x="347" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="357" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m68 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m104 0 h10 m-144 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m124 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-124 0 h10 m24 0 h10 m0 0 h80 m20 44 h10 m26 0 h10 m-276 0 h20 m256 0 h20 m-296 0 q10 0 10 10 m276 0 q0 -10 10 -10 m-286 10 v14 m276 0 v-14 m-276 14 q0 10 10 10 m256 0 q10 0 10 -10 m-266 10 h10 m0 0 h246 m23 -34 h-3"/>
<polygon points="413 61 405 57 405 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="SymbolOption">SymbolOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="462" height="124">
<polygon points="17 61 9 57 9 65"/>
<rect x="51" y="47" width="62" height="32" rx="10"/>
<rect x="49" y="45" width="62" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="65">values</text>
<rect x="133" y="47" width="30" height="32" rx="10"/>
<rect x="131" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="141" y="65">=</text>
<rect x="183" y="47" width="26" height="32" rx="10"/>
<rect x="181" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="191" y="65">[</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralSymbol" xlink:title="LiteralSymbol">
<rect x="249" y="47" width="100" height="32"/>
<rect x="247" y="45" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="257" y="65">LiteralSymbol</text>
</a>
<rect x="249" y="3" width="24" height="32" rx="10"/>
<rect x="247" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="257" y="21">,</text>
<rect x="389" y="47" width="26" height="32" rx="10"/>
<rect x="387" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="397" y="65">]</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="91" width="114" height="32"/>
<rect x="49" y="89" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m20 0 h10 m62 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m26 0 h10 m20 0 h10 m100 0 h10 m-140 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m120 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-120 0 h10 m24 0 h10 m0 0 h76 m20 44 h10 m26 0 h10 m-404 0 h20 m384 0 h20 m-424 0 q10 0 10 10 m404 0 q0 -10 10 -10 m-414 10 v24 m404 0 v-24 m-404 24 q0 10 10 10 m384 0 q10 0 10 -10 m-394 10 h10 m114 0 h10 m0 0 h250 m23 -44 h-3"/>
<polygon points="453 61 445 57 445 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#FieldOption" title="FieldOption">FieldOption</a>, <a href="#SymbolTypeSpec" title="SymbolTypeSpec">SymbolTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="ArrayTypeSpec">ArrayTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="582" height="96">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="56" height="32" rx="10"/>
<rect x="29" y="45" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">Array</text>
<rect x="107" y="47" width="30" height="32" rx="10"/>
<rect x="105" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="115" y="65"><</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeRef" xlink:title="TypeRef">
<rect x="157" y="47" width="66" height="32"/>
<rect x="155" y="45" width="66" height="32" class="nonterminal"/>
<text class="nonterminal" x="165" y="65">TypeRef</text>
</a>
<rect x="243" y="47" width="30" height="32" rx="10"/>
<rect x="241" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="251" y="65">></text>
<rect x="313" y="47" width="26" height="32" rx="10"/>
<rect x="311" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="321" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ArrayOption" xlink:title="ArrayOption">
<rect x="379" y="47" width="90" height="32"/>
<rect x="377" y="45" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="387" y="65">ArrayOption</text>
</a>
<rect x="379" y="3" width="24" height="32" rx="10"/>
<rect x="377" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="387" y="21">,</text>
<rect x="509" y="47" width="26" height="32" rx="10"/>
<rect x="507" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="517" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m56 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m66 0 h10 m0 0 h10 m30 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m90 0 h10 m-130 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m110 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-110 0 h10 m24 0 h10 m0 0 h66 m20 44 h10 m26 0 h10 m-262 0 h20 m242 0 h20 m-282 0 q10 0 10 10 m262 0 q0 -10 10 -10 m-272 10 v14 m262 0 v-14 m-262 14 q0 10 10 10 m242 0 q10 0 10 -10 m-252 10 h10 m0 0 h232 m23 -34 h-3"/>
<polygon points="573 61 565 57 565 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="ArrayOption">ArrayOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="380" height="168">
<polygon points="17 17 9 13 9 21"/>
<rect x="71" y="3" width="46" height="32" rx="10"/>
<rect x="69" y="1" width="46" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="21">size</text>
<rect x="71" y="47" width="70" height="32" rx="10"/>
<rect x="69" y="45" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="65">minsize</text>
<rect x="71" y="91" width="74" height="32" rx="10"/>
<rect x="69" y="89" width="74" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="109">maxsize</text>
<rect x="185" y="3" width="30" height="32" rx="10"/>
<rect x="183" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="193" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralInteger" xlink:title="LiteralInteger">
<rect x="235" y="3" width="98" height="32"/>
<rect x="233" y="1" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="243" y="21">LiteralInteger</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="135" width="114" height="32"/>
<rect x="49" y="133" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m40 0 h10 m46 0 h10 m0 0 h28 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m70 0 h10 m0 0 h4 m-104 -10 v20 m114 0 v-20 m-114 20 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m20 -88 h10 m30 0 h10 m0 0 h10 m98 0 h10 m-322 0 h20 m302 0 h20 m-342 0 q10 0 10 10 m322 0 q0 -10 10 -10 m-332 10 v112 m322 0 v-112 m-322 112 q0 10 10 10 m302 0 q10 0 10 -10 m-312 10 h10 m114 0 h10 m0 0 h168 m23 -132 h-3"/>
<polygon points="371 17 363 13 363 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#ArrayTypeSpec" title="ArrayTypeSpec">ArrayTypeSpec</a>, <a href="#FieldOption" title="FieldOption">FieldOption</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="MapTypeSpec">MapTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="696" height="96">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="46" height="32" rx="10"/>
<rect x="29" y="45" width="46" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">Map</text>
<rect x="97" y="47" width="30" height="32" rx="10"/>
<rect x="95" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="105" y="65"><</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeRef" xlink:title="TypeRef">
<rect x="147" y="47" width="66" height="32"/>
<rect x="145" y="45" width="66" height="32" class="nonterminal"/>
<text class="nonterminal" x="155" y="65">TypeRef</text>
</a>
<rect x="233" y="47" width="24" height="32" rx="10"/>
<rect x="231" y="45" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="241" y="65">,</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeRef" xlink:title="TypeRef">
<rect x="277" y="47" width="66" height="32"/>
<rect x="275" y="45" width="66" height="32" class="nonterminal"/>
<text class="nonterminal" x="285" y="65">TypeRef</text>
</a>
<rect x="363" y="47" width="30" height="32" rx="10"/>
<rect x="361" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="371" y="65">></text>
<rect x="433" y="47" width="26" height="32" rx="10"/>
<rect x="431" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="441" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#MapOption" xlink:title="MapOption">
<rect x="499" y="47" width="84" height="32"/>
<rect x="497" y="45" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="507" y="65">MapOption</text>
</a>
<rect x="499" y="3" width="24" height="32" rx="10"/>
<rect x="497" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="507" y="21">,</text>
<rect x="623" y="47" width="26" height="32" rx="10"/>
<rect x="621" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="631" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m46 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m66 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m66 0 h10 m0 0 h10 m30 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m84 0 h10 m-124 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m104 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-104 0 h10 m24 0 h10 m0 0 h60 m20 44 h10 m26 0 h10 m-256 0 h20 m236 0 h20 m-276 0 q10 0 10 10 m256 0 q0 -10 10 -10 m-266 10 v14 m256 0 v-14 m-256 14 q0 10 10 10 m236 0 q10 0 10 -10 m-246 10 h10 m0 0 h226 m23 -34 h-3"/>
<polygon points="687 61 679 57 679 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="MapOption">MapOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="380" height="168">
<polygon points="17 17 9 13 9 21"/>
<rect x="71" y="3" width="46" height="32" rx="10"/>
<rect x="69" y="1" width="46" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="21">size</text>
<rect x="71" y="47" width="70" height="32" rx="10"/>
<rect x="69" y="45" width="70" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="65">minsize</text>
<rect x="71" y="91" width="74" height="32" rx="10"/>
<rect x="69" y="89" width="74" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="109">maxsize</text>
<rect x="185" y="3" width="30" height="32" rx="10"/>
<rect x="183" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="193" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralInteger" xlink:title="LiteralInteger">
<rect x="235" y="3" width="98" height="32"/>
<rect x="233" y="1" width="98" height="32" class="nonterminal"/>
<text class="nonterminal" x="243" y="21">LiteralInteger</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="135" width="114" height="32"/>
<rect x="49" y="133" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m40 0 h10 m46 0 h10 m0 0 h28 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m70 0 h10 m0 0 h4 m-104 -10 v20 m114 0 v-20 m-114 20 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m20 -88 h10 m30 0 h10 m0 0 h10 m98 0 h10 m-322 0 h20 m302 0 h20 m-342 0 q10 0 10 10 m322 0 q0 -10 10 -10 m-332 10 v112 m322 0 v-112 m-322 112 q0 10 10 10 m302 0 q10 0 10 -10 m-312 10 h10 m114 0 h10 m0 0 h168 m23 -132 h-3"/>
<polygon points="371 17 363 13 363 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#FieldOption" title="FieldOption">FieldOption</a>, <a href="#MapTypeSpec" title="MapTypeSpec">MapTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="StructTypeSpec">StructTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="634" height="96">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="60" height="32" rx="10"/>
<rect x="29" y="45" width="60" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">Struct</text>
<rect x="131" y="47" width="26" height="32" rx="10"/>
<rect x="129" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="139" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#StructOption" xlink:title="StructOption">
<rect x="197" y="47" width="94" height="32"/>
<rect x="195" y="45" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="205" y="65">StructOption</text>
</a>
<rect x="197" y="3" width="24" height="32" rx="10"/>
<rect x="195" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="205" y="21">,</text>
<rect x="331" y="47" width="26" height="32" rx="10"/>
<rect x="329" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="339" y="65">)</text>
<rect x="397" y="47" width="28" height="32" rx="10"/>
<rect x="395" y="45" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="405" y="65">{</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#FieldSpec" xlink:title="FieldSpec">
<rect x="465" y="47" width="74" height="32"/>
<rect x="463" y="45" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="473" y="65">FieldSpec</text>
</a>
<rect x="579" y="47" width="28" height="32" rx="10"/>
<rect x="577" y="45" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="587" y="65">}</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m60 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m94 0 h10 m-134 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m114 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-114 0 h10 m24 0 h10 m0 0 h70 m20 44 h10 m26 0 h10 m-266 0 h20 m246 0 h20 m-286 0 q10 0 10 10 m266 0 q0 -10 10 -10 m-276 10 v14 m266 0 v-14 m-266 14 q0 10 10 10 m246 0 q10 0 10 -10 m-256 10 h10 m0 0 h236 m20 -34 h10 m28 0 h10 m20 0 h10 m74 0 h10 m-114 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m94 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-94 0 h10 m0 0 h84 m20 32 h10 m28 0 h10 m3 0 h-3"/>
<polygon points="625 61 617 57 617 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#TypeSpec" title="TypeSpec">TypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="StructOption">StructOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="212" height="80">
<polygon points="17 17 9 13 9 21"/>
<rect x="51" y="3" width="60" height="32" rx="10"/>
<rect x="49" y="1" width="60" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">closed</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="47" width="114" height="32"/>
<rect x="49" y="45" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m60 0 h10 m0 0 h54 m-154 0 h20 m134 0 h20 m-174 0 q10 0 10 10 m154 0 q0 -10 10 -10 m-164 10 v24 m154 0 v-24 m-154 24 q0 10 10 10 m134 0 q10 0 10 -10 m-144 10 h10 m114 0 h10 m23 -44 h-3"/>
<polygon points="203 17 195 13 195 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#StructTypeSpec" title="StructTypeSpec">StructTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="FieldSpec">FieldSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="530" height="96">
<polygon points="17 61 9 57 9 65"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeSpec" xlink:title="TypeSpec">
<rect x="31" y="47" width="76" height="32"/>
<rect x="29" y="45" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="65">TypeSpec</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Name" xlink:title="Name">
<rect x="127" y="47" width="54" height="32"/>
<rect x="125" y="45" width="54" height="32" class="nonterminal"/>
<text class="nonterminal" x="135" y="65">Name</text>
</a>
<rect x="221" y="47" width="26" height="32" rx="10"/>
<rect x="219" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="229" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#FieldOption" xlink:title="FieldOption">
<rect x="287" y="47" width="86" height="32"/>
<rect x="285" y="45" width="86" height="32" class="nonterminal"/>
<text class="nonterminal" x="295" y="65">FieldOption</text>
</a>
<rect x="287" y="3" width="24" height="32" rx="10"/>
<rect x="285" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="295" y="21">,</text>
<rect x="413" y="47" width="26" height="32" rx="10"/>
<rect x="411" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="421" y="65">)</text>
<rect x="479" y="47" width="24" height="32" rx="10"/>
<rect x="477" y="45" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="487" y="65">;</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m76 0 h10 m0 0 h10 m54 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m86 0 h10 m-126 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m106 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-106 0 h10 m24 0 h10 m0 0 h62 m20 44 h10 m26 0 h10 m-258 0 h20 m238 0 h20 m-278 0 q10 0 10 10 m258 0 q0 -10 10 -10 m-268 10 v14 m258 0 v-14 m-258 14 q0 10 10 10 m238 0 q10 0 10 -10 m-248 10 h10 m0 0 h228 m20 -34 h10 m24 0 h10 m3 0 h-3"/>
<polygon points="521 61 513 57 513 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#StructTypeSpec" title="StructTypeSpec">StructTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="FieldOption">FieldOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="288" height="344">
<polygon points="17 17 9 13 9 21"/>
<rect x="51" y="3" width="72" height="32" rx="10"/>
<rect x="49" y="1" width="72" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">optional</text>
<rect x="51" y="47" width="66" height="32" rx="10"/>
<rect x="49" y="45" width="66" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="65">default</text>
<rect x="137" y="47" width="30" height="32" rx="10"/>
<rect x="135" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="145" y="65">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Literal" xlink:title="Literal">
<rect x="187" y="47" width="54" height="32"/>
<rect x="185" y="45" width="54" height="32" class="nonterminal"/>
<text class="nonterminal" x="195" y="65">Literal</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#StringOption" xlink:title="StringOption">
<rect x="51" y="91" width="94" height="32"/>
<rect x="49" y="89" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">StringOption</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#SymbolOption" xlink:title="SymbolOption">
<rect x="51" y="135" width="104" height="32"/>
<rect x="49" y="133" width="104" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">SymbolOption</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ArrayOption" xlink:title="ArrayOption">
<rect x="51" y="179" width="90" height="32"/>
<rect x="49" y="177" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="197">ArrayOption</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#MapOption" xlink:title="MapOption">
<rect x="51" y="223" width="84" height="32"/>
<rect x="49" y="221" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="241">MapOption</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NumberOption" xlink:title="NumberOption">
<rect x="51" y="267" width="106" height="32"/>
<rect x="49" y="265" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="285">NumberOption</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="311" width="114" height="32"/>
<rect x="49" y="309" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="329">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m72 0 h10 m0 0 h118 m-230 0 h20 m210 0 h20 m-250 0 q10 0 10 10 m230 0 q0 -10 10 -10 m-240 10 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m66 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m54 0 h10 m-220 -10 v20 m230 0 v-20 m-230 20 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m94 0 h10 m0 0 h96 m-220 -10 v20 m230 0 v-20 m-230 20 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m104 0 h10 m0 0 h86 m-220 -10 v20 m230 0 v-20 m-230 20 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m90 0 h10 m0 0 h100 m-220 -10 v20 m230 0 v-20 m-230 20 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m84 0 h10 m0 0 h106 m-220 -10 v20 m230 0 v-20 m-230 20 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m106 0 h10 m0 0 h84 m-220 -10 v20 m230 0 v-20 m-230 20 v24 m230 0 v-24 m-230 24 q0 10 10 10 m210 0 q10 0 10 -10 m-220 10 h10 m114 0 h10 m0 0 h76 m23 -308 h-3"/>
<polygon points="279 17 271 13 271 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#FieldSpec" title="FieldSpec">FieldSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="NumberTypeSpec">NumberTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="450" height="96">
<polygon points="17 61 9 57 9 65"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NumberType" xlink:title="NumberType">
<rect x="31" y="47" width="94" height="32"/>
<rect x="29" y="45" width="94" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="65">NumberType</text>
</a>
<rect x="165" y="47" width="26" height="32" rx="10"/>
<rect x="163" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="173" y="65">(</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NumberOption" xlink:title="NumberOption">
<rect x="231" y="47" width="106" height="32"/>
<rect x="229" y="45" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="239" y="65">NumberOption</text>
</a>
<rect x="231" y="3" width="24" height="32" rx="10"/>
<rect x="229" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="239" y="21">,</text>
<rect x="377" y="47" width="26" height="32" rx="10"/>
<rect x="375" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="385" y="65">)</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m0 0 h10 m94 0 h10 m20 0 h10 m26 0 h10 m20 0 h10 m106 0 h10 m-146 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m126 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-126 0 h10 m24 0 h10 m0 0 h82 m20 44 h10 m26 0 h10 m-278 0 h20 m258 0 h20 m-298 0 q10 0 10 10 m278 0 q0 -10 10 -10 m-288 10 v14 m278 0 v-14 m-278 14 q0 10 10 10 m258 0 q10 0 10 -10 m-268 10 h10 m0 0 h248 m23 -34 h-3"/>
<polygon points="441 61 433 57 433 65"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml"></p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="NumberOption">NumberOption:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="358" height="124">
<polygon points="17 17 9 13 9 21"/>
<rect x="71" y="3" width="44" height="32" rx="10"/>
<rect x="69" y="1" width="44" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="21">min</text>
<rect x="71" y="47" width="48" height="32" rx="10"/>
<rect x="69" y="45" width="48" height="32" class="terminal" rx="10"/>
<text class="terminal" x="79" y="65">max</text>
<rect x="159" y="3" width="30" height="32" rx="10"/>
<rect x="157" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="167" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#LiteralNumber" xlink:title="LiteralNumber">
<rect x="209" y="3" width="102" height="32"/>
<rect x="207" y="1" width="102" height="32" class="nonterminal"/>
<text class="nonterminal" x="217" y="21">LiteralNumber</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ExtendedOption" xlink:title="ExtendedOption">
<rect x="51" y="91" width="114" height="32"/>
<rect x="49" y="89" width="114" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">ExtendedOption</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m40 0 h10 m44 0 h10 m0 0 h4 m-88 0 h20 m68 0 h20 m-108 0 q10 0 10 10 m88 0 q0 -10 10 -10 m-98 10 v24 m88 0 v-24 m-88 24 q0 10 10 10 m68 0 q10 0 10 -10 m-78 10 h10 m48 0 h10 m20 -44 h10 m30 0 h10 m0 0 h10 m102 0 h10 m-300 0 h20 m280 0 h20 m-320 0 q10 0 10 10 m300 0 q0 -10 10 -10 m-310 10 v68 m300 0 v-68 m-300 68 q0 10 10 10 m280 0 q10 0 10 -10 m-290 10 h10 m114 0 h10 m0 0 h146 m23 -88 h-3"/>
<polygon points="349 17 341 13 341 21"/>
</svg>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">
</p>
<p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<a href="#FieldOption" title="FieldOption">FieldOption</a>, <a href="#NumberTypeSpec" title="NumberTypeSpec">NumberTypeSpec</a>
</p><br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><h3 xmlns:xhtml="http://www.w3.org/1999/xhtml"><a name="UnionTypeSpec">UnionTypeSpec:</a></h3>
<svg xmlns="http://www.w3.org/2000/svg" width="640" height="96">
<polygon points="17 61 9 57 9 65"/>
<rect x="31" y="47" width="56" height="32" rx="10"/>
<rect x="29" y="45" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="65">Union</text>
<rect x="107" y="47" width="30" height="32" rx="10"/>
<rect x="105" y="45" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="115" y="65"><</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#TypeName" xlink:title="TypeName">
<rect x="177" y="47" width="82" height="32"/>
<rect x="175" y="45" width="82" height="32" class="nonterminal"/>
<text class="nonterminal" x="185" y="65">TypeName</text>
</a>
<rect x="177" y="3" width="24" height="32" rx="10"/>
<rect x="175" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="185" y="21">,</text>
<rect x="299" y="47" width="30" height="32" rx="10"/>
<rect x="297" y="45" width="30" height="32" class="terminal" rx="10"/>