Hi, I'm looking for a kind of XSD Inheritance that I'm not quite sure it is possible , So I want to make sure of it :)
The thing is I have a complex type A and another complex type B that only differs from A that its attribute has a fixed value.
example:
<xs:complexType name="A">
<xs:attribute name="AAtrr" type="xs:string"/>
</xs:complexType>
<xs:complexType name="B">
<xs:attribute name="AAtrr" type="xs:string" fixed="Something"/>
</xs:complexType>
This is of course a simplified example, but for start I'm wondering if B can inherit A and just add the Fixed Value for the Attribute.