-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathnew_model_template.xml
More file actions
4961 lines (4464 loc) · 303 KB
/
new_model_template.xml
File metadata and controls
4961 lines (4464 loc) · 303 KB
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" ?>
<opc:ModelDesign
xmlns:opc="http://opcfoundation.org/UA/ModelDesign.xsd"
TargetNamespace=""
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://opcfoundation.org/UA/ModelDesign.xsd opc_with_namespace.xsd"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ua="http://opcfoundation.org/UA/"
xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd"
>
<!-- Namespaces is expected to exist when importing a file. We should not put it here as it will cause duplicate error as this
can exist once only.
By moving this to the code, we could dynamically generate it for New model.
-->
<!--
<opc:Namespaces>
<opc:Namespace Name="OpcUa" Prefix="Softing.Opc.Ua.Sdk" XmlNamespace="http://opcfoundation.org/UA/2008/02/Types.xsd">http://opcfoundation.org/UA/</opc:Namespace>
</opc:Namespaces>
-->
<!-- Note: Below text must not be modified. Import logic is parsing the marker to work properly. -->
<!-- IMPORT MARKER -->
<!-- WT: START BuildInTypes.xml -->
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:DefaultBinary" PartNo="3">
<opc:BrowseName>Default Binary</opc:BrowseName>
<opc:Description>The default binary encoding for a data type.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:DefaultXml" PartNo="3">
<opc:BrowseName>Default XML</opc:BrowseName>
<opc:Description>The default XML encoding for a data type.</opc:Description>
</opc:Object>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:BaseDataType" IsAbstract="true" PartNo="3">
<opc:Description>Describes a value that can have any valid DataType.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Number" BaseType="ua:BaseDataType" IsAbstract="true" PartNo="3">
<opc:Description>Describes a value that can have any numeric DataType.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Integer" BaseType="ua:Number" IsAbstract="true" PartNo="3">
<opc:Description>Describes a value that can have any integer DataType.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:UInteger" BaseType="ua:Number" IsAbstract="true" PartNo="3">
<opc:Description>Describes a value that can have any unsigned integer DataType.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Enumeration" BaseType="ua:BaseDataType" IsAbstract="true" PartNo="3">
<opc:Description>Describes a value that is an enumerated DataType.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Boolean" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is either TRUE or FALSE.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:SByte" BaseType="ua:Integer" PartNo="3">
<opc:Description>Describes a value that is an integer between -128 and 127.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Byte" BaseType="ua:UInteger" PartNo="3">
<opc:Description>Describes a value that is an integer between 0 and 255.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Int16" BaseType="ua:Integer" PartNo="3">
<opc:Description>Describes a value that is an integer between −32,768 and 32,767.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:UInt16" BaseType="ua:UInteger" PartNo="3">
<opc:Description>Describes a value that is an integer between 0 and 65535.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Int32" BaseType="ua:Integer" PartNo="3">
<opc:Description>Describes a value that is an integer between −2,147,483,648 and 2,147,483,647.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:UInt32" BaseType="ua:UInteger" PartNo="3">
<opc:Description>Describes a value that is an integer between 0 and 4,294,967,295.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Int64" BaseType="ua:Integer" PartNo="3">
<opc:Description>Describes a value that is an integer between −9,223,372,036,854,775,808 and 9,223,372,036,854,775,807.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:UInt64" BaseType="ua:UInteger" PartNo="3">
<opc:Description>Describes a value that is an integer between 0 and 18,446,744,073,709,551,615.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Float" BaseType="ua:Number" PartNo="3">
<opc:Description>Describes a value that is an IEEE 754-1985 single precision floating point number.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Double" BaseType="ua:Number" PartNo="3">
<opc:Description>Describes a value that is an IEEE 754-1985 double precision floating point number.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:String" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is a sequence of printable Unicode characters.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:DateTime" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is a Gregorian calender date and time.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Guid" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is a 128-bit globally unique identifier.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:ByteString" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is a sequence of bytes.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:XmlElement" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is an XML element.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:NodeId" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is an identifier for a node within a Server address space.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:ExpandedNodeId" BaseType="ua:BaseDataType" PartNo="4">
<opc:Description>Describes a value that is an absolute identifier for a node.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:StatusCode" BaseType="ua:BaseDataType" PartNo="4">
<opc:Description>Describes a value that is a code representing the outcome of an operation by a Server.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:QualifiedName" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is a name qualified by a namespace.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:LocalizedText" BaseType="ua:BaseDataType" PartNo="3">
<opc:Description>Describes a value that is human readable Unicode text with a locale identifier.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Structure" BaseType="ua:BaseDataType" IsAbstract="true" PartNo="3">
<opc:Description>Describes a value that is any type of structure that can be described with a data encoding.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:DataValue" BaseType="ua:BaseDataType" PartNo="4" NotInAddressSpace="true">
<opc:Description>Describes a value that is a structure containing a value, a status code and timestamps.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:DiagnosticInfo" BaseType="ua:BaseDataType" PartNo="4" NotInAddressSpace="true">
<opc:Description>Describes a value that is a structure containing diagnostics associated with a StatusCode.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Image" BaseType="ua:ByteString" PartNo="3">
<opc:Description>Describes a value that is an image encoded as a string of bytes.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:Decimal" BaseType="ua:Number" PartNo="3">
<opc:Description>Describes a 128-bit decimal value.</opc:Description>
</opc:DataType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:References" IsAbstract="true" Symmetric="true" PartNo="3">
<opc:Description>The abstract base type for all references.</opc:Description>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:NonHierarchicalReferences" BaseType="ua:References" IsAbstract="true" PartNo="3">
<opc:Description>The abstract base type for all non-hierarchical references.</opc:Description>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HierarchicalReferences" BaseType="ua:References" IsAbstract="true" PartNo="3">
<opc:Description>The abstract base type for all hierarchical references.</opc:Description>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasChild" BaseType="ua:HierarchicalReferences" PartNo="3">
<opc:Description>The abstract base type for all non-looping hierarchical references.</opc:Description>
<opc:InverseName>ChildOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:Organizes" BaseType="ua:HierarchicalReferences" PartNo="3">
<opc:Description>The type for hierarchical references that are used to organize nodes.</opc:Description>
<opc:InverseName>OrganizedBy</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasEventSource" BaseType="ua:HierarchicalReferences" PartNo="3">
<opc:Description>The type for non-looping hierarchical references that are used to organize event sources.</opc:Description>
<opc:InverseName>EventSourceOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasModellingRule" BaseType="ua:NonHierarchicalReferences" PartNo="3">
<opc:Description>The type for references from instance declarations to modelling rule nodes.</opc:Description>
<opc:InverseName>ModellingRuleOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasEncoding" BaseType="ua:NonHierarchicalReferences" PartNo="3">
<opc:Description>The type for references from data type nodes to to data type encoding nodes.</opc:Description>
<opc:InverseName>EncodingOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasDescription" BaseType="ua:NonHierarchicalReferences" PartNo="3">
<opc:Description>The type for references from data type encoding nodes to data type description nodes.</opc:Description>
<opc:InverseName>DescriptionOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasTypeDefinition" BaseType="ua:NonHierarchicalReferences" PartNo="3">
<opc:Description>The type for references from a instance node its type defintion node.</opc:Description>
<opc:InverseName>TypeDefinitionOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:GeneratesEvent" BaseType="ua:NonHierarchicalReferences" PartNo="3">
<opc:Description>The type for references from a node to an event type that is raised by node.</opc:Description>
<opc:InverseName>GeneratesEvent</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:AlwaysGeneratesEvent" BaseType="ua:GeneratesEvent" PartNo="3">
<opc:Description>The type for references from a node to an event type that is always raised by node.</opc:Description>
<opc:InverseName>AlwaysGeneratesEvent</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:Aggregates" BaseType="ua:HasChild" PartNo="3">
<opc:Description>The type for non-looping hierarchical references that are used to aggregate nodes into complex types.</opc:Description>
<opc:InverseName>AggregatedBy</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasSubtype" BaseType="ua:HasChild" PartNo="3">
<opc:Description>The type for non-looping hierarchical references that are used to define sub types.</opc:Description>
<opc:InverseName>SubtypeOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasProperty" BaseType="ua:Aggregates" PartNo="3">
<opc:Description>The type for non-looping hierarchical reference from a node to its property.</opc:Description>
<opc:InverseName>PropertyOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasComponent" BaseType="ua:Aggregates" PartNo="3">
<opc:Description>The type for non-looping hierarchical reference from a node to its component.</opc:Description>
<opc:InverseName>ComponentOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasNotifier" BaseType="ua:HasEventSource" PartNo="3">
<opc:Description>The type for non-looping hierarchical references that are used to indicate how events propagate from node to node.</opc:Description>
<opc:InverseName>NotifierOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasOrderedComponent" BaseType="ua:HasComponent" PartNo="3">
<opc:Description>The type for non-looping hierarchical reference from a node to its component when the order of references matters.</opc:Description>
<opc:InverseName>OrderedComponentOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:FromState" BaseType="ua:NonHierarchicalReferences" PartNo="5">
<opc:Description>The type for a reference to the state before a transition.</opc:Description>
<opc:InverseName>ToTransition</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:ToState" BaseType="ua:NonHierarchicalReferences" PartNo="5">
<opc:Description>The type for a reference to the state after a transition.</opc:Description>
<opc:InverseName>FromTransition</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasCause" BaseType="ua:NonHierarchicalReferences" PartNo="5">
<opc:Description>The type for a reference to a method that can cause a transition to occur.</opc:Description>
<opc:InverseName>MayBeCausedBy</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasEffect" BaseType="ua:NonHierarchicalReferences" PartNo="5">
<opc:Description>The type for a reference to an event that may be raised when a transition occurs.</opc:Description>
<opc:InverseName>MayBeEffectedBy</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasSubStateMachine" BaseType="ua:NonHierarchicalReferences" PartNo="5">
<opc:Description>The type for a reference to a substate for a state.</opc:Description>
<opc:InverseName>SubStateMachineOf</opc:InverseName>
</opc:ReferenceType>
<opc:ReferenceType StringId="node_owner=builtin" SymbolicName="ua:HasHistoricalConfiguration" BaseType="ua:Aggregates" PartNo="11">
<opc:Description>The type for a reference to the historical configuration for a data variable.</opc:Description>
<opc:InverseName>HistoricalConfigurationOf</opc:InverseName>
</opc:ReferenceType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:BaseObjectType" PartNo="5">
<opc:Description>The base type for all object nodes.</opc:Description>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:FolderType" BaseType="ua:BaseObjectType" NoClassGeneration="true" PartNo="5">
<opc:Description>The type for objects that organize other nodes.</opc:Description>
</opc:ObjectType>
<opc:VariableType StringId="node_owner=builtin" SymbolicName="ua:BaseVariableType" IsAbstract="true" ValueRank="ScalarOrArray" PartNo="5">
<opc:Description>The abstract base type for all variable nodes.</opc:Description>
</opc:VariableType>
<opc:VariableType StringId="node_owner=builtin" SymbolicName="ua:BaseDataVariableType" BaseType="ua:BaseVariableType" ValueRank="ScalarOrArray" PartNo="5">
<opc:Description>The type for variable that represents a process value.</opc:Description>
</opc:VariableType>
<opc:VariableType StringId="node_owner=builtin" SymbolicName="ua:PropertyType" BaseType="ua:BaseVariableType" ValueRank="ScalarOrArray" PartNo="5">
<opc:Description>The type for variable that represents a property of another node.</opc:Description>
</opc:VariableType>
<opc:VariableType StringId="node_owner=builtin" SymbolicName="ua:DataTypeDescriptionType" BaseType="ua:BaseDataVariableType" DataType="ua:String" ValueRank="Scalar" PartNo="5">
<opc:Description>The type for variable that represents the description of a data type encoding.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DataTypeVersion" DataType="ua:String" ModellingRule="Optional">
<opc:Description>The version number for the data type description.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DictionaryFragment" DataType="ua:ByteString" ModellingRule="Optional">
<opc:Description>A fragment of a data type dictionary that defines the data type.</opc:Description>
</opc:Property>
</opc:Children>
</opc:VariableType>
<opc:VariableType StringId="node_owner=builtin" SymbolicName="ua:DataTypeDictionaryType" BaseType="ua:BaseDataVariableType" DataType="ua:ByteString" ValueRank="Scalar" PartNo="5">
<opc:Description>The type for variable that represents the collection of data type decriptions.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DataTypeVersion" DataType="ua:String" ModellingRule="Optional">
<opc:Description>The version number for the data type dictionary.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespaceUri" DataType="ua:String" ModellingRule="Optional">
<opc:Description>A URI that uniquely identifies the dictionary.</opc:Description>
</opc:Property>
</opc:Children>
</opc:VariableType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:DataTypeSystemType" BaseType="ua:BaseObjectType" PartNo="5" />
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:DataTypeEncodingType" BaseType="ua:BaseObjectType" PartNo="5" />
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:NamingRuleType" BaseType="ua:Enumeration" PartNo="3">
<opc:Description>Describes a value that specifies the significance of the BrowseName for an instance declaration.</opc:Description>
<opc:Fields>
<opc:Field Name="Mandatory" Identifier="1">
<opc:Description>The BrowseName must appear in all instances of the type.</opc:Description>
</opc:Field>
<opc:Field Name="Optional" Identifier="2">
<opc:Description>The BrowseName may appear in an instance of the type.</opc:Description>
</opc:Field>
<opc:Field Name="Constraint" Identifier="3">
<opc:Description>The modelling rule defines a constraint and the BrowseName is not used in an instance of the type.</opc:Description>
</opc:Field>
</opc:Fields>
</opc:DataType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:ModellingRuleType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>The type for an object that describes how an instance declaration is used when a type is instantiated.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamingRule" DataType="ua:NamingRuleType">
<opc:Description>Specified the significances of the BrowseName when a type is instantiated.</opc:Description>
<opc:DefaultValue>
<uax:Int32>1</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRule_Mandatory" TypeDefinition="ModellingRuleType" ModellingRule="None" PartNo="5">
<opc:BrowseName>Mandatory</opc:BrowseName>
<opc:Description>Specifies that an instance with the attributes and references of the instance declaration must appear when a type is instantiated.</opc:Description>
<opc:Children>
<opc:Property Declaration="ModellingRuleType_NamingRule">
<opc:DefaultValue>
<uax:Int32>1</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRule_Optional" TypeDefinition="ModellingRuleType" ModellingRule="None" PartNo="5">
<opc:BrowseName>Optional</opc:BrowseName>
<opc:Description>Specifies that an instance with the attributes and references of the instance declaration may appear when a type is instantiated.</opc:Description>
<opc:Children>
<opc:Property Declaration="ModellingRuleType_NamingRule">
<opc:DefaultValue>
<uax:Int32>2</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRule_ExposesItsArray" TypeDefinition="ModellingRuleType" ModellingRule="None" PartNo="5">
<opc:BrowseName>ExposesItsArray</opc:BrowseName>
<opc:Description>Specifies that an instance appears for each element of the containing array variable.</opc:Description>
<opc:Children>
<opc:Property Declaration="ModellingRuleType_NamingRule">
<opc:DefaultValue>
<uax:Int32>3</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRule_MandatoryShared" TypeDefinition="ModellingRuleType" ModellingRule="None" PartNo="5">
<opc:BrowseName>MandatoryShared</opc:BrowseName>
<opc:Description>Specifies that a reference to a shared instance must appear in when a type is instantiated.</opc:Description>
<opc:Children>
<opc:Property Declaration="ModellingRuleType_NamingRule">
<opc:DefaultValue>
<uax:Int32>1</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRule_OptionalPlaceholder" TypeDefinition="ModellingRuleType" ModellingRule="None" PartNo="5">
<opc:BrowseName>OptionalPlaceholder</opc:BrowseName>
<opc:Description>Specifies that zero or more instances with the attributes and references of the instance declaration may appear when a type is instantiated.</opc:Description>
<opc:Children>
<opc:Property Declaration="ModellingRuleType_NamingRule">
<opc:DefaultValue>
<uax:Int32>2</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRule_MandatoryPlaceholder" TypeDefinition="ModellingRuleType" ModellingRule="None" PartNo="5">
<opc:BrowseName>MandatoryPlaceholder</opc:BrowseName>
<opc:Description>Specifies that one or more instances with the attributes and references of the instance declaration must appear when a type is instantiated.</opc:Description>
<opc:Children>
<opc:Property Declaration="ModellingRuleType_NamingRule">
<opc:DefaultValue>
<uax:Int32>1</uax:Int32>
</opc:DefaultValue>
</opc:Property>
</opc:Children>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:RootFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>Root</opc:BrowseName>
<opc:Description>The root of the server address space.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ObjectsFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>Objects</opc:BrowseName>
<opc:Description>The browse entry point when looking for objects in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>RootFolder</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:TypesFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>Types</opc:BrowseName>
<opc:Description>The browse entry point when looking for types in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>RootFolder</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ViewsFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>Views</opc:BrowseName>
<opc:Description>The browse entry point when looking for views in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>RootFolder</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ObjectTypesFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>ObjectTypes</opc:BrowseName>
<opc:Description>The browse entry point when looking for object types in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>TypesFolder</opc:TargetId>
</opc:Reference>
<opc:Reference>
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>BaseObjectType</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:VariableTypesFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>VariableTypes</opc:BrowseName>
<opc:Description>The browse entry point when looking for variable types in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>TypesFolder</opc:TargetId>
</opc:Reference>
<opc:Reference>
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>BaseVariableType</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:DataTypesFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>DataTypes</opc:BrowseName>
<opc:Description>The browse entry point when looking for data types in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>TypesFolder</opc:TargetId>
</opc:Reference>
<opc:Reference>
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>BaseDataType</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ReferenceTypesFolder" TypeDefinition="FolderType" ModellingRule="None" PartNo="5">
<opc:BrowseName>ReferenceTypes</opc:BrowseName>
<opc:Description>The browse entry point when looking for reference types in the server address space.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>TypesFolder</opc:TargetId>
</opc:Reference>
<opc:Reference>
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>References</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:XmlSchema_TypeSystem" TypeDefinition="DataTypeSystemType" ModellingRule="None" PartNo="5">
<opc:BrowseName>XML Schema</opc:BrowseName>
<opc:Description>A type system which uses XML schema to describe the encoding of data types.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>DataTypesFolder</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:OPCBinarySchema_TypeSystem" TypeDefinition="DataTypeSystemType" ModellingRule="None" PartNo="5">
<opc:BrowseName>OPC Binary</opc:BrowseName>
<opc:Description>A type system which uses OPC binary schema to describe the encoding of data types.</opc:Description>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>Organizes</opc:ReferenceType>
<opc:TargetId>DataTypesFolder</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<!-- WT: END BuildInTypes.xml -->
<!-- WT: START StandardTypes.xml -->
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:OPCUANamespaceMetadata" TypeDefinition="ua:NamespaceMetadataType" PartNo="5">
<opc:BrowseName>http://opcfoundation.org/UA/</opc:BrowseName>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespaceUri" DataType="ua:String">
<opc:DefaultValue>
<uax:String>http://opcfoundation.org/UA/</uax:String>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespaceVersion" DataType="ua:String">
<opc:DefaultValue>
<uax:String>1.04</uax:String>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespacePublicationDate" DataType="ua:DateTime">
<opc:DefaultValue>
<uax:String>2016-12-31</uax:String>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:IsNamespaceSubset" DataType="ua:Boolean">
<opc:DefaultValue>
<uax:Boolean>false</uax:Boolean>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:StaticNodeIdTypes" DataType="ua:IdType" ValueRank="Array">
<opc:DefaultValue>
<uax:ListOfInt32>
<uax:Int32>0</uax:Int32>
</uax:ListOfInt32>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:StaticNumericNodeIdRange" DataType="ua:NumericRange" ValueRank="Array">
<opc:DefaultValue>
<uax:ListOfString>
<uax:String>1:65535</uax:String>
</uax:ListOfString>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:StaticStringNodeIdPattern" DataType="ua:String">
<opc:DefaultValue>
<uax:String></uax:String>
</opc:DefaultValue>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DefaultRolePermissions" ModellingRule="Mandatory" />
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DefaultUserRolePermissions" ModellingRule="Mandatory" />
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DefaultAccessRestrictions" ModellingRule="Mandatory" />
</opc:Children>
<opc:References>
<opc:Reference IsInverse="true">
<opc:ReferenceType>ua:Organizes</opc:ReferenceType>
<opc:TargetId>ua:Server_Namespaces</opc:TargetId>
</opc:Reference>
</opc:References>
</opc:Object>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NodeVersion" DataType="ua:String" PartNo="3">
<opc:Description>The version number of the node (used to indicate changes to references of the owning node).</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ViewVersion" DataType="ua:UInt32" PartNo="3">
<opc:Description>The version number of the view.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:Icon" DataType="ua:Image" PartNo="3">
<opc:Description>A small image representing the object.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:LocalTime" DataType="ua:TimeZoneDataType" PartNo="3">
<opc:Description>The local time where the owning variable value was collected.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:AllowNulls" DataType="ua:Boolean" PartNo="3">
<opc:Description>Whether the value of the owning variable is allowed to be null.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ValueAsText" DataType="ua:LocalizedText" PartNo="3">
<opc:Description>The string representation of the current value for a variable with an enumerated data type.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxStringLength" DataType="ua:UInt32" PartNo="3">
<opc:Description>The maximum length for a string that can be stored in the owning variable.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxByteStringLength" DataType="ua:UInt32" PartNo="3">
<opc:Description>The maximum length for a byte string that can be stored in the owning variable.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxArrayLength" DataType="ua:UInt32" PartNo="3">
<opc:Description>The maximum length for an array that can be stored in the owning variable.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:EngineeringUnits" DataType="ua:EUInformation" PartNo="3">
<opc:Description>The engineering units for the value of the owning variable.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:EnumStrings" DataType="ua:LocalizedText" ValueRank="Array" PartNo="3">
<opc:Description>The human readable strings associated with the values of an enumerated value (when values are sequential).</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:EnumValues" DataType="ua:EnumValueType" ValueRank="Array" PartNo="3">
<opc:Description>The human readable strings associated with the values of an enumerated value (when values have no sequence).</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:OptionSetValues" DataType="ua:LocalizedText" ValueRank="Array" PartNo="3">
<opc:Description>Contains the human-readable representation for each bit of the bit mask.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:InputArguments" DataType="ua:Argument" ValueRank="Array" PartNo="3">
<opc:Description>The input arguments for a method.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:OutputArguments" DataType="ua:Argument" ValueRank="Array" PartNo="3">
<opc:Description>The output arguments for a method.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:DefaultInputValues" DataType="ua:BaseDataType" ValueRank="Array" PartNo="3">
<opc:Description>Specifies the default values for optional input arguments.</opc:Description>
</opc:Property>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:ImageBMP" BaseType="ua:Image" PartNo="3">
<opc:Description>An image encoded in BMP format.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:ImageGIF" BaseType="ua:Image" PartNo="3">
<opc:Description>An image encoded in GIF format.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:ImageJPG" BaseType="ua:Image" PartNo="3">
<opc:Description>An image encoded in JPEG format.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:ImagePNG" BaseType="ua:Image" PartNo="3">
<opc:Description>An image encoded in PNG format.</opc:Description>
</opc:DataType>
<opc:DataType StringId="node_owner=builtin" SymbolicName="ua:AudioData" BaseType="ua:ByteString" PartNo="3">
<opc:Description>An image encoded in PNG format.</opc:Description>
</opc:DataType>
<!-- Part 5 - Standard Object Types -->
<!-- BaseObjectType BuiltInTypes.xml -->
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:ServerType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>Specifies the current status and capabilities of the server.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ServerArray" DataType="ua:String" ValueRank="Array" MinimumSamplingInterval="1000">
<opc:Description>The list of server URIs used by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespaceArray" DataType="ua:String" ValueRank="Array" MinimumSamplingInterval="1000">
<opc:Description>The list of namespace URIs used by the server.</opc:Description>
</opc:Property>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:ServerStatus" TypeDefinition="ServerStatusType" MinimumSamplingInterval="1000">
<opc:Description>The current status of the server.</opc:Description>
</opc:Variable>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ServiceLevel" DataType="ua:Byte" MinimumSamplingInterval="1000">
<opc:Description>A value indicating the level of service the server can provide. 255 indicates the best.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:Auditing" DataType="ua:Boolean" MinimumSamplingInterval="1000">
<opc:Description>A flag indicating whether the server is currently generating audit events.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:EstimatedReturnTime" DataType="ua:DateTime" MinimumSamplingInterval="1000" ModellingRule="Optional">
<opc:Description>Indicates the time at which the Server is expected to be available in the state RUNNING.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:LocalTime" DataType="ua:TimeZoneDataType" MinimumSamplingInterval="1000" ModellingRule="Optional">
<opc:Description>Indicates the time zone the Server is is running in.</opc:Description>
</opc:Property>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ServerCapabilities" TypeDefinition="ServerCapabilitiesType">
<opc:Description>Describes capabilities supported by the server.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ServerDiagnostics" TypeDefinition="ServerDiagnosticsType">
<opc:Description>Reports diagnostics about the server.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:VendorServerInfo" TypeDefinition="VendorServerInfoType">
<opc:Description>Server information provided by the vendor.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ServerRedundancy" TypeDefinition="ServerRedundancyType">
<opc:Description>Describes the redundancy capabilities of the server.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:Namespaces" TypeDefinition="NamespacesType" ModellingRule="Optional">
<opc:Description>Describes the namespaces supported by the server.</opc:Description>
</opc:Object>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:GetMonitoredItems" TypeDefinition="GetMonitoredItemsMethodType" ModellingRule="Optional">
<opc:Description>Returns the monitored items for a subscription.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:ResendData" TypeDefinition="ResendDataMethodType" ModellingRule="Optional">
<opc:Description>Resends the last values cached for each data monitored item in the subscription.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:SetSubscriptionDurable" TypeDefinition="SetSubscriptionDurableMethodType" ModellingRule="Optional">
<opc:Description>Sets the durable state for the subscription.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:RequestServerStateChange" TypeDefinition="RequestServerStateChangeMethodType" ModellingRule="Optional">
<opc:Description>Requests a state change in the server.</opc:Description>
</opc:Method>
</opc:Children>
<opc:ClassName>ServerObject</opc:ClassName>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:ServerCapabilitiesType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>Describes the capabilities supported by the server.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ServerProfileArray" DataType="ua:String" ValueRank="Array">
<opc:Description>A list of profiles supported by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:LocaleIdArray" DataType="ua:LocaleId" ValueRank="Array">
<opc:Description>A list of locales supported by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MinSupportedSampleRate" DataType="ua:Duration">
<opc:Description>The minimum sampling interval supported by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxBrowseContinuationPoints" DataType="ua:UInt16">
<opc:Description>The maximum number of continuation points for Browse operations per session.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxQueryContinuationPoints" DataType="ua:UInt16">
<opc:Description>The maximum number of continuation points for Query operations per session.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxHistoryContinuationPoints" DataType="ua:UInt16">
<opc:Description>The maximum number of continuation points for ReadHistory operations per session.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:SoftwareCertificates" DataType="ua:SignedSoftwareCertificate" ValueRank="Array">
<opc:Description>The software certificates owned by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxArrayLength" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum length for an array value supported by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxStringLength" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum length for a string value supported by the server.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxByteStringLength" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum length for a byte string value supported by the server.</opc:Description>
</opc:Property>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:OperationLimits" TypeDefinition="OperationLimitsType" ModellingRule="Optional">
<opc:Description>Defines the limits supported by the server for different operations.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ModellingRules" TypeDefinition="ua:FolderType">
<opc:Description>A folder for the modelling rules supported by the server.</opc:Description>
</opc:Object>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:AggregateFunctions" TypeDefinition="FolderType">
<opc:Description>A folder for the real time aggregates supported by the server.</opc:Description>
</opc:Object>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:VendorCapability_Placeholder" TypeDefinition="ServerVendorCapabilityType" ModellingRule="OptionalPlaceholder">
<opc:BrowseName><VendorCapability></opc:BrowseName>
</opc:Variable>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:Roles" TypeDefinition="RoleSetType" ModellingRule="Optional">
<opc:Description>Describes the roles supported by the server.</opc:Description>
</opc:Object>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:ServerDiagnosticsType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>The diagnostics information for a server.</opc:Description>
<opc:Children>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:ServerDiagnosticsSummary" TypeDefinition="ServerDiagnosticsSummaryType">
<opc:Description>A summary of server level diagnostics.</opc:Description>
</opc:Variable>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SamplingIntervalDiagnosticsArray" TypeDefinition="SamplingIntervalDiagnosticsArrayType" ModellingRule="Optional">
<opc:Description>A list of diagnostics for each sampling interval supported by the server.</opc:Description>
</opc:Variable>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SubscriptionDiagnosticsArray" TypeDefinition="SubscriptionDiagnosticsArrayType">
<opc:Description>A list of diagnostics for each active subscription.</opc:Description>
</opc:Variable>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:SessionsDiagnosticsSummary" TypeDefinition="SessionsDiagnosticsSummaryType">
<opc:Description>A summary of session level diagnostics.</opc:Description>
</opc:Object>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:EnabledFlag" DataType="ua:Boolean" AccessLevel="ReadWrite">
<opc:Description>If TRUE the diagnostics collection is enabled.</opc:Description>
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:SessionsDiagnosticsSummaryType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>Provides a summary of session level diagnostics.</opc:Description>
<opc:Children>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SessionDiagnosticsArray" TypeDefinition="SessionDiagnosticsArrayType">
<opc:Description>A list of diagnostics for each active session.</opc:Description>
</opc:Variable>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SessionSecurityDiagnosticsArray" TypeDefinition="SessionSecurityDiagnosticsArrayType">
<opc:Description>A list of security related diagnostics for each active session.</opc:Description>
</opc:Variable>
<opc:Object StringId="node_owner=builtin" SymbolicName="ua:ClientName_Placeholder" TypeDefinition="SessionDiagnosticsObjectType" ModellingRule="OptionalPlaceholder">
<opc:BrowseName><ClientName></opc:BrowseName>
</opc:Object>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:SessionDiagnosticsObjectType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>A container for session level diagnostics information.</opc:Description>
<opc:Children>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SessionDiagnostics" TypeDefinition="SessionDiagnosticsVariableType">
<opc:Description>Diagnostics information for an active session.</opc:Description>
</opc:Variable>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SessionSecurityDiagnostics" TypeDefinition="SessionSecurityDiagnosticsType">
<opc:Description>Security related diagnostics information for an active session.</opc:Description>
</opc:Variable>
<opc:Variable StringId="node_owner=builtin" SymbolicName="ua:SubscriptionDiagnosticsArray" DataType="ua:SubscriptionDiagnosticsDataType" ValueRank="Array" TypeDefinition="SubscriptionDiagnosticsArrayType">
<opc:Description>A list of diagnostics for each subscription owned by the session.</opc:Description>
</opc:Variable>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:VendorServerInfoType" BaseType="ua:BaseObjectType" NoClassGeneration="true" PartNo="5">
<opc:Description>A base type for vendor specific server information.</opc:Description>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:ServerRedundancyType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>A base type for an object that describe how a server supports redundancy.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:RedundancySupport" DataType="ua:RedundancySupport">
<opc:Description>Indicates what style of redundancy is supported by the server.</opc:Description>
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:TransparentRedundancyType" BaseType="ua:ServerRedundancyType" PartNo="5">
<opc:Description>Identifies the capabilties of server that supports transparent redundancy.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:CurrentServerId" DataType="ua:String">
<opc:Description>The ID of the server that is currently in use.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:RedundantServerArray" DataType="ua:RedundantServerDataType" ValueRank="Array">
<opc:Description>A list of servers in the same redundant set.</opc:Description>
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:NonTransparentRedundancyType" BaseType="ua:ServerRedundancyType" PartNo="5">
<opc:Description>Identifies the capabilties of server that supports non-transparent redundancy.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ServerUriArray" DataType="ua:String" ValueRank="Array">
<opc:Description>A list of servers in the same redundant set.</opc:Description>
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:NonTransparentNetworkRedundancyType" BaseType="ua:NonTransparentRedundancyType" PartNo="5">
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:ServerNetworkGroups" DataType="ua:NetworkGroupDataType" ValueRank="Array">
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:OperationLimitsType" BaseType="ua:FolderType" PartNo="5">
<opc:Description>Identifies the operation limits imposed by the server.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerRead" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single Read request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerHistoryReadData" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single data HistoryRead request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerHistoryReadEvents" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single event HistoryRead request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerWrite" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single Write request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerHistoryUpdateData" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single data HistoryUpdate request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerHistoryUpdateEvents" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single event HistoryUpdate request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerMethodCall" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single Call request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerBrowse" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single Browse request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerRegisterNodes" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single RegisterNodes request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerTranslateBrowsePathsToNodeIds" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single TranslateBrowsePathsToNodeIds request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxNodesPerNodeManagement" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single AddNodes, AddReferences, DeleteNodes or DeleteReferences request.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MaxMonitoredItemsPerCall" DataType="ua:UInt32" ModellingRule="Optional">
<opc:Description>The maximum number of operations in a single MonitoredItem related request.</opc:Description>
</opc:Property>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:FileType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>An object that represents a file that can be accessed via the server.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:Size" DataType="ua:UInt64">
<opc:Description>The size of the file in bytes.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:Writable" DataType="ua:Boolean">
<opc:Description>Whether the file is writable.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:UserWritable" DataType="ua:Boolean">
<opc:Description>Whether the file is writable by the current user.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:OpenCount" DataType="ua:UInt16">
<opc:Description>The current number of open file handles.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:MimeType" DataType="ua:String" ModellingRule="Optional">
<opc:Description>The content of the file.</opc:Description>
</opc:Property>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:Open" TypeDefinition="OpenMethodType">
<opc:Description>Opens the file for use by the current session.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:Close" TypeDefinition="CloseMethodType">
<opc:Description>Closes the file.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:Read" TypeDefinition="ReadMethodType">
<opc:Description>Reads a block of bytes from the file.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:Write" TypeDefinition="WriteMethodType">
<opc:Description>Writes a block of bytes to the file.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:GetPosition" TypeDefinition="GetPositionMethodType">
<opc:Description>Returns the current position in the file.</opc:Description>
</opc:Method>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:SetPosition" TypeDefinition="SetPositionMethodType">
<opc:Description>Sets the current position in the file.</opc:Description>
</opc:Method>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:AddressSpaceFileType" BaseType="ua:FileType" PartNo="5">
<opc:Description>A file used to store a namespace exported from the server.</opc:Description>
<opc:Children>
<opc:Method StringId="node_owner=builtin" SymbolicName="ua:ExportNamespace" ModellingRule="Optional">
<opc:Description>Updates the file by exporting the server namespace.</opc:Description>
</opc:Method>
</opc:Children>
</opc:ObjectType>
<opc:ObjectType StringId="node_owner=builtin" SymbolicName="ua:NamespaceMetadataType" BaseType="ua:BaseObjectType" PartNo="5">
<opc:Description>Provides the metadata for a namespace used by the server.</opc:Description>
<opc:Children>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespaceUri" DataType="ua:String">
<opc:Description>The URI of the namespace.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespaceVersion" DataType="ua:String">
<opc:Description>The human readable string representing version of the namespace.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:NamespacePublicationDate" DataType="ua:DateTime">
<opc:Description>The publication date for the namespace.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:IsNamespaceSubset" DataType="ua:Boolean">
<opc:Description>If TRUE then the server only supports a subset of the namespace.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:StaticNodeIdTypes" DataType="ua:IdType" ValueRank="Array">
<opc:Description>A list of IdTypes for nodes which are the same in every server that exposes them.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:StaticNumericNodeIdRange" DataType="ua:NumericRange" ValueRank="Array">
<opc:Description>A list of ranges for numeric node ids which are the same in every server that exposes them.</opc:Description>
</opc:Property>
<opc:Property StringId="node_owner=builtin" SymbolicName="ua:StaticStringNodeIdPattern" DataType="ua:String" ValueRank="Scalar">