-
Notifications
You must be signed in to change notification settings - Fork 9
/
Types.bsd
executable file
·2274 lines (2034 loc) · 131 KB
/
Types.bsd
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
<opc:TypeDictionary
xmlns:opc="http://opcfoundation.org/BinarySchema/"
xmlns:ua="http://opcfoundation.org/UA/2008/02/Types.bsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tns="http://opcfoundation.org/UA/"
DefaultByteOrder="LittleEndian"
TargetNamespace="http://opcfoundation.org/UA/"
>
<opc:Import Namespace="http://opcfoundation.org/BinarySchema/" />
<opc:StructuredType Name="XmlElement">
<opc:Documentation>An XML element encoded as a UTF-8 string.</opc:Documentation>
<opc:Field Name="Length" TypeName="opc:Int32" />
<opc:Field Name="Value" TypeName="opc:Char" LengthField="Length" />
</opc:StructuredType>
<opc:EnumeratedType Name="NodeIdType" LengthInBits="7">
<opc:Documentation>The possible encodings for a NodeId value.</opc:Documentation>
<opc:EnumeratedValue Name="TwoByte" Value="0" />
<opc:EnumeratedValue Name="FourByte" Value="1" />
<opc:EnumeratedValue Name="Numeric" Value="2" />
<opc:EnumeratedValue Name="String" Value="3" />
<opc:EnumeratedValue Name="Uri" Value="4" />
<opc:EnumeratedValue Name="Guid" Value="5" />
<opc:EnumeratedValue Name="ByteString" Value="6" />
</opc:EnumeratedType>
<opc:StructuredType Name="TwoByteNodeId">
<opc:Field Name="Identifier" TypeName="opc:Byte" />
</opc:StructuredType>
<opc:StructuredType Name="FourByteNodeId">
<opc:Field Name="NamespaceIndex" TypeName="opc:Byte" />
<opc:Field Name="Identifier" TypeName="opc:UInt16" />
</opc:StructuredType>
<opc:StructuredType Name="NumericNodeId">
<opc:Field Name="NamespaceIndex" TypeName="opc:Int32" />
<opc:Field Name="Identifier" TypeName="opc:Int16" />
</opc:StructuredType>
<opc:StructuredType Name="StringNodeId">
<opc:Field Name="NamespaceIndex" TypeName="opc:Int32" />
<opc:Field Name="Identifier" TypeName="opc:CharArray" />
</opc:StructuredType>
<opc:StructuredType Name="UriNodeId">
<opc:Field Name="Identifier" TypeName="opc:CharArray" />
</opc:StructuredType>
<opc:StructuredType Name="GuidNodeId">
<opc:Field Name="Identifier" TypeName="opc:Guid" />
</opc:StructuredType>
<opc:StructuredType Name="ByteStringNodeId">
<opc:Field Name="NamespaceIndex" TypeName="opc:Int32" />
<opc:Field Name="Identifier" TypeName="opc:ByteString" />
</opc:StructuredType>
<opc:StructuredType Name="NodeId">
<opc:Documentation>An identifier for a node in a UA server address space.</opc:Documentation>
<opc:Field Name="NodeIdType" TypeName="ua:NodeIdType" />
<opc:Field Name="Reserved1" TypeName="opc:Bit" />
<opc:Field Name="TwoByte" TypeName="ua:TwoByteNodeId" SwitchField="NodeIdType" SwitchValue="0" />
<opc:Field Name="FourByte" TypeName="ua:FourByteNodeId" SwitchField="NodeIdType" SwitchValue="1" />
<opc:Field Name="Numeric" TypeName="ua:NumericNodeId" SwitchField="NodeIdType" SwitchValue="2" />
<opc:Field Name="String" TypeName="ua:StringNodeId" SwitchField="NodeIdType" SwitchValue="3" />
<opc:Field Name="Uri" TypeName="ua:UriNodeId" SwitchField="NodeIdType" SwitchValue="4" />
<opc:Field Name="Guid" TypeName="ua:GuidNodeId" SwitchField="NodeIdType" SwitchValue="5" />
<opc:Field Name="ByteString" TypeName="ua:ByteStringNodeId" SwitchField="NodeIdType" SwitchValue="6" />
</opc:StructuredType>
<opc:StructuredType Name="ExpandedNodeId">
<opc:Documentation>An identifier for a node in a UA server address space qualified with a complete namespace string.</opc:Documentation>
<opc:Field Name="NodeIdType" TypeName="ua:NodeIdType" />
<opc:Field Name="NamespaceURISpecified" TypeName="opc:Bit" />
<opc:Field Name="TwoByte" TypeName="ua:TwoByteNodeId" SwitchField="NodeIdType" SwitchValue="0" />
<opc:Field Name="FourByte" TypeName="ua:FourByteNodeId" SwitchField="NodeIdType" SwitchValue="1" />
<opc:Field Name="Numeric" TypeName="ua:NumericNodeId" SwitchField="NodeIdType" SwitchValue="2" />
<opc:Field Name="String" TypeName="ua:StringNodeId" SwitchField="NodeIdType" SwitchValue="3" />
<opc:Field Name="Uri" TypeName="ua:UriNodeId" SwitchField="NodeIdType" SwitchValue="4" />
<opc:Field Name="Guid" TypeName="ua:GuidNodeId" SwitchField="NodeIdType" SwitchValue="5" />
<opc:Field Name="ByteString" TypeName="ua:ByteStringNodeId" SwitchField="NodeIdType" SwitchValue="6" />
<opc:Field Name="NamespaceURI" TypeName="opc:CharArray" SwitchField="NamespaceURISpecified"/>
</opc:StructuredType>
<opc:OpaqueType Name="StatusCode" LengthInBits="32" ByteOrderSignificant="true">
<opc:Documentation>A 32-bit status code value.</opc:Documentation>
</opc:OpaqueType>
<opc:StructuredType Name="DiagnosticInfo">
<opc:Documentation>A recursive structure containing diagnostic information associated with a status code.</opc:Documentation>
<opc:Field Name="SymbolicIdSpecified" TypeName="opc:Bit" />
<opc:Field Name="NamespaceURISpecified" TypeName="opc:Bit" />
<opc:Field Name="LocalizedTextSpecified" TypeName="opc:Bit" />
<opc:Field Name="AdditionalInfoSpecified" TypeName="opc:Bit" />
<opc:Field Name="InnerStatusCodeSpecified" TypeName="opc:Bit" />
<opc:Field Name="InnerDiagnosticInfoSpecified" TypeName="opc:Bit" />
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="2" />
<opc:Field Name="SymbolicId" TypeName="opc:Int32" SwitchField="SymbolicIdSpecified" />
<opc:Field Name="NamespaceURI" TypeName="opc:Int32" SwitchField="NamespaceURISpecified" />
<opc:Field Name="LocalizedText" TypeName="opc:Int32" SwitchField="LocalizedTextSpecified" />
<opc:Field Name="AdditionalInfo" TypeName="opc:CharArray" SwitchField="AdditionalInfoSpecified" />
<opc:Field Name="InnerStatusCode" TypeName="ua:StatusCode" SwitchField="InnerStatusCodeSpecified" />
<opc:Field Name="InnerDiagnosticInfo" TypeName="ua:DiagnosticInfo" SwitchField="InnerDiagnosticInfoSpecified" />
</opc:StructuredType>
<opc:StructuredType Name="QualifiedName">
<opc:Documentation>A string qualified with a namespace index.</opc:Documentation>
<opc:Field Name="NamespaceIndex" TypeName="opc:Int32" />
<opc:Field Name="Name" TypeName="opc:CharArray" />
</opc:StructuredType>
<opc:StructuredType Name="LocalizedText">
<opc:Documentation>A string qualified with a namespace index.</opc:Documentation>
<opc:Field Name="LocaleSpecified" TypeName="opc:Bit" />
<opc:Field Name="TextSpecified" TypeName="opc:Bit" />
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="6" />
<opc:Field Name="Locale" TypeName="opc:CharArray" SwitchField="LocaleSpecified" />
<opc:Field Name="Text" TypeName="opc:CharArray" SwitchField="TextSpecified" />
</opc:StructuredType>
<opc:StructuredType Name="DataValue">
<opc:Documentation>A value with an associated timestamp, and quality.</opc:Documentation>
<opc:Field Name="ValueSpecified" TypeName="opc:Bit" />
<opc:Field Name="StatusCodeSpecified" TypeName="opc:Bit" />
<opc:Field Name="SourceTimestampSpecified" TypeName="opc:Bit" />
<opc:Field Name="ServerTimestampSpecified" TypeName="opc:Bit" />
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="28" />
<opc:Field Name="Value" TypeName="ua:Variant" SwitchField="ValueSpecified" />
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" SwitchField="StatusCodeSpecified" />
<opc:Field Name="SourceTimestamp" TypeName="opc:DateTime" SwitchField="SourceTimestampSpecified" />
<opc:Field Name="ServerTimestamp" TypeName="opc:DateTime" SwitchField="ServerTimestampSpecified" />
</opc:StructuredType>
<opc:StructuredType Name="ExtensionObject">
<opc:Documentation>A serialized object prefixed with its data type identifier.</opc:Documentation>
<opc:Field Name="TypeIdSpecified" TypeName="opc:Bit" />
<opc:Field Name="BinaryBody" TypeName="opc:Bit" />
<opc:Field Name="XmlBody" TypeName="opc:Bit" />
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="5" />
<opc:Field Name="TypeId" TypeName="ua:ExpandedNodeId" SwitchField="TypeIdSpecified" />
<opc:Field Name="BodyLength" TypeName="opc:Int32" />
<opc:Field Name="Body" TypeName="opc:Byte" LengthField="BodyLength" />
</opc:StructuredType>
<opc:StructuredType Name="Variant">
<opc:Documentation>A union of several types.</opc:Documentation>
<opc:Field Name="VariantType" TypeName="opc:Bit" Length="7" />
<opc:Field Name="ArrayLengthSpecified" TypeName="opc:Bit" Length="1"/>
<opc:Field Name="ArrayLength" TypeName="opc:Int32" SwitchField="ArrayLengthSpecified" />
<opc:Field Name="Boolean" TypeName="opc:Boolean" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="1" />
<opc:Field Name="SByte" TypeName="opc:SByte" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="2" />
<opc:Field Name="Byte" TypeName="opc:Byte" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="3" />
<opc:Field Name="Int16" TypeName="opc:Int16" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="4" />
<opc:Field Name="UInt16" TypeName="opc:UInt16" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="5" />
<opc:Field Name="Int32" TypeName="opc:Int32" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="6" />
<opc:Field Name="UInt32" TypeName="opc:UInt32" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="7" />
<opc:Field Name="Int64" TypeName="opc:Int64" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="8" />
<opc:Field Name="UInt64" TypeName="opc:UInt64" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="9" />
<opc:Field Name="Float" TypeName="opc:Float" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="10" />
<opc:Field Name="Double" TypeName="opc:Double" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="11" />
<opc:Field Name="String" TypeName="opc:String" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="12" />
<opc:Field Name="DateTime" TypeName="opc:DateTime" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="13" />
<opc:Field Name="Guid" TypeName="opc:Guid" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="14" />
<opc:Field Name="ByteString" TypeName="opc:ByteString" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="15" />
<opc:Field Name="XmlElement" TypeName="ua:XmlElement" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="16" />
<opc:Field Name="NodeId" TypeName="ua:NodeId" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="17" />
<opc:Field Name="ExpandedNodeId" TypeName="ua:ExpandedNodeId" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="18" />
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="19" />
<opc:Field Name="DiagnosticInfo" TypeName="ua:DiagnosticInfo" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="20" />
<opc:Field Name="QualifiedName" TypeName="ua:QualifiedName" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="21" />
<opc:Field Name="LocalizedText" TypeName="ua:LocalizedText" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="22" />
<opc:Field Name="ExtensionObject" TypeName="ua:ExtensionObject" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="23" />
<opc:Field Name="DataValue" TypeName="ua:DataValue" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="24" />
<opc:Field Name="Variant" TypeName="ua:Variant" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="25" />
</opc:StructuredType>
<opc:StructuredType Name="ActivateSessionRequest">
<opc:Documentation>A description for the ActivateSessionRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="ClientSignature" TypeName="tns:SignatureData" />
<opc:Field Name="NoOfClientSoftwareCertificates" TypeName="opc:Int32" />
<opc:Field Name="ClientSoftwareCertificates" TypeName="tns:SignedSoftwareCertificate" LengthField="NoOfClientSoftwareCertificates" />
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
<opc:Field Name="UserIdentityToken" TypeName="ua:ExtensionObject" />
<opc:Field Name="UserTokenSignature" TypeName="tns:SignatureData" />
</opc:StructuredType>
<opc:StructuredType Name="ActivateSessionResponse">
<opc:Documentation>A description for the ActivateSessionResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="ServerNonce" TypeName="opc:ByteString" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="AddNodesItem">
<opc:Documentation>A description for the AddNodesItem DataType.</opc:Documentation>
<opc:Field Name="ParentNodeId" TypeName="ua:ExpandedNodeId" />
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
<opc:Field Name="RequestedNewNodeId" TypeName="ua:ExpandedNodeId" />
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" />
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" />
<opc:Field Name="NodeAttributes" TypeName="ua:ExtensionObject" />
<opc:Field Name="TypeDefinition" TypeName="ua:ExpandedNodeId" />
</opc:StructuredType>
<opc:StructuredType Name="AddNodesRequest">
<opc:Documentation>A description for the AddNodesRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="NoOfNodesToAdd" TypeName="opc:Int32" />
<opc:Field Name="NodesToAdd" TypeName="tns:AddNodesItem" LengthField="NoOfNodesToAdd" />
</opc:StructuredType>
<opc:StructuredType Name="AddNodesResponse">
<opc:Documentation>A description for the AddNodesResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="tns:AddNodesResult" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="AddNodesResult">
<opc:Documentation>A description for the AddNodesResult DataType.</opc:Documentation>
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
<opc:Field Name="AddedNodeId" TypeName="ua:NodeId" />
</opc:StructuredType>
<opc:StructuredType Name="AddReferencesItem">
<opc:Documentation>A description for the AddReferencesItem DataType.</opc:Documentation>
<opc:Field Name="SourceNodeId" TypeName="ua:NodeId" />
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
<opc:Field Name="IsForward" TypeName="opc:Boolean" />
<opc:Field Name="TargetServerUri" TypeName="opc:String" />
<opc:Field Name="TargetNodeId" TypeName="ua:ExpandedNodeId" />
<opc:Field Name="TargetNodeClass" TypeName="tns:NodeClass" />
</opc:StructuredType>
<opc:StructuredType Name="AddReferencesRequest">
<opc:Documentation>A description for the AddReferencesRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="NoOfReferencesToAdd" TypeName="opc:Int32" />
<opc:Field Name="ReferencesToAdd" TypeName="tns:AddReferencesItem" LengthField="NoOfReferencesToAdd" />
</opc:StructuredType>
<opc:StructuredType Name="AddReferencesResponse">
<opc:Documentation>A description for the AddReferencesResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="AggregateFilter">
<opc:Documentation>A description for the AggregateFilter DataType.</opc:Documentation>
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
<opc:Field Name="AggregateType" TypeName="ua:NodeId" />
<opc:Field Name="RawDataSamplingInterval" TypeName="opc:Double" />
</opc:StructuredType>
<opc:StructuredType Name="AggregateFilterResult">
<opc:Documentation>A description for the AggregateFilterResult DataType.</opc:Documentation>
<opc:Field Name="RevisedStartTime" TypeName="opc:DateTime" />
<opc:Field Name="RevisedRawDataSamplingInterval" TypeName="opc:Double" />
</opc:StructuredType>
<opc:StructuredType Name="Annotation">
<opc:Documentation>A description for the Annotation DataType.</opc:Documentation>
<opc:Field Name="Message" TypeName="opc:String" />
<opc:Field Name="UserName" TypeName="opc:String" />
<opc:Field Name="AnnotationTime" TypeName="opc:DateTime" />
</opc:StructuredType>
<opc:StructuredType Name="ApplicationDescription">
<opc:Documentation>A description for the ApplicationDescription DataType.</opc:Documentation>
<opc:Field Name="ApplicationUri" TypeName="opc:String" />
<opc:Field Name="ProductUri" TypeName="opc:String" />
<opc:Field Name="ApplicationName" TypeName="ua:LocalizedText" />
<opc:Field Name="ApplicationType" TypeName="tns:ApplicationType" />
<opc:Field Name="GatewayServerUri" TypeName="opc:String" />
<opc:Field Name="DiscoveryProfileUri" TypeName="opc:String" />
<opc:Field Name="NoOfDiscoveryUrls" TypeName="opc:Int32" />
<opc:Field Name="DiscoveryUrls" TypeName="opc:String" LengthField="NoOfDiscoveryUrls" />
</opc:StructuredType>
<opc:EnumeratedType Name="ApplicationType" LengthInBits="32">
<opc:Documentation>A description for the ApplicationType DataType.</opc:Documentation>
<opc:EnumeratedValue Name="Server" Value="0" />
<opc:EnumeratedValue Name="Client" Value="1" />
<opc:EnumeratedValue Name="ClientAndServer" Value="2" />
<opc:EnumeratedValue Name="DiscoveryServer" Value="3" />
</opc:EnumeratedType>
<opc:StructuredType Name="Argument">
<opc:Documentation>A description for the Argument DataType.</opc:Documentation>
<opc:Field Name="Name" TypeName="opc:String" />
<opc:Field Name="DataType" TypeName="ua:NodeId" />
<opc:Field Name="ValueRank" TypeName="opc:Int32" />
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
</opc:StructuredType>
<opc:StructuredType Name="ArrayTestType">
<opc:Documentation>A description for the ArrayTestType DataType.</opc:Documentation>
<opc:Field Name="NoOfBooleans" TypeName="opc:Int32" />
<opc:Field Name="Booleans" TypeName="opc:Boolean" LengthField="NoOfBooleans" />
<opc:Field Name="NoOfSBytes" TypeName="opc:Int32" />
<opc:Field Name="SBytes" TypeName="opc:SByte" LengthField="NoOfSBytes" />
<opc:Field Name="NoOfInt16s" TypeName="opc:Int32" />
<opc:Field Name="Int16s" TypeName="opc:Int16" LengthField="NoOfInt16s" />
<opc:Field Name="NoOfUInt16s" TypeName="opc:Int32" />
<opc:Field Name="UInt16s" TypeName="opc:UInt16" LengthField="NoOfUInt16s" />
<opc:Field Name="NoOfInt32s" TypeName="opc:Int32" />
<opc:Field Name="Int32s" TypeName="opc:Int32" LengthField="NoOfInt32s" />
<opc:Field Name="NoOfUInt32s" TypeName="opc:Int32" />
<opc:Field Name="UInt32s" TypeName="opc:UInt32" LengthField="NoOfUInt32s" />
<opc:Field Name="NoOfInt64s" TypeName="opc:Int32" />
<opc:Field Name="Int64s" TypeName="opc:Int64" LengthField="NoOfInt64s" />
<opc:Field Name="NoOfUInt64s" TypeName="opc:Int32" />
<opc:Field Name="UInt64s" TypeName="opc:UInt64" LengthField="NoOfUInt64s" />
<opc:Field Name="NoOfFloats" TypeName="opc:Int32" />
<opc:Field Name="Floats" TypeName="opc:Float" LengthField="NoOfFloats" />
<opc:Field Name="NoOfDoubles" TypeName="opc:Int32" />
<opc:Field Name="Doubles" TypeName="opc:Double" LengthField="NoOfDoubles" />
<opc:Field Name="NoOfStrings" TypeName="opc:Int32" />
<opc:Field Name="Strings" TypeName="opc:String" LengthField="NoOfStrings" />
<opc:Field Name="NoOfDateTimes" TypeName="opc:Int32" />
<opc:Field Name="DateTimes" TypeName="opc:DateTime" LengthField="NoOfDateTimes" />
<opc:Field Name="NoOfGuids" TypeName="opc:Int32" />
<opc:Field Name="Guids" TypeName="opc:Guid" LengthField="NoOfGuids" />
<opc:Field Name="NoOfByteStrings" TypeName="opc:Int32" />
<opc:Field Name="ByteStrings" TypeName="opc:ByteString" LengthField="NoOfByteStrings" />
<opc:Field Name="NoOfXmlElements" TypeName="opc:Int32" />
<opc:Field Name="XmlElements" TypeName="ua:XmlElement" LengthField="NoOfXmlElements" />
<opc:Field Name="NoOfNodeIds" TypeName="opc:Int32" />
<opc:Field Name="NodeIds" TypeName="ua:NodeId" LengthField="NoOfNodeIds" />
<opc:Field Name="NoOfExpandedNodeIds" TypeName="opc:Int32" />
<opc:Field Name="ExpandedNodeIds" TypeName="ua:ExpandedNodeId" LengthField="NoOfExpandedNodeIds" />
<opc:Field Name="NoOfStatusCodes" TypeName="opc:Int32" />
<opc:Field Name="StatusCodes" TypeName="ua:StatusCode" LengthField="NoOfStatusCodes" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
<opc:Field Name="NoOfQualifiedNames" TypeName="opc:Int32" />
<opc:Field Name="QualifiedNames" TypeName="ua:QualifiedName" LengthField="NoOfQualifiedNames" />
<opc:Field Name="NoOfLocalizedTexts" TypeName="opc:Int32" />
<opc:Field Name="LocalizedTexts" TypeName="ua:LocalizedText" LengthField="NoOfLocalizedTexts" />
<opc:Field Name="NoOfExtensionObjects" TypeName="opc:Int32" />
<opc:Field Name="ExtensionObjects" TypeName="ua:ExtensionObject" LengthField="NoOfExtensionObjects" />
<opc:Field Name="NoOfDataValues" TypeName="opc:Int32" />
<opc:Field Name="DataValues" TypeName="ua:DataValue" LengthField="NoOfDataValues" />
<opc:Field Name="NoOfVariants" TypeName="opc:Int32" />
<opc:Field Name="Variants" TypeName="ua:Variant" LengthField="NoOfVariants" />
<opc:Field Name="NoOfEnumeratedValues" TypeName="opc:Int32" />
<opc:Field Name="EnumeratedValues" TypeName="tns:EnumeratedTestType" LengthField="NoOfEnumeratedValues" />
</opc:StructuredType>
<opc:StructuredType Name="AttributeOperand">
<opc:Documentation>A description for the AttributeOperand DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="Alias" TypeName="opc:String" />
<opc:Field Name="BrowsePath" TypeName="tns:RelativePath" />
<opc:Field Name="AttributeId" TypeName="opc:UInt32" />
<opc:Field Name="IndexRange" TypeName="opc:String" />
</opc:StructuredType>
<opc:EnumeratedType Name="AttributeWriteMask" LengthInBits="32">
<opc:Documentation>A description for the AttributeWriteMask DataType.</opc:Documentation>
<opc:EnumeratedValue Name="None" Value="0" />
<opc:EnumeratedValue Name="AccessLevel" Value="1" />
<opc:EnumeratedValue Name="ArrayDimensions" Value="2" />
<opc:EnumeratedValue Name="BrowseName" Value="4" />
<opc:EnumeratedValue Name="ContainsNoLoops" Value="8" />
<opc:EnumeratedValue Name="DataType" Value="16" />
<opc:EnumeratedValue Name="Description" Value="32" />
<opc:EnumeratedValue Name="DisplayName" Value="64" />
<opc:EnumeratedValue Name="EventNotifier" Value="128" />
<opc:EnumeratedValue Name="Executable" Value="256" />
<opc:EnumeratedValue Name="Historizing" Value="512" />
<opc:EnumeratedValue Name="InverseName" Value="1024" />
<opc:EnumeratedValue Name="IsAbstract" Value="2048" />
<opc:EnumeratedValue Name="MinimumSamplingInterval" Value="4096" />
<opc:EnumeratedValue Name="NodeClass" Value="8192" />
<opc:EnumeratedValue Name="NodeId" Value="16384" />
<opc:EnumeratedValue Name="Symmetric" Value="32768" />
<opc:EnumeratedValue Name="UserAccessLevel" Value="65536" />
<opc:EnumeratedValue Name="UserExecutable" Value="131072" />
<opc:EnumeratedValue Name="UserWriteMask" Value="262144" />
<opc:EnumeratedValue Name="ValueRank" Value="524288" />
<opc:EnumeratedValue Name="WriteMask" Value="1048576" />
</opc:EnumeratedType>
<opc:StructuredType Name="BrowseDescription">
<opc:Documentation>A description for the BrowseDescription DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="BrowseDirection" TypeName="tns:BrowseDirection" />
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
<opc:Field Name="IncludeSubtypes" TypeName="opc:Boolean" />
<opc:Field Name="NodeClassMask" TypeName="opc:UInt32" />
<opc:Field Name="ResultMask" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:EnumeratedType Name="BrowseDirection" LengthInBits="32">
<opc:Documentation>A description for the BrowseDirection DataType.</opc:Documentation>
<opc:EnumeratedValue Name="Forward" Value="0" />
<opc:EnumeratedValue Name="Inverse" Value="1" />
<opc:EnumeratedValue Name="Both" Value="2" />
</opc:EnumeratedType>
<opc:StructuredType Name="BrowseNextRequest">
<opc:Documentation>A description for the BrowseNextRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="ReleaseContinuationPoints" TypeName="opc:Boolean" />
<opc:Field Name="NoOfContinuationPoints" TypeName="opc:Int32" />
<opc:Field Name="ContinuationPoints" TypeName="opc:ByteString" LengthField="NoOfContinuationPoints" />
</opc:StructuredType>
<opc:StructuredType Name="BrowseNextResponse">
<opc:Documentation>A description for the BrowseNextResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="tns:BrowseResult" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="BrowsePath">
<opc:Documentation>A description for the BrowsePath DataType.</opc:Documentation>
<opc:Field Name="StartingNode" TypeName="ua:NodeId" />
<opc:Field Name="RelativePath" TypeName="tns:RelativePath" />
</opc:StructuredType>
<opc:StructuredType Name="BrowsePathResult">
<opc:Documentation>A description for the BrowsePathResult DataType.</opc:Documentation>
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
<opc:Field Name="NoOfTargets" TypeName="opc:Int32" />
<opc:Field Name="Targets" TypeName="tns:BrowsePathTarget" LengthField="NoOfTargets" />
</opc:StructuredType>
<opc:StructuredType Name="BrowsePathTarget">
<opc:Documentation>A description for the BrowsePathTarget DataType.</opc:Documentation>
<opc:Field Name="TargetId" TypeName="ua:ExpandedNodeId" />
<opc:Field Name="RemainingPathIndex" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="BrowseRequest">
<opc:Documentation>A description for the BrowseRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="View" TypeName="tns:ViewDescription" />
<opc:Field Name="RequestedMaxReferencesPerNode" TypeName="opc:UInt32" />
<opc:Field Name="NoOfNodesToBrowse" TypeName="opc:Int32" />
<opc:Field Name="NodesToBrowse" TypeName="tns:BrowseDescription" LengthField="NoOfNodesToBrowse" />
</opc:StructuredType>
<opc:StructuredType Name="BrowseResponse">
<opc:Documentation>A description for the BrowseResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="tns:BrowseResult" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="BrowseResult">
<opc:Documentation>A description for the BrowseResult DataType.</opc:Documentation>
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
<opc:Field Name="ContinuationPoint" TypeName="opc:ByteString" />
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
<opc:Field Name="References" TypeName="tns:ReferenceDescription" LengthField="NoOfReferences" />
</opc:StructuredType>
<opc:EnumeratedType Name="BrowseResultMask" LengthInBits="32">
<opc:Documentation>A description for the BrowseResultMask DataType.</opc:Documentation>
<opc:EnumeratedValue Name="None" Value="0" />
<opc:EnumeratedValue Name="ReferenceTypeId" Value="1" />
<opc:EnumeratedValue Name="IsForward" Value="2" />
<opc:EnumeratedValue Name="NodeClass" Value="4" />
<opc:EnumeratedValue Name="BrowseName" Value="8" />
<opc:EnumeratedValue Name="DisplayName" Value="16" />
<opc:EnumeratedValue Name="TypeDefinition" Value="32" />
<opc:EnumeratedValue Name="All" Value="63" />
<opc:EnumeratedValue Name="ReferenceTypeInfo" Value="3" />
<opc:EnumeratedValue Name="TargetInfo" Value="60" />
</opc:EnumeratedType>
<opc:StructuredType Name="BuildInfo">
<opc:Documentation>A description for the BuildInfo DataType.</opc:Documentation>
<opc:Field Name="ProductName" TypeName="opc:String" />
<opc:Field Name="ProductUri" TypeName="opc:String" />
<opc:Field Name="ManufacturerName" TypeName="opc:String" />
<opc:Field Name="SoftwareVersion" TypeName="opc:String" />
<opc:Field Name="BuildNumber" TypeName="opc:String" />
<opc:Field Name="BuildDate" TypeName="opc:DateTime" />
</opc:StructuredType>
<opc:StructuredType Name="CallMethodRequest">
<opc:Documentation>A description for the CallMethodRequest DataType.</opc:Documentation>
<opc:Field Name="ObjectId" TypeName="ua:NodeId" />
<opc:Field Name="MethodId" TypeName="ua:NodeId" />
<opc:Field Name="NoOfInputArguments" TypeName="opc:Int32" />
<opc:Field Name="InputArguments" TypeName="ua:Variant" LengthField="NoOfInputArguments" />
</opc:StructuredType>
<opc:StructuredType Name="CallMethodResult">
<opc:Documentation>A description for the CallMethodResult DataType.</opc:Documentation>
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
<opc:Field Name="NoOfInputArgumentResults" TypeName="opc:Int32" />
<opc:Field Name="InputArgumentResults" TypeName="ua:StatusCode" LengthField="NoOfInputArgumentResults" />
<opc:Field Name="NoOfInputArgumentDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="InputArgumentDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfInputArgumentDiagnosticInfos" />
<opc:Field Name="NoOfOutputArguments" TypeName="opc:Int32" />
<opc:Field Name="OutputArguments" TypeName="ua:Variant" LengthField="NoOfOutputArguments" />
</opc:StructuredType>
<opc:StructuredType Name="CallRequest">
<opc:Documentation>A description for the CallRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="NoOfMethodsToCall" TypeName="opc:Int32" />
<opc:Field Name="MethodsToCall" TypeName="tns:CallMethodRequest" LengthField="NoOfMethodsToCall" />
</opc:StructuredType>
<opc:StructuredType Name="CallResponse">
<opc:Documentation>A description for the CallResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="tns:CallMethodResult" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="CancelRequest">
<opc:Documentation>A description for the CancelRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="RequestHandle" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="CancelResponse">
<opc:Documentation>A description for the CancelResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="CancelCount" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="ChannelSecurityToken">
<opc:Documentation>A description for the ChannelSecurityToken DataType.</opc:Documentation>
<opc:Field Name="ChannelId" TypeName="opc:UInt32" />
<opc:Field Name="TokenId" TypeName="opc:UInt32" />
<opc:Field Name="CreatedAt" TypeName="opc:DateTime" />
<opc:Field Name="RevisedLifetime" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="CloseSecureChannelRequest">
<opc:Documentation>A description for the CloseSecureChannelRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
</opc:StructuredType>
<opc:StructuredType Name="CloseSecureChannelResponse">
<opc:Documentation>A description for the CloseSecureChannelResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
</opc:StructuredType>
<opc:StructuredType Name="CloseSessionRequest">
<opc:Documentation>A description for the CloseSessionRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="DeleteSubscriptions" TypeName="opc:Boolean" />
</opc:StructuredType>
<opc:StructuredType Name="CloseSessionResponse">
<opc:Documentation>A description for the CloseSessionResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
</opc:StructuredType>
<opc:EnumeratedType Name="ComplianceLevel" LengthInBits="32">
<opc:Documentation>A description for the ComplianceLevel DataType.</opc:Documentation>
<opc:EnumeratedValue Name="Untested" Value="0" />
<opc:EnumeratedValue Name="Partial" Value="1" />
<opc:EnumeratedValue Name="SelfTested" Value="2" />
<opc:EnumeratedValue Name="Certified" Value="3" />
</opc:EnumeratedType>
<opc:StructuredType Name="CompositeTestType">
<opc:Documentation>A description for the CompositeTestType DataType.</opc:Documentation>
<opc:Field Name="Field1" TypeName="tns:ScalarTestType" />
<opc:Field Name="Field2" TypeName="tns:ArrayTestType" />
</opc:StructuredType>
<opc:StructuredType Name="ContentFilter">
<opc:Documentation>A description for the ContentFilter DataType.</opc:Documentation>
<opc:Field Name="NoOfElements" TypeName="opc:Int32" />
<opc:Field Name="Elements" TypeName="tns:ContentFilterElement" LengthField="NoOfElements" />
</opc:StructuredType>
<opc:StructuredType Name="ContentFilterElement">
<opc:Documentation>A description for the ContentFilterElement DataType.</opc:Documentation>
<opc:Field Name="FilterOperator" TypeName="tns:FilterOperator" />
<opc:Field Name="NoOfFilterOperands" TypeName="opc:Int32" />
<opc:Field Name="FilterOperands" TypeName="ua:ExtensionObject" LengthField="NoOfFilterOperands" />
</opc:StructuredType>
<opc:StructuredType Name="ContentFilterElementResult">
<opc:Documentation>A description for the ContentFilterElementResult DataType.</opc:Documentation>
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
<opc:Field Name="NoOfOperandStatusCodes" TypeName="opc:Int32" />
<opc:Field Name="OperandStatusCodes" TypeName="ua:StatusCode" LengthField="NoOfOperandStatusCodes" />
<opc:Field Name="NoOfOperandDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="OperandDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfOperandDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="ContentFilterResult">
<opc:Documentation>A description for the ContentFilterResult DataType.</opc:Documentation>
<opc:Field Name="NoOfElementResults" TypeName="opc:Int32" />
<opc:Field Name="ElementResults" TypeName="tns:ContentFilterElementResult" LengthField="NoOfElementResults" />
<opc:Field Name="NoOfElementDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="ElementDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfElementDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="CreateMonitoredItemsRequest">
<opc:Documentation>A description for the CreateMonitoredItemsRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
<opc:Field Name="TimestampsToReturn" TypeName="tns:TimestampsToReturn" />
<opc:Field Name="NoOfItemsToCreate" TypeName="opc:Int32" />
<opc:Field Name="ItemsToCreate" TypeName="tns:MonitoredItemCreateRequest" LengthField="NoOfItemsToCreate" />
</opc:StructuredType>
<opc:StructuredType Name="CreateMonitoredItemsResponse">
<opc:Documentation>A description for the CreateMonitoredItemsResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="tns:MonitoredItemCreateResult" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="CreateSessionRequest">
<opc:Documentation>A description for the CreateSessionRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="ClientDescription" TypeName="tns:ApplicationDescription" />
<opc:Field Name="ServerUri" TypeName="opc:String" />
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
<opc:Field Name="SessionName" TypeName="opc:String" />
<opc:Field Name="ClientNonce" TypeName="opc:ByteString" />
<opc:Field Name="ClientCertificate" TypeName="opc:ByteString" />
<opc:Field Name="RequestedSessionTimeout" TypeName="opc:Double" />
<opc:Field Name="MaxResponseMessageSize" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="CreateSessionResponse">
<opc:Documentation>A description for the CreateSessionResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="SessionId" TypeName="ua:NodeId" />
<opc:Field Name="AuthenticationToken" TypeName="ua:NodeId" />
<opc:Field Name="RevisedSessionTimeout" TypeName="opc:Double" />
<opc:Field Name="ServerNonce" TypeName="opc:ByteString" />
<opc:Field Name="ServerCertificate" TypeName="opc:ByteString" />
<opc:Field Name="NoOfServerEndpoints" TypeName="opc:Int32" />
<opc:Field Name="ServerEndpoints" TypeName="tns:EndpointDescription" LengthField="NoOfServerEndpoints" />
<opc:Field Name="NoOfServerSoftwareCertificates" TypeName="opc:Int32" />
<opc:Field Name="ServerSoftwareCertificates" TypeName="tns:SignedSoftwareCertificate" LengthField="NoOfServerSoftwareCertificates" />
<opc:Field Name="ServerSignature" TypeName="tns:SignatureData" />
<opc:Field Name="MaxRequestMessageSize" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="CreateSubscriptionRequest">
<opc:Documentation>A description for the CreateSubscriptionRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="RequestedPublishingInterval" TypeName="opc:Double" />
<opc:Field Name="RequestedLifetimeCount" TypeName="opc:UInt32" />
<opc:Field Name="RequestedMaxKeepAliveCount" TypeName="opc:UInt32" />
<opc:Field Name="MaxNotificationPerPublish" TypeName="opc:UInt32" />
<opc:Field Name="PublishingEnabled" TypeName="opc:Boolean" />
<opc:Field Name="Priority" TypeName="opc:Byte" />
</opc:StructuredType>
<opc:StructuredType Name="CreateSubscriptionResponse">
<opc:Documentation>A description for the CreateSubscriptionResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
<opc:Field Name="RevisedPublishingInterval" TypeName="opc:Double" />
<opc:Field Name="RevisedLifetimeCount" TypeName="opc:UInt32" />
<opc:Field Name="RevisedMaxKeepAliveCount" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="DataChangeFilter">
<opc:Documentation>A description for the DataChangeFilter DataType.</opc:Documentation>
<opc:Field Name="Trigger" TypeName="tns:DataChangeTrigger" />
<opc:Field Name="DeadbandType" TypeName="opc:UInt32" />
<opc:Field Name="DeadbandValue" TypeName="opc:Double" />
</opc:StructuredType>
<opc:StructuredType Name="DataChangeNotification">
<opc:Documentation>A description for the DataChangeNotification DataType.</opc:Documentation>
<opc:Field Name="NoOfMonitoredItems" TypeName="opc:Int32" />
<opc:Field Name="MonitoredItems" TypeName="tns:MonitoredItemNotification" LengthField="NoOfMonitoredItems" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:EnumeratedType Name="DataChangeTrigger" LengthInBits="32">
<opc:Documentation>A description for the DataChangeTrigger DataType.</opc:Documentation>
<opc:EnumeratedValue Name="Status" Value="0" />
<opc:EnumeratedValue Name="StatusValue" Value="1" />
<opc:EnumeratedValue Name="StatusValueTimestamp" Value="2" />
</opc:EnumeratedType>
<opc:StructuredType Name="DataTypeAttributes">
<opc:Documentation>A description for the DataTypeAttributes DataType.</opc:Documentation>
<opc:Field Name="SpecifiedAttributes" TypeName="tns:NodeAttributesMask" />
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
<opc:Field Name="WriteMask" TypeName="opc:UInt32" />
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" />
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
</opc:StructuredType>
<opc:StructuredType Name="DataTypeNode">
<opc:Documentation>A description for the DataTypeNode DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" />
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" />
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
<opc:Field Name="WriteMask" TypeName="opc:UInt32" />
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" />
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
</opc:StructuredType>
<opc:EnumeratedType Name="DeadbandType" LengthInBits="32">
<opc:Documentation>A description for the DeadbandType DataType.</opc:Documentation>
<opc:EnumeratedValue Name="None" Value="0" />
<opc:EnumeratedValue Name="Absolute" Value="1" />
<opc:EnumeratedValue Name="Percent" Value="2" />
</opc:EnumeratedType>
<opc:StructuredType Name="DeleteAtTimeDetails">
<opc:Documentation>A description for the DeleteAtTimeDetails DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="NoOfReqTimes" TypeName="opc:Int32" />
<opc:Field Name="ReqTimes" TypeName="opc:DateTime" LengthField="NoOfReqTimes" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteEventDetails">
<opc:Documentation>A description for the DeleteEventDetails DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="EventIds" TypeName="opc:ByteString" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteMonitoredItemsRequest">
<opc:Documentation>A description for the DeleteMonitoredItemsRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
<opc:Field Name="NoOfMonitoredItemIds" TypeName="opc:Int32" />
<opc:Field Name="MonitoredItemIds" TypeName="opc:UInt32" LengthField="NoOfMonitoredItemIds" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteMonitoredItemsResponse">
<opc:Documentation>A description for the DeleteMonitoredItemsResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteNodesItem">
<opc:Documentation>A description for the DeleteNodesItem DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="DeleteTargetReferences" TypeName="opc:Boolean" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteNodesRequest">
<opc:Documentation>A description for the DeleteNodesRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="NoOfNodesToDelete" TypeName="opc:Int32" />
<opc:Field Name="NodesToDelete" TypeName="tns:DeleteNodesItem" LengthField="NoOfNodesToDelete" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteNodesResponse">
<opc:Documentation>A description for the DeleteNodesResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteRawModifiedDetails">
<opc:Documentation>A description for the DeleteRawModifiedDetails DataType.</opc:Documentation>
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
<opc:Field Name="IsDeleteModified" TypeName="opc:Boolean" />
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
<opc:Field Name="EndTime" TypeName="opc:DateTime" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteReferencesItem">
<opc:Documentation>A description for the DeleteReferencesItem DataType.</opc:Documentation>
<opc:Field Name="SourceNodeId" TypeName="ua:NodeId" />
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
<opc:Field Name="IsForward" TypeName="opc:Boolean" />
<opc:Field Name="TargetNodeId" TypeName="ua:ExpandedNodeId" />
<opc:Field Name="DeleteBidirectional" TypeName="opc:Boolean" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteReferencesRequest">
<opc:Documentation>A description for the DeleteReferencesRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="NoOfReferencesToDelete" TypeName="opc:Int32" />
<opc:Field Name="ReferencesToDelete" TypeName="tns:DeleteReferencesItem" LengthField="NoOfReferencesToDelete" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteReferencesResponse">
<opc:Documentation>A description for the DeleteReferencesResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteSubscriptionsRequest">
<opc:Documentation>A description for the DeleteSubscriptionsRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="NoOfSubscriptionIds" TypeName="opc:Int32" />
<opc:Field Name="SubscriptionIds" TypeName="opc:UInt32" LengthField="NoOfSubscriptionIds" />
</opc:StructuredType>
<opc:StructuredType Name="DeleteSubscriptionsResponse">
<opc:Documentation>A description for the DeleteSubscriptionsResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
</opc:StructuredType>
<opc:StructuredType Name="ElementOperand">
<opc:Documentation>A description for the ElementOperand DataType.</opc:Documentation>
<opc:Field Name="Index" TypeName="opc:UInt32" />
</opc:StructuredType>
<opc:StructuredType Name="EndpointConfiguration">
<opc:Documentation>A description for the EndpointConfiguration DataType.</opc:Documentation>
<opc:Field Name="OperationTimeout" TypeName="opc:Int32" />
<opc:Field Name="UseBinaryEncoding" TypeName="opc:Boolean" />
<opc:Field Name="MaxStringLength" TypeName="opc:Int32" />
<opc:Field Name="MaxByteStringLength" TypeName="opc:Int32" />
<opc:Field Name="MaxArrayLength" TypeName="opc:Int32" />
<opc:Field Name="MaxMessageSize" TypeName="opc:Int32" />
<opc:Field Name="MaxBufferSize" TypeName="opc:Int32" />
<opc:Field Name="ChannelLifetime" TypeName="opc:Int32" />
<opc:Field Name="SecurityTokenLifetime" TypeName="opc:Int32" />
</opc:StructuredType>
<opc:StructuredType Name="EndpointDescription">
<opc:Documentation>A description for the EndpointDescription DataType.</opc:Documentation>
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
<opc:Field Name="Server" TypeName="tns:ApplicationDescription" />
<opc:Field Name="ServerCertificate" TypeName="opc:ByteString" />
<opc:Field Name="SecurityMode" TypeName="tns:MessageSecurityMode" />
<opc:Field Name="SecurityPolicyUri" TypeName="opc:String" />
<opc:Field Name="NoOfUserIdentityTokens" TypeName="opc:Int32" />
<opc:Field Name="UserIdentityTokens" TypeName="tns:UserTokenPolicy" LengthField="NoOfUserIdentityTokens" />
<opc:Field Name="TransportProfileUri" TypeName="opc:String" />
<opc:Field Name="SecurityLevel" TypeName="opc:Byte" />
</opc:StructuredType>
<opc:EnumeratedType Name="EnumeratedTestType" LengthInBits="32">
<opc:Documentation>A description for the EnumeratedTestType DataType.</opc:Documentation>
<opc:EnumeratedValue Name="Red" Value="1" />
<opc:EnumeratedValue Name="Yellow" Value="4" />
<opc:EnumeratedValue Name="Green" Value="5" />
</opc:EnumeratedType>
<opc:StructuredType Name="EUInformation">
<opc:Documentation>A description for the EUInformation DataType.</opc:Documentation>
<opc:Field Name="NamespaceUri" TypeName="opc:String" />
<opc:Field Name="UnitId" TypeName="opc:Int32" />
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
</opc:StructuredType>
<opc:StructuredType Name="EventFieldList">
<opc:Documentation>A description for the EventFieldList DataType.</opc:Documentation>
<opc:Field Name="ClientHandle" TypeName="opc:UInt32" />
<opc:Field Name="NoOfEventFields" TypeName="opc:Int32" />
<opc:Field Name="EventFields" TypeName="ua:Variant" LengthField="NoOfEventFields" />
</opc:StructuredType>
<opc:StructuredType Name="EventFilter">
<opc:Documentation>A description for the EventFilter DataType.</opc:Documentation>
<opc:Field Name="NoOfSelectClauses" TypeName="opc:Int32" />
<opc:Field Name="SelectClauses" TypeName="tns:SimpleAttributeOperand" LengthField="NoOfSelectClauses" />
<opc:Field Name="WhereClause" TypeName="tns:ContentFilter" />
</opc:StructuredType>
<opc:StructuredType Name="EventFilterResult">
<opc:Documentation>A description for the EventFilterResult DataType.</opc:Documentation>
<opc:Field Name="NoOfSelectClauseResults" TypeName="opc:Int32" />
<opc:Field Name="SelectClauseResults" TypeName="ua:StatusCode" LengthField="NoOfSelectClauseResults" />
<opc:Field Name="NoOfSelectClauseDiagnosticInfos" TypeName="opc:Int32" />
<opc:Field Name="SelectClauseDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfSelectClauseDiagnosticInfos" />
<opc:Field Name="WhereClauseResult" TypeName="tns:ContentFilterResult" />
</opc:StructuredType>
<opc:StructuredType Name="EventNotification">
<opc:Documentation>A description for the EventNotification DataType.</opc:Documentation>
<opc:Field Name="NoOfEvents" TypeName="opc:Int32" />
<opc:Field Name="Events" TypeName="tns:EventFieldList" LengthField="NoOfEvents" />
</opc:StructuredType>
<opc:EnumeratedType Name="ExceptionDeviationFormat" LengthInBits="32">
<opc:Documentation>A description for the ExceptionDeviationFormat DataType.</opc:Documentation>
<opc:EnumeratedValue Name="AbsoluteValue" Value="0" />
<opc:EnumeratedValue Name="PercentOfRange" Value="1" />
<opc:EnumeratedValue Name="PercentOfValue" Value="2" />
</opc:EnumeratedType>
<opc:EnumeratedType Name="FilterOperator" LengthInBits="32">
<opc:Documentation>A description for the FilterOperator DataType.</opc:Documentation>
<opc:EnumeratedValue Name="Equals" Value="0" />
<opc:EnumeratedValue Name="IsNull" Value="1" />
<opc:EnumeratedValue Name="GreaterThan" Value="2" />
<opc:EnumeratedValue Name="LessThan" Value="3" />
<opc:EnumeratedValue Name="GreaterThanOrEqual" Value="4" />
<opc:EnumeratedValue Name="LessThanOrEqual" Value="5" />
<opc:EnumeratedValue Name="Like" Value="6" />
<opc:EnumeratedValue Name="Not" Value="7" />
<opc:EnumeratedValue Name="Between" Value="8" />
<opc:EnumeratedValue Name="InList" Value="9" />
<opc:EnumeratedValue Name="And" Value="10" />
<opc:EnumeratedValue Name="Or" Value="11" />
<opc:EnumeratedValue Name="Cast" Value="12" />
<opc:EnumeratedValue Name="InView" Value="13" />
<opc:EnumeratedValue Name="OfType" Value="14" />
<opc:EnumeratedValue Name="RelatedTo" Value="15" />
</opc:EnumeratedType>
<opc:StructuredType Name="FindServersRequest">
<opc:Documentation>A description for the FindServersRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
<opc:Field Name="NoOfServerUris" TypeName="opc:Int32" />
<opc:Field Name="ServerUris" TypeName="opc:String" LengthField="NoOfServerUris" />
</opc:StructuredType>
<opc:StructuredType Name="FindServersResponse">
<opc:Documentation>A description for the FindServersResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfServers" TypeName="opc:Int32" />
<opc:Field Name="Servers" TypeName="tns:ApplicationDescription" LengthField="NoOfServers" />
</opc:StructuredType>
<opc:StructuredType Name="GetEndpointsRequest">
<opc:Documentation>A description for the GetEndpointsRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
<opc:Field Name="NoOfProfileUris" TypeName="opc:Int32" />
<opc:Field Name="ProfileUris" TypeName="opc:String" LengthField="NoOfProfileUris" />
</opc:StructuredType>
<opc:StructuredType Name="GetEndpointsResponse">
<opc:Documentation>A description for the GetEndpointsResponse DataType.</opc:Documentation>
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
<opc:Field Name="NoOfEndpoints" TypeName="opc:Int32" />
<opc:Field Name="Endpoints" TypeName="tns:EndpointDescription" LengthField="NoOfEndpoints" />
</opc:StructuredType>
<opc:StructuredType Name="HistoryData">
<opc:Documentation>A description for the HistoryData DataType.</opc:Documentation>
<opc:Field Name="NoOfDataValues" TypeName="opc:Int32" />
<opc:Field Name="DataValues" TypeName="ua:DataValue" LengthField="NoOfDataValues" />
</opc:StructuredType>
<opc:StructuredType Name="HistoryEvent">
<opc:Documentation>A description for the HistoryEvent DataType.</opc:Documentation>
<opc:Field Name="NoOfNotifications" TypeName="opc:Int32" />
<opc:Field Name="Notifications" TypeName="tns:EventNotification" LengthField="NoOfNotifications" />
</opc:StructuredType>
<opc:StructuredType Name="HistoryReadRequest">
<opc:Documentation>A description for the HistoryReadRequest DataType.</opc:Documentation>
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
<opc:Field Name="HistoryReadDetails" TypeName="ua:ExtensionObject" />
<opc:Field Name="TimestampsToReturn" TypeName="tns:TimestampsToReturn" />
<opc:Field Name="ReleaseContinuationPoints" TypeName="opc:Boolean" />
<opc:Field Name="NoOfNodesToRead" TypeName="opc:Int32" />
<opc:Field Name="NodesToRead" TypeName="tns:HistoryReadValueId" LengthField="NoOfNodesToRead" />
</opc:StructuredType>
<opc:StructuredType Name="HistoryReadResponse">