XML Schema attributeGroup 元素

定義和用法

attributeGroup 元素用於對屬性聲明進行組合,這樣這些聲明就能夠以組合的形式合並到複雜類型中。

元素信息

出現次數 無限制
父元素 attributeGroup、complexType、schema、restriction (simpleContent)、extension (simpleContent)、restriction (complexContent)、extension (complexContent)
內容 annotation、attribute、attributeGroup、anyAttribute

語法

<attributeGroup
id=ID
name=NCName
ref=QName
any attributes
>
(annotation?),((attribute|attributeGroup)*,anyAttribute?))
</attributeGroup>

(? 符號聲明在 attributeGroup 元素中,元素可出現零次或一次,* 符號聲明元素可出現零次或多次。)

屬性 描述
id 可选。規定該元素的唯一的 ID。
name 可选。規定屬性組的名称。name 和 ref 屬性不能同時出現。
ref 可选。規定對指定的屬性組的引用。name 和 ref 屬性不能同時出現。
any attributes 可选。規定帶有 non-schema 命名空間的任何其他屬性。

实例

<xs:attributeGroup name="personattr">
  <xs:attribute name="attr1" type="string"/>
  <xs:attribute name="attr2" type="integer"/>
</xs:attributeGroup>
<xs:complexType name="person">
  <xs:attributeGroup ref="personattr"/>
</xs:complexType>

上面的例子定義了一個名為 "personattr" 的屬性組,在名為 "person" 的複雜類型中使用。