XML 架构 attributeGroup 元素
❮ 完整的 XML 架构参考
定义和用法
attributeGroup 元素用于对一组属性声明进行分组,以便将它们作为一个组合并到复杂的类型定义中。
元素信息
- 父元素: attributeGroup、complexType、schema、限制(simpleContent 和 complexContent)、扩展(simpleContent 和 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 | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 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 架构参考