I want to change the type of the Name attribute from xs:string to xs:int, like in XSD below
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.my.own/2013/XMLSchema">
<xs:complexType name="AType">
<xs:attribute name="Name" type="xs:string" use="required" />
</xs:complexType>
<xs:complexType name="BType">
<xs:complexContent>
<xs:extension base="AType">
<xs:sequence>
<xs:choice>
<xs:element name="Content" type="xs:string"/>
</xs:choice>
</xs:sequence>
<xs:attribute name="Name" type="xs:int" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>
Is this XSD valid? If not, is there exists other solutions to change type of attribute?
Nanein baseATypetypo? – SparKot ॐ Feb 26 at 11:35<redefine>element, apparently you can't override element declarations. Let's wait and see what others have to say. – SparKot ॐ Feb 26 at 13:59