XML Schema attributeGroup 元素

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