我创建了complexType
如下:
<xsd:complexType name="type1" mixed="true">
<xsd:attribute name="quantité" type="xsd:integer"/>
</xsd:complexType>
我想基于上面的类型创建一个类型,以便为属性quantite提供默认值。
我该怎么做?
答案 0 :(得分:0)
<xs:complexType name="type2"
mixed="true">
<xs:complexContent>
<xs:restriction base="type1">
<xs:attribute name="quantité"
type="xsd:integer"
default="1"/>
</xs:restriction>
</xs:complexContent>