I have a xsd file,in which the schema looks something like below:
<xs:complexType name="ABC" final="#all">
<xs:sequence>
**<xs:element name="XYZ" type="xs:string"/>**
</xs:sequence>
</xs:complexType>
what is the issue if i want add attribute use = required to the XYZ element. I always get the following error - The 'use' attribute is not allowed.
Regards