XML 模式 group 元素
❮ XML 模式完整参考
定义和用法
group 元素用于定义要在复杂类型定义中使用的元素组。
元素信息
- 父元素:schema、choice、sequence、complexType、restriction(simpleContent 和 complexContent 都有)、extension(simpleContent 和 complexContent 都有)
语法
<group
id=ID
name=NCName
ref=QName
maxOccurs=nonNegativeInteger|unbounded
minOccurs=nonNegativeInteger
任何属性
>
(annotation?,(all|choice|sequence)?)
</group>
(? 符号声明该元素可以在 group 元素内出现零次或一次)
属性 | 描述 |
---|---|
id | 可选。指定元素的唯一 ID |
name | 可选。指定组的名称。此属性仅在 schema 元素是此 group 元素的父元素时使用。name 和 ref 属性不能同时存在 |
ref | 可选。引用另一个组的名称。name 和 ref 属性不能同时存在 |
maxOccurs | 可选。指定 group 元素在父元素中可以出现的最大次数。该值可以是任何大于等于 0 的数字,或者如果要设置最大次数没有限制,则使用值“unbounded”。默认值为 1 |
minOccurs | 可选。指定 group 元素在父元素中可以出现的最小次数。该值可以是任何大于等于 0 的数字。默认值为 1 |
任何属性 | 可选。指定任何其他具有非模式命名空间的属性 |
示例 1
以下示例定义了一个包含四个元素序列的组,并在复杂类型定义中使用 group 元素
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:group name="custGroup">
<xs:sequence>
<xs:element name="customer" type="xs:string"/>
<xs:element name="orderdetails" type="xs:string"/>
<xs:element name="billto" type="xs:string"/>
<xs:element name="shipto" type="xs:string"/>
</xs:sequence>
</xs:group>
<xs:element name="order" type="ordertype"/>
<xs:complexType name="ordertype">
<xs:group ref="custGroup"/>
<xs:attribute name="status" type="xs:string"/>
</xs:complexType>
</xs:schema>
❮ XML 模式完整参考