XML Schema attributeGroup 元素


定义和用法

attributeGroup 元素用于对属性声明进行组合,这样这些声明就能够以组合的形式合并到复杂类型中。

元素信息
出现次数无限制
父元素attributeGroup、complexType、schema、restriction (simpleContent)、extension (simpleContent)、restriction (complexContent)、extension (complexContent)
内容annotation、attribute、attributeGroup、anyAttribute
语法
  1. <attributeGroup
  2. id=ID
  3. name=NCName
  4. ref=QName
  5. any attributes
  6. >
  7. (annotation?),((attribute|attributeGroup)*,anyAttribute?))
  8. </attributeGroup>

(? 符号声明在 attributeGroup 元素中,元素可出现零次或一次,* 符号声明元素可出现零次或多次。)

属性描述
id可选。规定该元素的唯一的 ID。
name可选。规定属性组的名称。name 和 ref 属性不能同时出现。
ref可选。规定对指定的属性组的引用。name 和 ref 属性不能同时出现。
any attributes可选。规定带有 non-schema 命名空间的任何其他属性。

实例

  1. <xs:attributeGroup name="personattr">
  2. <xs:attribute name="attr1" type="string"/>
  3. <xs:attribute name="attr2" type="integer"/>
  4. </xs:attributeGroup>
  5. <xs:complexType name="person">
  6. <xs:attributeGroup ref="personattr"/>
  7. </xs:complexType>

上面的例子定义了一个名为 "personattr" 的属性组,在名为 "person" 的复杂类型中使用。

分类导航