興味深いのは、次のxml子要素です。
<optInItem type='MARKETING_EMAILS'>NO</optInItem>
属性'type'の可能な値(2つの可能な値を想定)を列挙し、optInItemのテキスト値の可能な値を列挙したいと思います(値はYes | Noの可能性があります)。私は次のxsdから始めていますが、2つの別々の列挙を追加する方法がわかりません。
<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>
任意の提案/ポインタをいただければ幸いです。
ありがとう