You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<xsd:documentation>Allowed values for Boolean operations.</xsd:documentation>
100
+
<xsd:documentation>Allowed values for logical operations. See https://en.wikipedia.org/wiki/Logic_gate</xsd:documentation>
101
101
</xsd:annotation>
102
102
<xsd:restrictionbase="xsd:NMTOKEN">
103
103
<xsd:enumerationvalue="AND">
@@ -107,17 +107,32 @@ Rail transport, Roads and Road transport
107
107
</xsd:enumeration>
108
108
<xsd:enumerationvalue="OR">
109
109
<xsd:annotation>
110
-
<xsd:documentation>Successive elements are logically ORed together; comparison must satisfy at least one specified value.</xsd:documentation>
110
+
<xsd:documentation>Successive elements are logically ORed together; comparison must satisfy at least one specified value.</xsd:documentation>
111
111
</xsd:annotation>
112
112
</xsd:enumeration>
113
113
<xsd:enumerationvalue="NOT">
114
114
<xsd:annotation>
115
-
<xsd:documentation>Specified elements must be different from the given value.</xsd:documentation>
115
+
<xsd:documentation>Specified elements must be different from the given value. If the number of specified elements is equal to 1, the function negates it. If the number of specified elements > 1, this operator is equal to the NOR operator</xsd:documentation>
116
116
</xsd:annotation>
117
117
</xsd:enumeration>
118
118
<xsd:enumerationvalue="XOR">
119
119
<xsd:annotation>
120
-
<xsd:documentation>Successive elements are logically ORed together; comparison must satisfy only one specified value.</xsd:documentation>
120
+
<xsd:documentation>Successive elements are logically ORed together; comparison must satisfy only one specified value.</xsd:documentation>
121
+
</xsd:annotation>
122
+
</xsd:enumeration>
123
+
<xsd:enumerationvalue="NAND">
124
+
<xsd:annotation>
125
+
<xsd:documentation>Successive elements are logically ANDed together; comparison must satisfy all specified values. The result is then negated.</xsd:documentation>
126
+
</xsd:annotation>
127
+
</xsd:enumeration>
128
+
<xsd:enumerationvalue="NOR">
129
+
<xsd:annotation>
130
+
<xsd:documentation>Successive elements are logically ORed together; comparison must satisfy at least one specified value. The result is then negated.</xsd:documentation>
131
+
</xsd:annotation>
132
+
</xsd:enumeration>
133
+
<xsd:enumerationvalue="XNOR">
134
+
<xsd:annotation>
135
+
<xsd:documentation>Successive elements are logically ORed together; comparison must satisfy only one specified value. The result is then negated.</xsd:documentation>
0 commit comments