最新のWeb開発のチュートリアル
 

XMLスキーマ組合要素


<完全なXMLスキーマリファレンス

定義と使用法

組合要素はコレクションとして単純型を定義します(union)指定された単純なデータ型の値の。

要素情報

  • Parent elements: simpleTypeの

構文

<union
id=ID
memberTypes="list of QNames"
any attributes
>

(annotation?,(simpleType*))

</union>

(?記号は要素が組合要素内に0回または1回発生する可能性があることを宣言します)

属性 説明
id 任意。 要素の一意のIDを指定します。
memberTypes 任意。 組み込みデータ型またはスキーマで定義された単純型要素のリストを指定します。
any attributes 任意。 非スキーマの名前空間を持つ任意の他の属性を指定します。

例1

この例では、2つの単純型の和集合である単純型を示しています。

<xs:element name="jeans_size">
  <xs:simpleType>
    <xs:union memberTypes="sizebyno sizebystring" />
  </xs:simpleType>
</xs:element>

<xs:simpleType name="sizebyno">
  <xs:restriction base="xs:positiveInteger">
    <xs:maxInclusive value="42"/>
  </xs:restriction>
</xs:simpleType>

<xs:simpleType name="sizebystring">
  <xs:restriction base="xs:string">
    <xs:enumeration value="small"/>
    <xs:enumeration value="medium"/>
    <xs:enumeration value="large"/>
  </xs:restriction>
</xs:simpleType>

<完全なXMLスキーマリファレンス