forked from open-dis/xmlpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DIS2012.xsd
5431 lines (5431 loc) · 288 KB
/
DIS2012.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xalan="http://xml.apache.org/xslt" elementFormDefault="qualified" version="1.0">
<xs:element name="AcousticEmitter" abstract="false">
<xs:annotation>
<xs:appinfo>information about a specific UA emitter. Section 6.2.2.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="acousticFunction" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>The function of the acoustic system</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="acousticIDNumber" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>The UA emitter identification number relative to a specific system</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="acousticSystemName" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>the system for a particular UA emitter, and an enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="AggregateIdentifier" abstract="false">
<xs:annotation>
<xs:appinfo>The unique designation of each aggrgate in an exercise is specified by an aggregate identifier record. The aggregate ID is not an entity and shall not be treated as such. Section 6.2.3.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="aggregateID" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>the aggregate ID</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="AggregateMarking" abstract="false">
<xs:annotation>
<xs:appinfo>Specifies the character set used in the first byte, followed by up to 31 characters of text data. Section 6.2.4.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="characters" type="xs:string">
<xs:annotation>
<xs:appinfo>The characters</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="characterSet" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>The character set</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="AggregateType" abstract="false">
<xs:annotation>
<xs:appinfo>Identifies the type and organization of an aggregate. Section 6.2.5</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="aggregateKind" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Grouping criterion used to group the aggregate. Enumeration from EBV document</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="category" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>category of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="country" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>country to which the design of the entity is attributed</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="domain" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Domain of entity (air, surface, subsurface, space, etc) Zero means domain does not apply.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="extra" type="xs:unsignedByte"/>
<xs:attribute name="specificInfo" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>specific info based on subcategory field. specific is a reserved word in sql.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="subcategory" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>subcategory of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="AngularVelocityVector" abstract="false">
<xs:annotation>
<xs:appinfo>Angular velocity measured in radians per second out each of the entity's own coordinate axes. Order of measurement is angular velocity around the x, y, and z axis of the entity. The positive direction is determined by the right hand rule. Section 6.2.7</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="x" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>velocity about the x axis</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="y" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>velocity about the y axis</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="z" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>velocity about the zaxis</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="AntennaLocation" abstract="false">
<xs:annotation>
<xs:appinfo>Location of the radiating portion of the antenna, specified in world coordinates and entity coordinates. Section 6.2.8</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="antennaLocation" type="xs:string">
<xs:annotation>
<xs:appinfo>Location of the radiating portion of the antenna in world coordinates</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="relativeAntennaLocation" type="xs:string">
<xs:annotation>
<xs:appinfo>Location of the radiating portion of the antenna in entity coordinates</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="BeamAntennaPattern" abstract="false">
<xs:annotation>
<xs:appinfo>Used when the antenna pattern type field has a value of 1. Specifies the direction, pattern, and polarization of radiation from an antenna. Section 6.2.9.2</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="azimuthBeamwidth" type="xs:float" default="0"/>
<xs:attribute name="beamDirection" type="xs:string">
<xs:annotation>
<xs:appinfo>The rotation that transforms the reference coordinate sytem into the beam coordinate system. Either world coordinates or entity coordinates may be used as the reference coordinate system, as specified by the reference system field of the antenna pattern record.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="elevationBeamwidth" type="xs:float" default="0"/>
<xs:attribute name="ex" type="xs:float" default="0.0">
<xs:annotation>
<xs:appinfo>This field shall specify the magnitude of the X-component (in beam coordinates) of the Electri- cal field at some arbitrary single point in the main beam and in the far field of the antenna.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ez" type="xs:float" default="0.0">
<xs:annotation>
<xs:appinfo>This field shall specify the magnitude of the Z-component (in beam coordinates) of the Electrical field at some arbitrary single point in the main beam and in the far field of the antenna.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding1" type="xs:unsignedByte" default="0"/>
<xs:attribute name="padding2" type="xs:unsignedShort" default="0"/>
<xs:attribute name="padding3" type="xs:unsignedInt" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="phase" type="xs:float" default="0.0">
<xs:annotation>
<xs:appinfo>This field shall specify the phase angle between EZ and EX in radians. If fully omni-direc- tional antenna is modeled using beam pattern type one, the omni-directional antenna shall be repre- sented by beam direction Euler angles psi, theta, and phi of zero, an azimuth beamwidth of 2PI, and an elevation beamwidth of PI</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="referenceSystem" type="xs:unsignedByte" default="0"/>
</xs:complexType>
</xs:element>
<xs:element name="Association" abstract="false">
<xs:annotation>
<xs:appinfo>An entity's associations with other entities and/or locations. For each association, this record shall specify the type of the association, the associated entity's EntityID and/or the associated location's world coordinates. This record may be used (optionally) in a transfer transaction to send internal state data from the divesting simulation to the acquiring simulation (see 5.9.4). This record may also be used for other purposes. Section 6.2.9</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="associationType" type="xs:unsignedByte"/>
<xs:attribute name="padding4" type="xs:unsignedByte"/>
</xs:complexType>
</xs:element>
<xs:element name="Attribute" abstract="false">
<xs:annotation>
<xs:appinfo>Used to convey information for one or more attributes. Attributes conform to the standard variable record format of 6.2.82. Section 6.2.10. NOT COMPLETE</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="recordLength" type="xs:unsignedShort"/>
<xs:attribute name="recordSpecificFields" type="xs:unsignedLong"/>
<xs:attribute name="recordType" type="xs:unsignedInt"/>
</xs:complexType>
</xs:element>
<xs:element name="BeamData" abstract="false">
<xs:annotation>
<xs:appinfo>Describes the scan volue of an emitter beam. Section 6.2.11.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="beamAzimuthCenter" type="xs:float">
<xs:annotation>
<xs:appinfo>Specifies the beam azimuth an elevation centers and corresponding half-angles to describe the scan volume</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamAzimuthSweep" type="xs:float">
<xs:annotation>
<xs:appinfo>Specifies the beam azimuth sweep to determine scan volume</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamElevationCenter" type="xs:float">
<xs:annotation>
<xs:appinfo>Specifies the beam elevation center to determine scan volume</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamElevationSweep" type="xs:float">
<xs:annotation>
<xs:appinfo>Specifies the beam elevation sweep to determine scan volume</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamSweepSync" type="xs:float">
<xs:annotation>
<xs:appinfo>allows receiver to synchronize its regenerated scan pattern to that of the emmitter. Specifies the percentage of time a scan is through its pattern from its origion.</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="ChangeOptions" abstract="false">
<xs:annotation>
<xs:appinfo>This is wrong and breaks serialization. See section 6.2.13 aka B.2.41</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="BeamStatus" abstract="false">
<xs:annotation>
<xs:appinfo>Information related to the status of a beam. This is contained in the beam status field of the electromagnitec emission PDU. The first bit determines whether the beam is active (0) or deactivated (1). Section 6.2.12.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="beamState" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>First bit zero means beam is active, first bit = 1 means deactivated. The rest is padding.</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="ClockTime" abstract="false">
<xs:annotation>
<xs:appinfo>Time measurements that exceed one hour are represented by this record. The first field is the hours since the unix epoch (Jan 1 1970, used by most Unix systems and java) and the second field the timestamp units since the top of the hour. Section 6.2.14</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="hour" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Hours in UTC</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="timePastHour" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Time past the hour</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DirectedEnergyDamage" abstract="false">
<xs:annotation>
<xs:appinfo>Damage sustained by an entity due to directed energy. Location of the damage based on a relative x,y,z location from the center of the entity. Section 6.2.15.2</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="componentDamageStatus" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="componentIdentification" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="componentVisualDamageStatus" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="componentVisualSmokeColor" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="damageDiameter" type="xs:float">
<xs:annotation>
<xs:appinfo>Size of damaged area, in meters.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="damageLocation" type="xs:string">
<xs:annotation>
<xs:appinfo>location of damage, relative to center of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fireEventID" type="xs:string">
<xs:annotation>
<xs:appinfo>For any component damage resulting this field shall be set to the fire event ID from that PDU.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>padding.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding2" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="recordLength" type="xs:unsignedShort" default="40">
<xs:annotation>
<xs:appinfo>DE Record Length (bytes).</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="recordType" type="xs:unsignedInt" default="4500">
<xs:annotation>
<xs:appinfo>DE Record Type.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temperature" type="xs:float" default="-273.15">
<xs:annotation>
<xs:appinfo>average temp of the damaged area, in degrees celsius. If firing entitty does not model this, use a value of -273.15</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DataFilterRecord" abstract="false">
<xs:annotation>
<xs:appinfo>identify which of the optional data fields are contained in the Minefield Data PDU or requested in the Minefield Query PDU. This is a 32-bit record. For each field, true denotes that the data is requested or present and false denotes that the data is neither requested nor present. Section 6.2.16</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="bitFlags" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Bitflags field</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="UnsignedDISInteger" abstract="false">
<xs:annotation>
<xs:appinfo>container class not in specification</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="val" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>unsigned integer</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DataQueryDatumSpecification" abstract="false">
<xs:annotation>
<xs:appinfo>List of fixed and variable datum records. Section 6.2.17</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="fixedDatumIDList" type="xs:string">
<xs:annotation>
<xs:appinfo>variable length list fixed datum IDs</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfFixedDatums" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Number of fixed datums</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfVariableDatums" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Number of variable datums</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="variableDatumIDList" type="xs:string">
<xs:annotation>
<xs:appinfo>variable length list variable datum IDs</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DatumSpecification" abstract="false">
<xs:annotation>
<xs:appinfo>List of fixed and variable datum records. Section 6.2.18</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="fixedDatumIDList" type="xs:string">
<xs:annotation>
<xs:appinfo>variable length list fixed datums</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfFixedDatums" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Number of fixed datums</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfVariableDatums" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Number of variable datums</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="variableDatumIDList" type="xs:string">
<xs:annotation>
<xs:appinfo>variable length list variable datums</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="MunitionDescriptor" abstract="false">
<xs:annotation>
<xs:appinfo>Represents the firing or detonation of a munition. Section 6.2.19.2</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="fuse" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>type of fuse used enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="quantity" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>how many of the munition were fired</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="rate" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>rate at which the munition was fired</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="warhead" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>type of warhead enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="ExplosionDescriptor" abstract="false">
<xs:annotation>
<xs:appinfo>Explosion of a non-munition. Section 6.2.19.3</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="explodingObject" type="xs:string">
<xs:annotation>
<xs:appinfo>Type of the object that exploded. See 6.2.30</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="explosiveForce" type="xs:float">
<xs:annotation>
<xs:appinfo>Force of explosion, in equivalent KG of TNT</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="explosiveMaterial" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>Material that exploded. Can be grain dust, tnt, gasoline, etc. Enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="ExpendableDescriptor" abstract="false">
<xs:annotation>
<xs:appinfo>Burst of chaff or expendible device. Section 6.2.19.4</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="expendableType" type="xs:string">
<xs:annotation>
<xs:appinfo>Type of the object that exploded</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:long" default="0">
<xs:annotation>
<xs:appinfo>Padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DirectedEnergyAreaAimpoint" abstract="false">
<xs:annotation>
<xs:appinfo>DE Precision Aimpoint Record. NOT COMPLETE. Section 6.2.20.2</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="beamAntennaParameterList" type="xs:string">
<xs:annotation>
<xs:appinfo>list of beam antenna records. See 6.2.9.2</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamAntennaPatternRecordCount" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>Number of beam antenna pattern records</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="directedEnergyTargetEnergyDepositionRecordCount" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>Number of DE target energy depositon records</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="directedEnergyTargetEnergyDepositionRecordList" type="xs:string">
<xs:annotation>
<xs:appinfo>list of DE target deposition records. See 6.2.21.4</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>Padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="recordLength" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>Length of Record</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="recordType" type="xs:unsignedInt" default="4001">
<xs:annotation>
<xs:appinfo>Type of Record enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DirectedEnergyPrecisionAimpoint" abstract="false">
<xs:annotation>
<xs:appinfo>DE Precision Aimpoint Record. Section 6.2.20.3</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="beamSpotCrossSectionOrientationAngle" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>Beam Spot Cross Section Orientation Angle.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamSpotCrossSectionSemiMajorAxis" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>Beam Spot Cross Section Semi-Major Axis.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamSpotCrossSectionSemiMinorAxis" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>Beam Spot Cross Section Semi-Major Axis.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="beamSpotType" type="xs:unsignedByte" default="0">
<xs:annotation>
<xs:appinfo>Spot Shape ENUM.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>Padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding2" type="xs:unsignedInt" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="peakIrradiance" type="xs:float" default="0">
<xs:annotation>
<xs:appinfo>Peak irradiance</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="recordLength" type="xs:unsignedShort" default="88">
<xs:annotation>
<xs:appinfo>Length of Record</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="recordType" type="xs:unsignedInt" default="4000">
<xs:annotation>
<xs:appinfo>Type of Record</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetComponentID" type="xs:unsignedByte" default="0">
<xs:annotation>
<xs:appinfo>Target Component ID ENUM, same as in DamageDescriptionRecord.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetEntityID" type="xs:string">
<xs:annotation>
<xs:appinfo>Unique ID of the target entity.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetSpotAcceleration" type="xs:string">
<xs:annotation>
<xs:appinfo>Acceleration (meters/sec/sec) of Target Spot.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetSpotEntityLocation" type="xs:string">
<xs:annotation>
<xs:appinfo>Position (meters) of Target Spot relative to Entity Position.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetSpotLocation" type="xs:string">
<xs:annotation>
<xs:appinfo>Position of Target Spot in World Coordinates.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetSpotVelocity" type="xs:string">
<xs:annotation>
<xs:appinfo>Velocity (meters/sec) of Target Spot.</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="DirectedEnergyTargetEnergyDeposition" abstract="false">
<xs:annotation>
<xs:appinfo>DE energy depostion properties for a target entity. Section 6.2.20.4</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="padding" type="xs:unsignedShort" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="peakIrradiance" type="xs:float">
<xs:annotation>
<xs:appinfo>Peak irrandiance</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="targetEntityID" type="xs:string">
<xs:annotation>
<xs:appinfo>Unique ID of the target entity.</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="BlankingSector" abstract="false">
<xs:annotation>
<xs:appinfo>The Blanking Sector attribute record may be used to convey persistent areas within a scan volume where emitter power for a specific active emitter beam is reduced to an insignificant value. Section 6.2.21.2</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="beamNumber" type="xs:unsignedByte"/>
<xs:attribute name="emitterNumber" type="xs:unsignedByte"/>
<xs:attribute name="leftAzimuth" type="xs:float"/>
<xs:attribute name="lowerElevation" type="xs:float"/>
<xs:attribute name="padding" type="xs:unsignedShort" default="0"/>
<xs:attribute name="padding2" type="xs:unsignedByte" default="0"/>
<xs:attribute name="padding3" type="xs:int" default="0"/>
<xs:attribute name="padding4" type="xs:int" default="0"/>
<xs:attribute name="recordLength" type="xs:unsignedShort" default="40"/>
<xs:attribute name="recordType" type="xs:int" default="3500"/>
<xs:attribute name="residualPower" type="xs:float"/>
<xs:attribute name="rightAzimuth" type="xs:float"/>
<xs:attribute name="stateIndicator" type="xs:unsignedByte"/>
<xs:attribute name="upperElevation" type="xs:float"/>
</xs:complexType>
</xs:element>
<xs:element name="AngleDeception" abstract="false">
<xs:annotation>
<xs:appinfo>The Angle Deception attribute record may be used to communicate discrete values that are associated with angle deception jamming that cannot be referenced to an emitter mode. The values provided in the record records (provided in the associated Electromagnetic Emission PDU). (The victim radar beams are those that are targeted by the jammer.) Section 6.2.21.2.2</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="azimuthOffset" type="xs:float"/>
<xs:attribute name="azimuthPullAcceleration" type="xs:float"/>
<xs:attribute name="azimuthPullRate" type="xs:float"/>
<xs:attribute name="azimuthWidth" type="xs:float"/>
<xs:attribute name="beamNumber" type="xs:unsignedByte"/>
<xs:attribute name="elevationOffset" type="xs:float"/>
<xs:attribute name="elevationPullAcceleration" type="xs:float"/>
<xs:attribute name="elevationPullRate" type="xs:float"/>
<xs:attribute name="elevationWidth" type="xs:float"/>
<xs:attribute name="emitterNumber" type="xs:unsignedByte"/>
<xs:attribute name="padding" type="xs:unsignedShort" default="0"/>
<xs:attribute name="padding2" type="xs:unsignedByte" default="0"/>
<xs:attribute name="padding3" type="xs:unsignedInt" default="0"/>
<xs:attribute name="recordLength" type="xs:unsignedShort" default="48"/>
<xs:attribute name="recordType" type="xs:unsignedInt" default="3501"/>
<xs:attribute name="stateIndicator" type="xs:unsignedByte"/>
</xs:complexType>
</xs:element>
<xs:element name="FalseTargetsAttribute" abstract="false">
<xs:annotation>
<xs:appinfo>The False Targets attribute record shall be used to communicate discrete values that are associated with false targets jamming that cannot be referenced to an emitter mode. The values provided in the False Targets attri- bute record shall be considered valid only for the victim radar beams listed in the jamming beam's Track/Jam Data records (provided in the associated Electromagnetic Emission PDU). Section 6.2.21.3</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="beamNumber" type="xs:unsignedByte"/>
<xs:attribute name="echoSpacing" type="xs:float"/>
<xs:attribute name="emitterNumber" type="xs:unsignedByte"/>
<xs:attribute name="falseTargetCount" type="xs:unsignedShort"/>
<xs:attribute name="keepTime" type="xs:float"/>
<xs:attribute name="maximumWalkDistance" type="xs:float"/>
<xs:attribute name="padding" type="xs:unsignedShort" default="0"/>
<xs:attribute name="padding2" type="xs:unsignedByte" default="0"/>
<xs:attribute name="recordLength" type="xs:unsignedShort" default="40"/>
<xs:attribute name="recordType" type="xs:unsignedInt" default="3502"/>
<xs:attribute name="stateIndicator" type="xs:unsignedByte"/>
<xs:attribute name="walkAcceleration" type="xs:float"/>
<xs:attribute name="walkSpeed" type="xs:float"/>
</xs:complexType>
</xs:element>
<xs:element name="EEFundamentalParameterData" abstract="false">
<xs:annotation>
<xs:appinfo>Contains electromagnetic emmission regeneration parameters that are variable throught a scenario. Section 6.2.22.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="effectiveRadiatedPower" type="xs:float">
<xs:annotation>
<xs:appinfo>Effective radiated power for the emission in DdBm. For a radar noise jammer, indicates the peak of the transmitted power.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="frequency" type="xs:float">
<xs:annotation>
<xs:appinfo>center frequency of the emission in hertz.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="frequencyRange" type="xs:float">
<xs:annotation>
<xs:appinfo>Bandwidth of the frequencies corresponding to the fequency field.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="pulseRepetitionFrequency" type="xs:float">
<xs:annotation>
<xs:appinfo>Average repetition frequency of the emission in hertz.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="pulseWidth" type="xs:float">
<xs:annotation>
<xs:appinfo>Average pulse width of the emission in microseconds.</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EmitterSystem" abstract="false">
<xs:annotation>
<xs:appinfo>This field shall specify information about a particular emitter system. Section 6.2.23.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="emitterFunction" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>function of the emitter, 8 bit enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="emitterIDNumber" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>emitter ID, 8 bit enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="emitterName" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>Name of the emitter, 16 bit enumeration</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EngineFuel" abstract="false">
<xs:annotation>
<xs:appinfo>Information about an entity's engine fuel. Section 6.2.24.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="fuelLocation" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Location of fuel as related to entity. See section 14 of EBV document</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fuelMeasurementUnits" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Units in which the fuel is measured</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fuelQuantity" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Fuel quantity, units specified by next field</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fuelType" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Type of fuel</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedByte" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EngineFuelReload" abstract="false">
<xs:annotation>
<xs:appinfo>For each type or location of engine fuell, this record specifies the type, location, fuel measurement units, and reload quantity and maximum quantity. Section 6.2.25.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="fuelLocation" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>fuel location as related to the entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fuelMeasurmentUnits" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Units of measure</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maximumQuantity" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>maximum quantity of fuel loaded</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maximumQuantityReloadTime" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>seconds normally required to to reload maximum qty</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedByte" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="standardQuantity" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>standard quantity of fuel loaded</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="standardQuantityReloadTime" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>seconds normally required to to reload standard qty</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EntityIdentifier" abstract="false">
<xs:annotation>
<xs:appinfo>Entity Identifier. Unique ID for entities in the world. Consists of an simulation address and a entity number. Section 6.2.28.</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="entityNumber" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>Entity number</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="simulationAddress" type="xs:string">
<xs:annotation>
<xs:appinfo>Site and application IDs</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EntityID" abstract="false">
<xs:annotation>
<xs:appinfo>more laconically named EntityIdentifier</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="applicationID" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>application number ID</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="entityID" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>Entity number ID</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="siteID" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>Site ID</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EntityMarking" abstract="false">
<xs:annotation>
<xs:appinfo>Specifies the character set used inthe first byte, followed by 11 characters of text data. Section 6.29</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="characters" type="xs:string">
<xs:annotation>
<xs:appinfo>The characters</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="characterSet" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>The character set</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EntityType" abstract="false">
<xs:annotation>
<xs:appinfo>Identifies the type of Entity</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="category" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>category of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="country" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>country to which the design of the entity is attributed</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="domain" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Domain of entity (air, surface, subsurface, space, etc)</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="entityKind" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Kind of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="extra" type="xs:unsignedByte"/>
<xs:attribute name="specific" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>specific info based on subcategory field. Renamed from specific because that is a reserved word in SQL.</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="subcategory" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>subcategory of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EnvironmentGeneral" abstract="false">
<xs:annotation>
<xs:appinfo>Information about a geometry, a state associated with a geometry, a bounding volume, or an associated entity ID. NOTE: this class requires hand coding. 6.2.31</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="environmentType" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>Record type</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="geometry" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Geometry or state record</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="index" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Identify the sequentially numbered record index</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="length" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>length, in bits</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding1" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding2" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>padding to bring the total size up to a 64 bit boundry</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="Environment" abstract="false">
<xs:annotation>
<xs:appinfo>Incomplete environment record; requires hand coding to fix. Section 6.2.31.1</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="environmentType" type="xs:unsignedInt">
<xs:annotation>
<xs:appinfo>type</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="index" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>identifies the sequntially numbered record index</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="length" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>length, in bits, of the record</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="padding" type="xs:unsignedByte" default="0">
<xs:annotation>
<xs:appinfo>padding</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="EnvironmentType" abstract="false">
<xs:annotation>
<xs:appinfo>Description of environmental data in environmental process and gridded data PDUs. Section 6.2.32</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:attribute name="category" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>category of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="domain" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Domain of entity (air, surface, subsurface, space, etc)</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="entityClass" type="xs:unsignedShort">
<xs:annotation>
<xs:appinfo>class of environmental entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="entityKind" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>Kind of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="extra" type="xs:unsignedByte"/>
<xs:attribute name="specific" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>specific info based on subcategory field</xs:appinfo>
</xs:annotation>
</xs:attribute>
<xs:attribute name="subcategory" type="xs:unsignedByte">
<xs:annotation>
<xs:appinfo>subcategory of entity</xs:appinfo>
</xs:annotation>
</xs:attribute>