Latest web development tutorials

XML Schema attributeGroup 元素

XML Schema 參考手冊 完整XML Schema參考手冊

定義和用法

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

元素信息

  • 父元素: attributeGroup, complexType, schema, restriction (both simpleContent and complexContent), extension (both simpleContent and complexContent)

語法

<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 命名空间的任何其他属性。

實例1

<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" 的複雜類型中使用。


XML Schema 參考手冊 完整XML Schema參考手冊