假设,我有以下元素
<Employment type ="Full">
</Employment>
这就是我表达属性的方式
<xs:attribute name="Degree" type="xs:string" use="required" />
现在我还想表达一个事实,即属性只能有 2 个值,即Full和Part
所以,我试过这个
<xs:attribute name="Degree" type="xs:string" use="required" >
<xs:simpleType>
<xs:restriction base="xs:string">
</xs:restriction>
</xs:simpleType>
</xs:attribute>
我收到 xs:attribute 不能与 SimpleType 或 ComplexType 一起出现的错误。
我如何表达这种约束?
感谢您的帮助。