-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patheagle-9.2.2.dtd
674 lines (600 loc) · 25.2 KB
/
eagle-9.2.2.dtd
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
<!--
EAGLE version $__VersionNumber__ DTD
Copyright (c) $__ThisYear__ Autodesk
http://www.autodesk.com
This file describes the XML file format used by EAGLE version $__VersionNumber__,
hereafter referred to as the "EAGLE File Format".
It is made available under the creative commons "CC BY-ND 3.0" license
(see http://creativecommons.org/licenses/by-nd/3.0).
You may use this file to implement a program that reads and/or writes files
in the EAGLE File Format. If your program writes files in the EAGLE File
Format, these files must be readable by EAGLE version $__VersionNumber__
without any error messages or warnings.
-->
<!-- ### Entity definitions ############################################### -->
<!ENTITY % Int "CDATA"> <!-- an integer number -->
<!ENTITY % Real "CDATA"> <!-- a real number -->
<!ENTITY % String "CDATA"> <!-- a character string -->
<!ENTITY % Bool "(no | yes)">
<!ENTITY % Coord "%Real;"> <!-- coordinates, given in millimeters -->
<!ENTITY % Dimension "%Real;"> <!-- dimensions, given in millimeters -->
<!ENTITY % Layer "%Int;"> <!-- layer number -->
<!ENTITY % GridUnit "(mic | mm | mil | inch)">
<!ENTITY % GridStyle "(lines | dots)">
<!ENTITY % WireStyle "(continuous | longdash | shortdash | dashdot)">
<!ENTITY % WireCap "(flat | round)">
<!ENTITY % WireCurve "%Real;"> <!-- curvature of a wire; allowed range: -359.9..359.9 -->
<!ENTITY % Class "%Int;"> <!-- net class -->
<!ENTITY % PadShape "(square | round | octagon | long | offset)">
<!ENTITY % ViaShape "(square | round | octagon)">
<!ENTITY % TextFont "(vector | proportional | fixed)">
<!ENTITY % Rotation "CDATA"> <!-- rotation of an object; allowed range: [MSR]0..359.9 -->
<!ENTITY % AttributeDisplay "(off | value | name | both)">
<!ENTITY % Extent "%String;"> <!-- the layers a via or airwire extends through, given as "topmost-bottommost" -->
<!ENTITY % PolygonPour "(solid | hatch | cutout)">
<!ENTITY % PinVisible "(off | pad | pin | both)">
<!ENTITY % PinLength "(point | short | middle | long)">
<!ENTITY % PinDirection "(nc | in | out | io | oc | pwr | pas | hiz | sup)">
<!ENTITY % PinFunction "(none | dot | clk | dotclk)">
<!ENTITY % PortDirection "(nc | in | out | io | oc | pwr | pas | hiz)">
<!ENTITY % GateAddLevel "(must | can | next | request | always)">
<!ENTITY % ContactRoute "(all | any)">
<!ENTITY % DimensionType "(parallel | horizontal | vertical | radius | diameter | leader)">
<!ENTITY % Package3dType "(model | box)">
<!ENTITY % Severity "(info | warning | error)">
<!ENTITY % Align "(bottom-left | bottom-center | bottom-right | center-left | center | center-right | top-left | top-center | top-right)">
<!ENTITY % VerticalText "(up | down)">
<!ENTITY % Urn "%String;"> <!-- of the form "urn:adsk.eagle:<ASSET_TYPE>:<ASSET_ID>/<VERSION>", where:
- <ASSET_TYPE> is "symbol", "footprint", "package", "component", or "library"
- <ASSET_ID> is an integer
- <VERSION> is an integer
The "/<VERSION>" is omitted when referencing the asset without specifying a particular version.
For example, "urn:adsk.eagle:component:60986/2" references version 2 of component 60986 and
"urn:adsk.eagle:library:60968" references library 60986 without specifying a version. -->
<!-- ### Drawing definitions ############################################## -->
<!ELEMENT eagle (compatibility?, drawing, compatibility?)>
<!ATTLIST eagle
version %Real; #REQUIRED
>
<!-- version: The EAGLE program version that generated this file, in the form V.RR -->
<!ELEMENT compatibility (note)*>
<!ELEMENT note (#PCDATA)>
<!ATTLIST note
version %Real; #REQUIRED
severity %Severity; #REQUIRED
>
<!-- version: The EAGLE program version that introduced this compatibility note -->
<!ELEMENT drawing (settings?, grid?, layers, (library | schematic | board))>
<!ELEMENT library (description?, packages?, packages3d?, symbols?, devicesets?)>
<!ATTLIST library
name %String; #REQUIRED
urn %Urn; ""
>
<!-- name: Only in libraries used inside boards or schematics -->
<!-- urn: Only in online libraries used inside boards or schematics -->
<!ELEMENT schematic (description?, libraries?, attributes?, variantdefs?, classes?, modules?, parts?, sheets?, errors?)>
<!ATTLIST schematic
xreflabel %String; #IMPLIED
xrefpart %String; #IMPLIED
>
<!ELEMENT module (description?, ports?, variantdefs?, parts?, sheets?)>
<!ATTLIST module
name %String; #REQUIRED
prefix %String; ""
dx %Coord; #REQUIRED
dy %Coord; #REQUIRED
>
<!ELEMENT board (description?, fusionsync?, plain?, libraries?, attributes?, variantdefs?, classes?, designrules?, autorouter?, elements?, signals?, mfgpreviewcolors?, errors?)>
<!ATTLIST board
limitedwidth %Dimension; #IMPLIED
>
<!-- ### High level objects ############################################### -->
<!ELEMENT sheet (description?, plain?, moduleinsts?, instances?, busses?, nets?)>
<!ELEMENT package (description?, (polygon | wire | text | dimension | circle | rectangle | frame | hole | pad | smd)*)>
<!ATTLIST package
name %String; #REQUIRED
urn %Urn; ""
locally_modified %Bool; "no"
library_version %Int; ""
library_locally_modified %Bool; "no"
>
<!-- library_version and library_locally_modified: Only in managed libraries inside boards or schematics -->
<!ELEMENT package3d (description?, packageinstances?)>
<!ATTLIST package3d
name %String; ""
urn %Urn; #REQUIRED
type %Package3dType; #REQUIRED
library_version %Int; ""
library_locally_modified %Bool; "no"
>
<!-- library_version and library_locally_modified: Only in managed libraries inside boards or schematics -->
<!ELEMENT symbol (description?, (polygon | wire | text | dimension | pin | circle | rectangle | frame)*)>
<!ATTLIST symbol
name %String; #REQUIRED
urn %Urn; ""
locally_modified %Bool; "no"
library_version %Int; ""
library_locally_modified %Bool; "no"
>
<!-- library_version and library_locally_modified: Only in managed libraries inside boards or schematics -->
<!ELEMENT deviceset (description?, gates, devices, spice?)>
<!ATTLIST deviceset
name %String; #REQUIRED
urn %Urn; ""
locally_modified %Bool; "no"
prefix %String; ""
uservalue %Bool; "no"
library_version %Int; ""
library_locally_modified %Bool; "no"
>
<!-- library_version and library_locally_modified: Only in managed libraries inside boards or schematics -->
<!ELEMENT device (connects?, package3dinstances?, technologies?)>
<!ATTLIST device
name %String; ""
package %String; #IMPLIED
>
<!ELEMENT bus (segment)*>
<!ATTLIST bus
name %String; #REQUIRED
>
<!ELEMENT net (segment)*>
<!ATTLIST net
name %String; #REQUIRED
class %Class; "0"
>
<!ELEMENT segment (pinref | portref | wire | junction | label | probe)*>
<!-- 'pinref' and 'junction' are only valid in a <net> context -->
<!ELEMENT signal (contactref | polygon | wire | via)*>
<!ATTLIST signal
name %String; #REQUIRED
class %Class; "0"
airwireshidden %Bool; "no"
>
<!ELEMENT mfgpreviewcolor EMPTY>
<!ATTLIST mfgpreviewcolor
name %String; #REQUIRED
color %String; #REQUIRED
>
<!-- ### Basic objects #################################################### -->
<!ELEMENT moduleinst (attribute)*>
<!ATTLIST moduleinst
name %String; #REQUIRED
module %String; #REQUIRED
modulevariant %String; ""
x %Coord; #REQUIRED
y %Coord; #REQUIRED
offset %Int; "0"
smashed %Bool; "no"
rot %Rotation; "R0"
>
<!-- rot: Only 0, 90, 180 or 270 -->
<!ELEMENT spice (pinmapping, model)>
<!ELEMENT pinmapping (pinmap+)>
<!ATTLIST pinmapping
isusermap %Bool; "no"
iddevicewide %Bool; "yes"
spiceprefix %String; ""
>
<!ELEMENT pinmap EMPTY>
<!ATTLIST pinmap
gate %String; #REQUIRED
pin %String; #REQUIRED
pinorder %String; #REQUIRED
>
<!ELEMENT model (#PCDATA)>
<!ATTLIST model
name %String; #REQUIRED
>
<!ELEMENT variantdef EMPTY>
<!ATTLIST variantdef
name %String; #REQUIRED
current %Bool; "no"
>
<!ELEMENT variant EMPTY>
<!ATTLIST variant
name %String; #REQUIRED
populate %Bool; "yes"
value %String; #IMPLIED
technology %String; #IMPLIED
>
<!-- technology: Only in part context -->
<!ELEMENT gate EMPTY>
<!ATTLIST gate
name %String; #REQUIRED
symbol %String; #REQUIRED
x %Coord; #REQUIRED
y %Coord; #REQUIRED
addlevel %GateAddLevel; "next"
swaplevel %Int; "0"
>
<!ELEMENT wire EMPTY>
<!ATTLIST wire
x1 %Coord; #REQUIRED
y1 %Coord; #REQUIRED
x2 %Coord; #REQUIRED
y2 %Coord; #REQUIRED
width %Dimension; #REQUIRED
layer %Layer; #REQUIRED
extent %Extent; #IMPLIED
style %WireStyle; "continuous"
curve %WireCurve; "0"
cap %WireCap; "round"
>
<!-- extent: Only applicable for airwires -->
<!-- cap : Only applicable if 'curve' is not zero -->
<!ELEMENT dimension EMPTY>
<!ATTLIST dimension
x1 %Coord; #REQUIRED
y1 %Coord; #REQUIRED
x2 %Coord; #REQUIRED
y2 %Coord; #REQUIRED
x3 %Coord; #REQUIRED
y3 %Coord; #REQUIRED
layer %Layer; #REQUIRED
dtype %DimensionType; "parallel"
width %Dimension; "0.13"
extwidth %Dimension; "0"
extlength %Dimension; "0"
extoffset %Dimension; "0"
textsize %Dimension; #REQUIRED
textratio %Int; "8"
unit %GridUnit; "mm"
precision %Int; "2"
visible %Bool; "no"
>
<!ELEMENT text (#PCDATA)>
<!ATTLIST text
x %Coord; #REQUIRED
y %Coord; #REQUIRED
size %Dimension; #REQUIRED
layer %Layer; #REQUIRED
font %TextFont; "proportional"
ratio %Int; "8"
rot %Rotation; "R0"
align %Align; "bottom-left"
distance %Int; "50"
>
<!ELEMENT circle EMPTY>
<!ATTLIST circle
x %Coord; #REQUIRED
y %Coord; #REQUIRED
radius %Coord; #REQUIRED
width %Dimension; #REQUIRED
layer %Layer; #REQUIRED
>
<!ELEMENT rectangle EMPTY>
<!ATTLIST rectangle
x1 %Coord; #REQUIRED
y1 %Coord; #REQUIRED
x2 %Coord; #REQUIRED
y2 %Coord; #REQUIRED
layer %Layer; #REQUIRED
rot %Rotation; "R0"
>
<!ELEMENT frame EMPTY>
<!ATTLIST frame
x1 %Coord; #REQUIRED
y1 %Coord; #REQUIRED
x2 %Coord; #REQUIRED
y2 %Coord; #REQUIRED
columns %Int; #REQUIRED
rows %Int; #REQUIRED
layer %Layer; #REQUIRED
border-left %Bool; "yes"
border-top %Bool; "yes"
border-right %Bool; "yes"
border-bottom %Bool; "yes"
>
<!ELEMENT hole EMPTY>
<!ATTLIST hole
x %Coord; #REQUIRED
y %Coord; #REQUIRED
drill %Dimension; #REQUIRED
>
<!ELEMENT pad EMPTY>
<!ATTLIST pad
name %String; #REQUIRED
x %Coord; #REQUIRED
y %Coord; #REQUIRED
drill %Dimension; #REQUIRED
diameter %Dimension; "0"
shape %PadShape; "round"
rot %Rotation; "R0"
stop %Bool; "yes"
thermals %Bool; "yes"
first %Bool; "no"
>
<!ELEMENT smd EMPTY>
<!ATTLIST smd
name %String; #REQUIRED
x %Coord; #REQUIRED
y %Coord; #REQUIRED
dx %Dimension; #REQUIRED
dy %Dimension; #REQUIRED
layer %Layer; #REQUIRED
roundness %Int; "0"
rot %Rotation; "R0"
stop %Bool; "yes"
thermals %Bool; "yes"
cream %Bool; "yes"
>
<!ELEMENT element (attribute*, variant*)>
<!-- variant* is accepted only for compatibility with EAGLE 6.x files -->
<!ATTLIST element
name %String; #REQUIRED
library %String; #REQUIRED
library_urn %Urn; ""
package %String; #REQUIRED
package3d_urn %Urn; ""
value %String; #REQUIRED
x %Coord; #REQUIRED
y %Coord; #REQUIRED
locked %Bool; "no"
populate %Bool; "yes"
smashed %Bool; "no"
rot %Rotation; "R0"
>
<!-- library_urn: Only in parts from online libraries -->
<!ELEMENT via EMPTY>
<!ATTLIST via
x %Coord; #REQUIRED
y %Coord; #REQUIRED
extent %Extent; #REQUIRED
drill %Dimension; #REQUIRED
diameter %Dimension; "0"
shape %ViaShape; "round"
alwaysstop %Bool; "no"
>
<!ELEMENT polygon (vertex)*>
<!-- the vertices must define a valid polygon; if the last vertex is the same as the first one, it is ignored -->
<!ATTLIST polygon
width %Dimension; #REQUIRED
layer %Layer; #REQUIRED
spacing %Dimension; #IMPLIED
pour %PolygonPour; "solid"
isolate %Dimension; #IMPLIED
orphans %Bool; "no"
thermals %Bool; "yes"
rank %Int; "0"
>
<!-- isolate: Only in <signal> or <package> context -->
<!-- orphans: Only in <signal> context -->
<!-- thermals:Only in <signal> context -->
<!-- rank: 1..6 in <signal> context, 0 or 7 in <package> context -->
<!ELEMENT vertex EMPTY>
<!ATTLIST vertex
x %Coord; #REQUIRED
y %Coord; #REQUIRED
curve %WireCurve; "0"
>
<!-- curve: The curvature from this vertex to the next one -->
<!ELEMENT pin EMPTY>
<!ATTLIST pin
name %String; #REQUIRED
x %Coord; #REQUIRED
y %Coord; #REQUIRED
visible %PinVisible; "both"
length %PinLength; "long"
direction %PinDirection; "io"
function %PinFunction; "none"
swaplevel %Int; "0"
rot %Rotation; "R0"
>
<!ELEMENT part (attribute*, variant*, spice?)>
<!ATTLIST part
name %String; #REQUIRED
library %String; #REQUIRED
library_urn %Urn; ""
deviceset %String; #REQUIRED
device %String; #REQUIRED
package3d_urn %Urn; ""
technology %String; ""
value %String; #IMPLIED
>
<!-- library_urn: Only in parts from online libraries -->
<!ELEMENT port EMPTY>
<!ATTLIST port
name %String; #REQUIRED
side %Int; #REQUIRED
coord %Coord; #REQUIRED
direction %PortDirection; "io"
>
<!ELEMENT instance (attribute)*>
<!ATTLIST instance
part %String; #REQUIRED
gate %String; #REQUIRED
x %Coord; #REQUIRED
y %Coord; #REQUIRED
smashed %Bool; "no"
rot %Rotation; "R0"
>
<!-- rot: Only 0, 90, 180 or 270 -->
<!ELEMENT label EMPTY>
<!ATTLIST label
x %Coord; #REQUIRED
y %Coord; #REQUIRED
size %Dimension; #REQUIRED
layer %Layer; #REQUIRED
font %TextFont; "proportional"
ratio %Int; "8"
rot %Rotation; "R0"
xref %Bool; "no"
align %Align; "bottom-left"
>
<!-- rot: Only 0, 90, 180 or 270 -->
<!-- xref: Only in <net> context -->
<!ELEMENT probe EMPTY>
<!ATTLIST probe
x %Coord; #REQUIRED
y %Coord; #REQUIRED
size %Dimension; #REQUIRED
layer %Layer; #REQUIRED
font %TextFont; "proportional"
ratio %Int; "8"
rot %Rotation; "R0"
xref %Bool; "no"
>
<!-- rot: Only 0, 90, 180 or 270 -->
<!-- xref: Only in <net> context -->
<!ELEMENT junction EMPTY>
<!ATTLIST junction
x %Coord; #REQUIRED
y %Coord; #REQUIRED
>
<!ELEMENT connect EMPTY>
<!ATTLIST connect
gate %String; #REQUIRED
pin %String; #REQUIRED
pad %String; #REQUIRED
route %ContactRoute; "all"
>
<!ELEMENT packageinstance EMPTY>
<!ATTLIST packageinstance
name %String; #REQUIRED
>
<!ELEMENT package3dinstance EMPTY>
<!ATTLIST package3dinstance
package3d_urn %Urn; #REQUIRED
>
<!ELEMENT technology (attribute)*>
<!ATTLIST technology
name %String; #REQUIRED
>
<!ELEMENT attribute EMPTY>
<!ATTLIST attribute
name %String; #REQUIRED
value %String; #IMPLIED
x %Coord; #IMPLIED
y %Coord; #IMPLIED
size %Dimension; #IMPLIED
layer %Layer; #IMPLIED
font %TextFont; #IMPLIED
ratio %Int; #IMPLIED
rot %Rotation; "R0"
display %AttributeDisplay; "value"
constant %Bool; "no"
align %Align; "bottom-left"
>
<!-- display: Only in <element> or <instance> context -->
<!-- constant:Only in <device> context -->
<!ELEMENT pinref EMPTY>
<!ATTLIST pinref
part %String; #REQUIRED
gate %String; #REQUIRED
pin %String; #REQUIRED
>
<!ELEMENT contactref EMPTY>
<!ATTLIST contactref
element %String; #REQUIRED
pad %String; #REQUIRED
route %ContactRoute; "all"
routetag %String; ""
>
<!ELEMENT portref EMPTY>
<!ATTLIST portref
moduleinst %String; #REQUIRED
port %String; #REQUIRED
>
<!-- ### Object lists ##################################################### -->
<!ELEMENT variantdefs (variantdef)*>
<!ELEMENT settings (setting)*>
<!ELEMENT modules (module)*>
<!ELEMENT moduleinsts (moduleinst)*>
<!ELEMENT ports (port)*>
<!ELEMENT sheets (sheet)*>
<!ELEMENT layers (layer)*>
<!ELEMENT packages (package)*>
<!ELEMENT packages3d (package3d)*>
<!ELEMENT symbols (symbol)*>
<!ELEMENT devicesets (deviceset)*>
<!ELEMENT gates (gate)*>
<!ELEMENT devices (device)*>
<!ELEMENT libraries (library)*>
<!ELEMENT connects (connect)*>
<!ELEMENT packageinstances (packageinstance)*>
<!ELEMENT package3dinstances (package3dinstance)*>
<!ELEMENT technologies (technology)*>
<!ELEMENT attributes (attribute)*>
<!ELEMENT classes (class)*>
<!ELEMENT parts (part)*>
<!ELEMENT instances (instance)*>
<!ELEMENT errors (approved)*>
<!ELEMENT plain (polygon | wire | text | dimension | circle | rectangle | frame | hole)*>
<!ELEMENT autorouter (pass)*>
<!ELEMENT elements (element)*>
<!ELEMENT signals (signal)*>
<!ELEMENT mfgpreviewcolors (mfgpreviewcolor)*>
<!ELEMENT busses (bus)*>
<!ELEMENT nets (net)*>
<!-- ### Miscellaneous objects ############################################ -->
<!ELEMENT setting EMPTY>
<!ATTLIST setting
alwaysvectorfont %Bool; #IMPLIED
verticaltext %VerticalText; "up"
keepoldvectorfont %Bool; "no"
>
<!ELEMENT designrules (description*, param*)>
<!ATTLIST designrules
name %String; #REQUIRED
>
<!ELEMENT grid EMPTY>
<!ATTLIST grid
distance %Real; #IMPLIED
unitdist %GridUnit; #IMPLIED
unit %GridUnit; #IMPLIED
style %GridStyle; "lines"
multiple %Int; "1"
display %Bool; "no"
altdistance %Real; #IMPLIED
altunitdist %GridUnit; #IMPLIED
altunit %GridUnit; #IMPLIED
>
<!ELEMENT layer EMPTY>
<!ATTLIST layer
number %Layer; #REQUIRED
name %String; #REQUIRED
color %Int; #REQUIRED
fill %Int; #REQUIRED
visible %Bool; "yes"
active %Bool; "yes"
>
<!ELEMENT class (clearance)*>
<!ATTLIST class
number %Class; #REQUIRED
name %String; #REQUIRED
width %Dimension; "0"
drill %Dimension; "0"
>
<!ELEMENT clearance EMPTY>
<!ATTLIST clearance
class %Class; #REQUIRED
value %Dimension; "0"
>
<!ELEMENT description (#PCDATA)>
<!ATTLIST description
language %String; "en"
>
<!ELEMENT param EMPTY>
<!ATTLIST param
name %String; #REQUIRED
value %String; #REQUIRED
>
<!ELEMENT pass (param)*>
<!ATTLIST pass
name %String; #REQUIRED
refer %String; #IMPLIED
active %Bool; "yes"
>
<!ELEMENT approved EMPTY>
<!ATTLIST approved
hash %String; #REQUIRED
>
<!ELEMENT fusionsync EMPTY>
<!ATTLIST fusionsync
huburn %String; #REQUIRED
projecturn %String; #REQUIRED
f3durn %String; #REQUIRED
pcbguid %String; #REQUIRED
lastsyncedchangeguid %String; #REQUIRED
lastpulledtime %String; #REQUIRED
>