Originally posted by: ocuellar
My team is working with the DTX2ANY_V2 binary. This binary creates an XSD which my team still needs to augment. My question is in regards to a specific augmentation of this XSD. Can someone help answer how to augment the following element if the following rule needs to be followed in this augmentation?
Element:
<xs:element id="x121" name="ADDRESS">
<xs:complexType>
<xs:sequence>
<xs:element id="x110" minOccurs="0" maxOccurs="6" name="NAME" type="NAME_110_Type" />
</xs:sequence>
</xs:complexType>
</xs:element>
Augmentation Rule:
Element from:
<xs:element id="x121" name="CORR_KEY" type="CORR_KEY_121_Type" />
Element to:
<xs:element id="x121" minOccurs="0" name="CORR_KEY">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="CORR_KEY_121_Type">
<xs:attribute name="SUBSCR" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
Any help, hints or comments on this matter are appreciated. Thank you.
#DataExchange#IBM-Websphere-Transformation-Extender#IBMSterlingTransformationExtender