0
<Performance>
  <grouping usingTarget="M/R" />
  <state code="test"/>
  <state code="test2"/>
</Performance>

次の XML スキーマを記述して、1 つの (必須の)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>
4

1 に答える 1

0
<xs:complexType name="PerformanceType">
    <xs:sequence>
      <xs:element ref="grouping" minOccurs="1" maxOccurs="1"  />
      <xs:element ref="state" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
</xs:complexType>
于 2012-10-15T07:41:23.140 に答える