是否可以通过使用固定值来区分xs中的xs:choice?我有一个简单的类型:
<xs:simpleType name="datatypeCategory">
<xs:restriction base="xs:string">
<xs:enumeration value="SIMPLE"/>
<xs:enumeration value="COMPLEX"/>
<xs:enumeration value="COLLECTION"/>
</xs:restriction>
</xs:simpleType>
我想要实现的是
<xs:element name="datatype">
<xs:complexType>
<xs:choice>
<xs:sequence>
<xs:element id="category" type="datatypeCategory" fixed="SIMPLE"/>
<!-- some fields specific for SIMPLE -->
</xs:sequence>
<xs:sequence>
<xs:element id="category" type="datatypeCategory" fixed="COMPLEX"/>
<!-- some fields specific for COMPLEX -->
</xs:sequence>
<xs:sequence>
<xs:element id="category" type="datatypeCategory" fixed="COLLECTION"/>
<!-- some fields specific for COLLECTION -->
</xs:sequence>
</xs:choice>
</xs:complexType>
</xs:element>
当我这样做时,我的XMLSpy告诉我:
# The content model of complex type definition '{anonymous}' is ambiguous.
# Details: cos-nonambig: <xs:element name='category'> makes the content model non-deterministic against <xs:element name='category'>. Possible causes: name equality, overlapping occurrence or substitution groups.
答案 0 :(得分:1)
你无法做到这一点。错误是因为看到<category>
元素的简单验证器不会立即知道要选择哪个分支,而XML Schema 1.0支持这样简单的验证器。
另一种方法是根据类别命名每个元素。
<xs:element name="datatype">
<xs:complexType>
<xs:choice>
<xs:sequence>
<xs:element name="simpleCategory" type="empty"/>
<!-- some fields specific for SIMPLE -->
</xs:sequence>
<xs:sequence>
<xs:element name="complexCategory" type="empty"/>
<!-- some fields specific for COMPLEX -->
</xs:sequence>
<xs:sequence>
<xs:element name="collectionCategory" type="empty"/>
<!-- some fields specific for COLLECTION -->
</xs:sequence>
</xs:choice>
</xs:complexType>
</xs:element>
其中empty
被定义为空类型。或者给它们复杂的类型来保存“特定字段”。根据您的约束,还有其他选择,例如使用替换组或派生的复杂类型。
通常,XML Schema 1.0不适用于基于相关值的约束。为此,您必须转到XML Schema 1.1或外部工具。
答案 1 :(得分:0)
ID在文档中必须是唯一的。您不能在多个元素上使用相同的值: