XML Schema union 元素

定义和用法

union 元素定义多个 simpleType 定义的集合。

元素信息

出现次数 一次
父元素 simpleType
内容 annotation、simpleType

语法

  1. <union
  2. id=ID
  3. memberTypes="list of QNames"
  4. any attributes
  5. >
  6.  
  7. (annotation?,(simpleType*))
  8.  
  9. </union>

(? 符号声明在 union 元素中该元素可出现零次或一次。)

属性 描述
id 可选。规定该元素的唯一的 ID。
memberTypes 可选。规定在 schema 中定义的内置数据类型或 simpleType 元素的名称列表。
any attributes 可选。规定带有 non-schema 命名空间的任何其他属性。

实例

例子 1

本例是一个合并了两个简单类型的简单类型:

  1. <xs:element name="jeans_size">
  2. <xs:simpleType>
  3. <xs:union memberTypes="sizebyno sizebystring" />
  4. </xs:simpleType>
  5. </xs:element>
  6.  
  7. <xs:simpleType name="sizebyno">
  8. <xs:restriction base="xs:positiveInteger">
  9. <xs:maxInclusive value="42"/>
  10. </xs:restriction>
  11. </xs:simpleType>
  12.  
  13. <xs:simpleType name="sizebystring">
  14. <xs:restriction base="xs:string">
  15. <xs:enumeration value="small"/>
  16. <xs:enumeration value="medium"/>
  17. <xs:enumeration value="large"/>
  18. </xs:restriction>
  19. </xs:simpleType>