XML 架构 group 元素
❮ 完整的 XML 架构参考
定义和用法
group元素用于定义一组元素,用于复杂类型定义。
元素信息
- 父元素:schema, choice, sequence, complexType、限制(simpleContent 和 complexContent)、扩展(simpleContent 和 complexContent)
语法
<group
id=ID
name=NCName
ref=QName
maxOccurs=nonNegativeInteger|unbounded
minOccurs=nonNegativeInteger
any attributes
>
(annotation?,(all|choice|sequence)?)
</group>
(? 符号声明该元素可以在组元素内出现零次或一次)
属性 | 描述 |
---|---|
id | 可选。指定元素的唯一 ID |
name | 可选。指定组的名称。 仅当架构元素是此组元素的父级时才使用此属性。 name 和 ref 属性不能同时存在 |
ref | 可选。指另一个组的名称。 name 和 ref 属性不能同时存在 |
maxOccurs | 可选。指定组元素可以在父元素中出现的最大次数。 该值可以是任何数字>= 0,或者如果您想对最大数字不设置限制,请使用值 "unbounded"。 默认值为 1 |
minOccurs | 可选。指定组元素可以在父元素中出现的最小次数。 该值可以是任何数字>= 0。默认值为 1 |
any attributes | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 1
以下示例定义了一个包含四个元素序列的组,并在复杂类型定义中使用了组元素:
<?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 架构参考