<Performance>
<grouping usingTarget="M/R" />
<state code="test"/>
<state code="test2"/>
</Performance>
如何为以下内容编写 XML 模式,以便只能指定单个(必需)grouping
标签,但是可以指定无限(或零)state
标签?
目前我有这个允许额外的分组标签。
<xsi:complexType name="PerformanceType">
<xsi:choice minOccurs="1" maxOccurs="unbounded">
<xsi:element ref="grouping" minOccurs="1" maxOccurs="1" />
<xsi:element ref="client" />
</xsi:choice>
</xsi:complexType>