たとえば、 、 、 の 3 つの選択肢を含む要素を作成して、ユーザーTitle
がそのうちの 1 つだけを選択できるようにします。どうやってやるの?これは次のようなものですか:Mr.
Mrs.
Miss
<xs:complexType name="Title">
<xs:sequence>
<xs:choice maxOccurs="unbounded" minOccurs="0">
Mr.
</xs:choice>
<xs:choice maxOccurs="unbounded" minOccurs="0">
Mrs.
</xs:choice>
<xs:choice maxOccurs="unbounded" minOccurs="0">
Miss
</xs:choice>
</xs:sequence>
</xs:complexType>