感兴趣的是以下 xml 子元素:
<optInItem type='MARKETING_EMAILS'>NO</optInItem>
我想枚举属性“类型”的可能值(假设 2 个可能值)并枚举 optInItem 的文本值的可能值(值可能是 Yes | No)。我从以下 xsd 开始,但不确定如何添加两个单独的枚举。
<xs:element name="optInItem" maxOccurs="2" minOccurs="2">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="type" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
任何建议/指针将不胜感激。
谢谢