node-opcua-address-space 2.62.3 → 2.62.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/base_node_private.js +7 -2
- package/dist/src/base_node_private.js.map +1 -1
- package/dist/src/index_current.d.ts +3 -0
- package/dist/src/index_current.js +3 -0
- package/dist/src/index_current.js.map +1 -1
- package/dist/src/nodeset_tools/nodeset_to_xml.js +4 -3
- package/dist/src/nodeset_tools/nodeset_to_xml.js.map +1 -1
- package/dist/src/ua_object_type_impl.js +1 -1
- package/dist/src/ua_object_type_impl.js.map +1 -1
- package/dist/src/ua_variable_impl.js +24 -9
- package/dist/src/ua_variable_impl.js.map +1 -1
- package/dist/src/ua_variable_type_impl.js +1 -1
- package/dist/src/ua_variable_type_impl.js.map +1 -1
- package/package.json +37 -37
- package/src/base_node_private.ts +7 -2
- package/src/index_current.ts +5 -0
- package/src/nodeset_tools/nodeset_to_xml.ts +7 -6
- package/src/ua_object_type_impl.ts +1 -1
- package/src/ua_variable_impl.ts +27 -9
- package/src/ua_variable_type_impl.ts +1 -1
- package/test_helpers/test_fixtures/example_issue1096.xml +267 -0
package/src/ua_variable_impl.ts
CHANGED
|
@@ -641,6 +641,10 @@ export class UAVariableImpl extends BaseNodeImpl implements UAVariable {
|
|
|
641
641
|
return DataType.Null;
|
|
642
642
|
}
|
|
643
643
|
const addressSpace = this.addressSpace;
|
|
644
|
+
if (!addressSpace) {
|
|
645
|
+
// may be node has been deleted already
|
|
646
|
+
return DataType.Null;
|
|
647
|
+
}
|
|
644
648
|
const dataTypeNode = addressSpace.findDataType(this.dataType)!;
|
|
645
649
|
const basicDataType =
|
|
646
650
|
dataTypeNode && dataTypeNode.nodeClass === NodeClass.DataType ? dataTypeNode.getBasicDataType() : DataType.Null;
|
|
@@ -677,7 +681,7 @@ export class UAVariableImpl extends BaseNodeImpl implements UAVariable {
|
|
|
677
681
|
if (
|
|
678
682
|
this.dataType.namespace === 0 &&
|
|
679
683
|
this.dataType.value === DataType.LocalizedText &&
|
|
680
|
-
variant.dataType !== DataType.LocalizedText
|
|
684
|
+
variant.dataType !== DataType.LocalizedText && variant.dataType !== DataType.Null
|
|
681
685
|
) {
|
|
682
686
|
throw new Error(
|
|
683
687
|
"Variant must provide a valid LocalizedText : variant = " +
|
|
@@ -688,6 +692,14 @@ export class UAVariableImpl extends BaseNodeImpl implements UAVariable {
|
|
|
688
692
|
}
|
|
689
693
|
}
|
|
690
694
|
const basicType = this.getBasicDataType();
|
|
695
|
+
|
|
696
|
+
if (basicType === DataType.String && variant.dataType === DataType.ByteString) {
|
|
697
|
+
return; // this is allowed
|
|
698
|
+
}
|
|
699
|
+
if (basicType === DataType.ByteString && variant.dataType === DataType.String) {
|
|
700
|
+
return; // this is allowed
|
|
701
|
+
}
|
|
702
|
+
|
|
691
703
|
if (
|
|
692
704
|
basicType !== DataType.Null &&
|
|
693
705
|
basicType !== DataType.Variant &&
|
|
@@ -1771,7 +1783,13 @@ export class UAVariableImpl extends BaseNodeImpl implements UAVariable {
|
|
|
1771
1783
|
assert(dataValue, "expecting a dataValue");
|
|
1772
1784
|
assert(dataValue instanceof DataValue, "expecting dataValue to be a DataValue");
|
|
1773
1785
|
assert(dataValue !== this.$dataValue, "expecting dataValue to be different from previous DataValue instance");
|
|
1786
|
+
|
|
1774
1787
|
|
|
1788
|
+
const addressSpace = this.addressSpace;
|
|
1789
|
+
if(!addressSpace) {
|
|
1790
|
+
warningLog("UAVariable#_internal_set_dataValue : no addressSpace ! may be node has already been deleted ?");
|
|
1791
|
+
return;
|
|
1792
|
+
}
|
|
1775
1793
|
if (dataValue.value.arrayType === VariantArrayType.Matrix) {
|
|
1776
1794
|
if (!dataValue.value.dimensions) {
|
|
1777
1795
|
throw new Error("missing dimensions: a Matrix Variant needs a dimension");
|
|
@@ -1791,14 +1809,14 @@ export class UAVariableImpl extends BaseNodeImpl implements UAVariable {
|
|
|
1791
1809
|
throw new Error("Invalid Extension Object on nodeId =" + this.nodeId.toString());
|
|
1792
1810
|
}
|
|
1793
1811
|
}
|
|
1794
|
-
// istanbul ignore next
|
|
1795
|
-
if (this.dataType.namespace === 0) {
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
}
|
|
1812
|
+
// // istanbul ignore next
|
|
1813
|
+
// if (this.dataType.namespace === 0) {
|
|
1814
|
+
// if (this.dataType.value === DataType.LocalizedText && dataValue.value.dataType !== DataType.LocalizedText) {
|
|
1815
|
+
// const message = "Invalid dataValue provided (expecting a LocalizedText) but got " + dataValue.toString();
|
|
1816
|
+
// errorLog(message);
|
|
1817
|
+
// // throw new Error(message);
|
|
1818
|
+
// }
|
|
1819
|
+
// }
|
|
1802
1820
|
|
|
1803
1821
|
this.verifyVariantCompatibility(dataValue.value);
|
|
1804
1822
|
|
|
@@ -245,7 +245,7 @@ export class UAVariableTypeImpl extends BaseNodeImpl implements UAVariableType {
|
|
|
245
245
|
componentOf: options.componentOf,
|
|
246
246
|
dataType,
|
|
247
247
|
description: options.description || this.description,
|
|
248
|
-
displayName: options.displayName ||
|
|
248
|
+
displayName: options.displayName || "",
|
|
249
249
|
eventSourceOf: options.eventSourceOf,
|
|
250
250
|
minimumSamplingInterval: options.minimumSamplingInterval,
|
|
251
251
|
modellingRule: options.modellingRule,
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<UANodeSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" xmlns="http://opcfoundation.org/UA/2011/03/UANodeSet.xsd" xmlns:s1="http://yourorganisation.org/example/Types.xsd" xmlns:ua="http://unifiedautomation.com/Configuration/NodeSet.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
3
|
+
<NamespaceUris>
|
|
4
|
+
<Uri>http://yourorganisation.org/example/</Uri>
|
|
5
|
+
</NamespaceUris>
|
|
6
|
+
<Models>
|
|
7
|
+
<Model ModelUri="http://yourorganisation.org/example/" PublicationDate="2021-12-03T13:04:32Z" Version="1.0.0">
|
|
8
|
+
<RequiredModel ModelUri="http://opcfoundation.org/UA/" PublicationDate="2020-07-15T00:00:00Z" Version="1.04.7"/>
|
|
9
|
+
</Model>
|
|
10
|
+
</Models>
|
|
11
|
+
<Aliases>
|
|
12
|
+
<Alias Alias="Boolean">i=1</Alias>
|
|
13
|
+
<Alias Alias="String">i=12</Alias>
|
|
14
|
+
<Alias Alias="DateTime">i=13</Alias>
|
|
15
|
+
<Alias Alias="ByteString">i=15</Alias>
|
|
16
|
+
<Alias Alias="Organizes">i=35</Alias>
|
|
17
|
+
<Alias Alias="HasEncoding">i=38</Alias>
|
|
18
|
+
<Alias Alias="HasDescription">i=39</Alias>
|
|
19
|
+
<Alias Alias="HasTypeDefinition">i=40</Alias>
|
|
20
|
+
<Alias Alias="HasSubtype">i=45</Alias>
|
|
21
|
+
<Alias Alias="HasProperty">i=46</Alias>
|
|
22
|
+
<Alias Alias="HasComponent">i=47</Alias>
|
|
23
|
+
<Alias Alias="IdType">i=256</Alias>
|
|
24
|
+
<Alias Alias="NumericRange">i=291</Alias>
|
|
25
|
+
<Alias Alias="ExampleStructure">ns=1;i=3002</Alias>
|
|
26
|
+
</Aliases>
|
|
27
|
+
<Extensions>
|
|
28
|
+
<Extension>
|
|
29
|
+
<ua:ModelInfo Tool="UaModeler" Hash="zy7KWmxTkPVYa53+z6+7rw==" Version="1.6.5"/>
|
|
30
|
+
</Extension>
|
|
31
|
+
</Extensions>
|
|
32
|
+
<UADataType NodeId="ns=1;i=3002" BrowseName="1:ExampleStructure">
|
|
33
|
+
<DisplayName>ExampleStructure</DisplayName>
|
|
34
|
+
<References>
|
|
35
|
+
<Reference ReferenceType="HasEncoding">ns=1;i=5001</Reference>
|
|
36
|
+
<Reference ReferenceType="HasEncoding">ns=1;i=5003</Reference>
|
|
37
|
+
<Reference ReferenceType="HasEncoding">ns=1;i=5002</Reference>
|
|
38
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
39
|
+
</References>
|
|
40
|
+
<Definition Name="1:ExampleStructure">
|
|
41
|
+
<Field DataType="String" Name="Field1"/>
|
|
42
|
+
<Field DataType="String" Name="field2"/>
|
|
43
|
+
</Definition>
|
|
44
|
+
</UADataType>
|
|
45
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=6001" NodeId="ns=1;i=6005" BrowseName="1:ExampleStructure">
|
|
46
|
+
<DisplayName>ExampleStructure</DisplayName>
|
|
47
|
+
<References>
|
|
48
|
+
<Reference ReferenceType="HasComponent" IsForward="false">ns=1;i=6001</Reference>
|
|
49
|
+
<Reference ReferenceType="HasTypeDefinition">i=69</Reference>
|
|
50
|
+
<Reference ReferenceType="HasDescription" IsForward="false">ns=1;i=5001</Reference>
|
|
51
|
+
</References>
|
|
52
|
+
<Value>
|
|
53
|
+
<uax:String>ExampleStructure</uax:String>
|
|
54
|
+
</Value>
|
|
55
|
+
</UAVariable>
|
|
56
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=6003" NodeId="ns=1;i=6006" BrowseName="1:ExampleStructure">
|
|
57
|
+
<DisplayName>ExampleStructure</DisplayName>
|
|
58
|
+
<References>
|
|
59
|
+
<Reference ReferenceType="HasComponent" IsForward="false">ns=1;i=6003</Reference>
|
|
60
|
+
<Reference ReferenceType="HasTypeDefinition">i=69</Reference>
|
|
61
|
+
<Reference ReferenceType="HasDescription" IsForward="false">ns=1;i=5002</Reference>
|
|
62
|
+
</References>
|
|
63
|
+
<Value>
|
|
64
|
+
<uax:String>//xs:element[@name='ExampleStructure']</uax:String>
|
|
65
|
+
</Value>
|
|
66
|
+
</UAVariable>
|
|
67
|
+
<UAVariable SymbolicName="TypeDictionary_BinarySchema" DataType="ByteString" NodeId="ns=1;i=6001" BrowseName="1:TypeDictionary">
|
|
68
|
+
<DisplayName>TypeDictionary</DisplayName>
|
|
69
|
+
<Description>Collects the data type descriptions of http://yourorganisation.org/example/</Description>
|
|
70
|
+
<References>
|
|
71
|
+
<Reference ReferenceType="HasComponent">ns=1;i=6005</Reference>
|
|
72
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6002</Reference>
|
|
73
|
+
<Reference ReferenceType="HasTypeDefinition">i=72</Reference>
|
|
74
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=93</Reference>
|
|
75
|
+
</References>
|
|
76
|
+
<Value>
|
|
77
|
+
<uax:ByteString>PG9wYzpUeXBlRGljdGlvbmFyeSB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZ
|
|
78
|
+
W1hLWluc3RhbmNlIiB4bWxuczp0bnM9Imh0dHA6Ly95b3Vyb3JnYW5pc2F0aW9uLm9yZy9le
|
|
79
|
+
GFtcGxlLyIgRGVmYXVsdEJ5dGVPcmRlcj0iTGl0dGxlRW5kaWFuIiB4bWxuczpvcGM9Imh0d
|
|
80
|
+
HA6Ly9vcGNmb3VuZGF0aW9uLm9yZy9CaW5hcnlTY2hlbWEvIiB4bWxuczp1YT0iaHR0cDovL
|
|
81
|
+
29wY2ZvdW5kYXRpb24ub3JnL1VBLyIgVGFyZ2V0TmFtZXNwYWNlPSJodHRwOi8veW91cm9yZ
|
|
82
|
+
2FuaXNhdGlvbi5vcmcvZXhhbXBsZS8iPgogPG9wYzpJbXBvcnQgTmFtZXNwYWNlPSJodHRwO
|
|
83
|
+
i8vb3BjZm91bmRhdGlvbi5vcmcvVUEvIi8+CiA8b3BjOlN0cnVjdHVyZWRUeXBlIEJhc2VUe
|
|
84
|
+
XBlPSJ1YTpFeHRlbnNpb25PYmplY3QiIE5hbWU9IkV4YW1wbGVTdHJ1Y3R1cmUiPgogIDxvc
|
|
85
|
+
GM6RmllbGQgVHlwZU5hbWU9Im9wYzpDaGFyQXJyYXkiIE5hbWU9IkZpZWxkMSIvPgogIDxvc
|
|
86
|
+
GM6RmllbGQgVHlwZU5hbWU9Im9wYzpDaGFyQXJyYXkiIE5hbWU9ImZpZWxkMiIvPgogPC9vc
|
|
87
|
+
GM6U3RydWN0dXJlZFR5cGU+Cjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pgo=</uax:ByteString>
|
|
88
|
+
</Value>
|
|
89
|
+
</UAVariable>
|
|
90
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=6001" NodeId="ns=1;i=6002" BrowseName="NamespaceUri">
|
|
91
|
+
<DisplayName>NamespaceUri</DisplayName>
|
|
92
|
+
<References>
|
|
93
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
94
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=6001</Reference>
|
|
95
|
+
</References>
|
|
96
|
+
<Value>
|
|
97
|
+
<uax:String>http://yourorganisation.org/example/</uax:String>
|
|
98
|
+
</Value>
|
|
99
|
+
</UAVariable>
|
|
100
|
+
<UAVariable SymbolicName="TypeDictionary_XmlSchema" DataType="ByteString" NodeId="ns=1;i=6003" BrowseName="1:TypeDictionary">
|
|
101
|
+
<DisplayName>TypeDictionary</DisplayName>
|
|
102
|
+
<Description>Collects the data type descriptions of http://yourorganisation.org/example/</Description>
|
|
103
|
+
<References>
|
|
104
|
+
<Reference ReferenceType="HasComponent">ns=1;i=6006</Reference>
|
|
105
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6004</Reference>
|
|
106
|
+
<Reference ReferenceType="HasTypeDefinition">i=72</Reference>
|
|
107
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=92</Reference>
|
|
108
|
+
</References>
|
|
109
|
+
<Value>
|
|
110
|
+
<uax:ByteString>PHhzOnNjaGVtYSBlbGVtZW50Rm9ybURlZmF1bHQ9InF1YWxpZmllZCIgdGFyZ2V0TmFtZXNwYWNlPSJod
|
|
111
|
+
HRwOi8veW91cm9yZ2FuaXNhdGlvbi5vcmcvZXhhbXBsZS9UeXBlcy54c2QiIHhtbG5zOnRuc
|
|
112
|
+
z0iaHR0cDovL3lvdXJvcmdhbmlzYXRpb24ub3JnL2V4YW1wbGUvVHlwZXMueHNkIiB4bWxuc
|
|
113
|
+
zp1YT0iaHR0cDovL29wY2ZvdW5kYXRpb24ub3JnL1VBLzIwMDgvMDIvVHlwZXMueHNkIiB4b
|
|
114
|
+
Wxuczp4cz0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiPgogPHhzOmltcG9yd
|
|
115
|
+
CBuYW1lc3BhY2U9Imh0dHA6Ly9vcGNmb3VuZGF0aW9uLm9yZy9VQS8yMDA4LzAyL1R5cGVzL
|
|
116
|
+
nhzZCIvPgogPHhzOmNvbXBsZXhUeXBlIG5hbWU9IkV4YW1wbGVTdHJ1Y3R1cmUiPgogIDx4c
|
|
117
|
+
zpzZXF1ZW5jZT4KICAgPHhzOmVsZW1lbnQgbWluT2NjdXJzPSIwIiBtYXhPY2N1cnM9IjEiI
|
|
118
|
+
HR5cGU9InhzOnN0cmluZyIgbmFtZT0iRmllbGQxIi8+CiAgIDx4czplbGVtZW50IG1pbk9jY
|
|
119
|
+
3Vycz0iMCIgbWF4T2NjdXJzPSIxIiB0eXBlPSJ4czpzdHJpbmciIG5hbWU9ImZpZWxkMiIvP
|
|
120
|
+
gogIDwveHM6c2VxdWVuY2U+CiA8L3hzOmNvbXBsZXhUeXBlPgogPHhzOmVsZW1lbnQgdHlwZ
|
|
121
|
+
T0idG5zOkV4YW1wbGVTdHJ1Y3R1cmUiIG5hbWU9IkV4YW1wbGVTdHJ1Y3R1cmUiLz4KIDx4c
|
|
122
|
+
zpjb21wbGV4VHlwZSBuYW1lPSJMaXN0T2ZFeGFtcGxlU3RydWN0dXJlIj4KICA8eHM6c2Vxd
|
|
123
|
+
WVuY2U+CiAgIDx4czplbGVtZW50IG1pbk9jY3Vycz0iMCIgbWF4T2NjdXJzPSJ1bmJvdW5kZ
|
|
124
|
+
WQiIHR5cGU9InRuczpFeGFtcGxlU3RydWN0dXJlIiBuYW1lPSJFeGFtcGxlU3RydWN0dXJlI
|
|
125
|
+
iBuaWxsYWJsZT0idHJ1ZSIvPgogIDwveHM6c2VxdWVuY2U+CiA8L3hzOmNvbXBsZXhUeXBlP
|
|
126
|
+
gogPHhzOmVsZW1lbnQgdHlwZT0idG5zOkxpc3RPZkV4YW1wbGVTdHJ1Y3R1cmUiIG5hbWU9I
|
|
127
|
+
kxpc3RPZkV4YW1wbGVTdHJ1Y3R1cmUiIG5pbGxhYmxlPSJ0cnVlIi8+CjwveHM6c2NoZW1hP
|
|
128
|
+
go=</uax:ByteString>
|
|
129
|
+
</Value>
|
|
130
|
+
</UAVariable>
|
|
131
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=6003" NodeId="ns=1;i=6004" BrowseName="NamespaceUri">
|
|
132
|
+
<DisplayName>NamespaceUri</DisplayName>
|
|
133
|
+
<References>
|
|
134
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
135
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=6003</Reference>
|
|
136
|
+
</References>
|
|
137
|
+
<Value>
|
|
138
|
+
<uax:String>http://yourorganisation.org/example/Types.xsd</uax:String>
|
|
139
|
+
</Value>
|
|
140
|
+
</UAVariable>
|
|
141
|
+
<UAObject NodeId="ns=1;i=5005" BrowseName="1:ExampleObject">
|
|
142
|
+
<DisplayName>ExampleObject</DisplayName>
|
|
143
|
+
<References>
|
|
144
|
+
<Reference ReferenceType="HasTypeDefinition">i=58</Reference>
|
|
145
|
+
<Reference ReferenceType="Organizes" IsForward="false">i=85</Reference>
|
|
146
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6007</Reference>
|
|
147
|
+
</References>
|
|
148
|
+
</UAObject>
|
|
149
|
+
<UAVariable DataType="ExampleStructure" NodeId="ns=1;i=6007" BrowseName="1:ExampleStructureInstance" AccessLevel="3">
|
|
150
|
+
<DisplayName>ExampleStructureInstance</DisplayName>
|
|
151
|
+
<References>
|
|
152
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
153
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5005</Reference>
|
|
154
|
+
</References>
|
|
155
|
+
<Value>
|
|
156
|
+
<uax:ExtensionObject>
|
|
157
|
+
<uax:TypeId>
|
|
158
|
+
<uax:Identifier>ns=1;i=5002</uax:Identifier>
|
|
159
|
+
</uax:TypeId>
|
|
160
|
+
<uax:Body>
|
|
161
|
+
<ExampleStructure xmlns="http://yourorganisation.org/example/Types.xsd">
|
|
162
|
+
<Field1>value1</Field1>
|
|
163
|
+
<field2>value2</field2>
|
|
164
|
+
</ExampleStructure>
|
|
165
|
+
</uax:Body>
|
|
166
|
+
</uax:ExtensionObject>
|
|
167
|
+
</Value>
|
|
168
|
+
</UAVariable>
|
|
169
|
+
<UAObject SymbolicName="http___yourorganisation_org_example_" NodeId="ns=1;i=5004" BrowseName="1:http://yourorganisation.org/example/">
|
|
170
|
+
<DisplayName>http://yourorganisation.org/example/</DisplayName>
|
|
171
|
+
<References>
|
|
172
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6008</Reference>
|
|
173
|
+
<Reference ReferenceType="HasTypeDefinition">i=11616</Reference>
|
|
174
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=11715</Reference>
|
|
175
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6009</Reference>
|
|
176
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6010</Reference>
|
|
177
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6011</Reference>
|
|
178
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6012</Reference>
|
|
179
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6013</Reference>
|
|
180
|
+
<Reference ReferenceType="HasProperty">ns=1;i=6014</Reference>
|
|
181
|
+
</References>
|
|
182
|
+
</UAObject>
|
|
183
|
+
<UAVariable DataType="Boolean" ParentNodeId="ns=1;i=5004" NodeId="ns=1;i=6008" BrowseName="IsNamespaceSubset">
|
|
184
|
+
<DisplayName>IsNamespaceSubset</DisplayName>
|
|
185
|
+
<References>
|
|
186
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
187
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
188
|
+
</References>
|
|
189
|
+
<Value>
|
|
190
|
+
<uax:Boolean>false</uax:Boolean>
|
|
191
|
+
</Value>
|
|
192
|
+
</UAVariable>
|
|
193
|
+
<UAVariable DataType="DateTime" ParentNodeId="ns=1;i=5004" NodeId="ns=1;i=6009" BrowseName="NamespacePublicationDate">
|
|
194
|
+
<DisplayName>NamespacePublicationDate</DisplayName>
|
|
195
|
+
<References>
|
|
196
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
197
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
198
|
+
</References>
|
|
199
|
+
<Value>
|
|
200
|
+
<uax:DateTime>2021-12-03T13:04:32Z</uax:DateTime>
|
|
201
|
+
</Value>
|
|
202
|
+
</UAVariable>
|
|
203
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=5004" NodeId="ns=1;i=6010" BrowseName="NamespaceUri">
|
|
204
|
+
<DisplayName>NamespaceUri</DisplayName>
|
|
205
|
+
<References>
|
|
206
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
207
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
208
|
+
</References>
|
|
209
|
+
<Value>
|
|
210
|
+
<uax:String>http://yourorganisation.org/example/</uax:String>
|
|
211
|
+
</Value>
|
|
212
|
+
</UAVariable>
|
|
213
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=5004" NodeId="ns=1;i=6011" BrowseName="NamespaceVersion">
|
|
214
|
+
<DisplayName>NamespaceVersion</DisplayName>
|
|
215
|
+
<References>
|
|
216
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
217
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
218
|
+
</References>
|
|
219
|
+
<Value>
|
|
220
|
+
<uax:String>1.0.0</uax:String>
|
|
221
|
+
</Value>
|
|
222
|
+
</UAVariable>
|
|
223
|
+
<UAVariable DataType="IdType" ParentNodeId="ns=1;i=5004" ValueRank="1" NodeId="ns=1;i=6012" ArrayDimensions="0" BrowseName="StaticNodeIdTypes">
|
|
224
|
+
<DisplayName>StaticNodeIdTypes</DisplayName>
|
|
225
|
+
<References>
|
|
226
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
227
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
228
|
+
</References>
|
|
229
|
+
</UAVariable>
|
|
230
|
+
<UAVariable DataType="NumericRange" ParentNodeId="ns=1;i=5004" ValueRank="1" NodeId="ns=1;i=6013" ArrayDimensions="0" BrowseName="StaticNumericNodeIdRange">
|
|
231
|
+
<DisplayName>StaticNumericNodeIdRange</DisplayName>
|
|
232
|
+
<References>
|
|
233
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
234
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
235
|
+
</References>
|
|
236
|
+
</UAVariable>
|
|
237
|
+
<UAVariable DataType="String" ParentNodeId="ns=1;i=5004" NodeId="ns=1;i=6014" BrowseName="StaticStringNodeIdPattern">
|
|
238
|
+
<DisplayName>StaticStringNodeIdPattern</DisplayName>
|
|
239
|
+
<References>
|
|
240
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
241
|
+
<Reference ReferenceType="HasProperty" IsForward="false">ns=1;i=5004</Reference>
|
|
242
|
+
</References>
|
|
243
|
+
</UAVariable>
|
|
244
|
+
<UAObject SymbolicName="DefaultBinary" NodeId="ns=1;i=5001" BrowseName="Default Binary">
|
|
245
|
+
<DisplayName>Default Binary</DisplayName>
|
|
246
|
+
<References>
|
|
247
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">ns=1;i=3002</Reference>
|
|
248
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
249
|
+
<Reference ReferenceType="HasDescription">ns=1;i=6005</Reference>
|
|
250
|
+
</References>
|
|
251
|
+
</UAObject>
|
|
252
|
+
<UAObject SymbolicName="DefaultXml" NodeId="ns=1;i=5002" BrowseName="Default XML">
|
|
253
|
+
<DisplayName>Default XML</DisplayName>
|
|
254
|
+
<References>
|
|
255
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">ns=1;i=3002</Reference>
|
|
256
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
257
|
+
<Reference ReferenceType="HasDescription">ns=1;i=6006</Reference>
|
|
258
|
+
</References>
|
|
259
|
+
</UAObject>
|
|
260
|
+
<UAObject SymbolicName="DefaultJson" NodeId="ns=1;i=5003" BrowseName="Default JSON">
|
|
261
|
+
<DisplayName>Default JSON</DisplayName>
|
|
262
|
+
<References>
|
|
263
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">ns=1;i=3002</Reference>
|
|
264
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
265
|
+
</References>
|
|
266
|
+
</UAObject>
|
|
267
|
+
</UANodeSet>
|