Conditions can apply on certain xml elements, defined by an xPath. the root for the conditions defined from where the xPath should be applied. **>Root = the root of the xml (the document element) **>Self = the node under process |
<xs:simpleType name="ConditionRootCodeType"> <xs:annotation> <xs:documentation>Conditions can apply on certain xml elements, defined by an xPath. the root for the conditions defined from where the xPath should be applied. **>Root = the root of the xml (the document element) **>Self = the node under process</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:enumeration value="Root"/> <xs:enumeration value="Self"/> </xs:restriction> </xs:simpleType> |