我有一个父元素(产品),其属性(类别)可以采用 2 个值中的任何一个(易腐烂和非易腐烂)。如果物品是易腐烂的,我想要子元素“食物”,如果它不是易腐烂的,我想要子元素“库存”。从外观来看,我认为这可以在 XSD 1.1 中完成,但不能在 XSD 1.0 中完成。但是,我没有找到如何做到这一点。
下面是我的代码,缩短以显示重要部分:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="products">
<xs:complexType>
<xs:sequence>
<xs:element name="product" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:choice>
<xs:element name="food">
<xs:complexType>
/*DEFINED FOOD HERE*?
</xs:complexType>
</xs:element>
<xs:element name="stock">
<xs:complexType>
/*DEFINED STOCK HERE*/
</xs:complexType>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="id" type="xs:ID"/>
<xs:attribute name="category">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="perishable"/>
<xs:enumeration value="nonPerishable"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
任何人都可以帮助我吗?