最新的Web開發教程
 

XML架構組元素


<XML Schema參考手冊

定義和用法

該組元件是用來定義一組元素的複雜類型定義被使用。

元素信息

  • Parent elements:架構,選擇,順序,複雜類型,限制(包括簡單文本和複雜內容),擴展(包括簡單文本和複雜內容)

句法

<group
id=ID
name=NCName
ref=QName
maxOccurs=nonNegativeInteger|unbounded
minOccurs=nonNegativeInteger
any attributes
>

(annotation?,(all|choice|sequence)?)

</group>

(?符號聲明元素可出現零次或一次組元素中)

屬性 描述
id 可選的。 指定一個唯一的ID為元素
name 可選的。 指定組的名稱。 此屬性只用於架構元素是這組元素的父。 名稱和ref屬性不能同時出現。
ref 可選的。 指另一組的名稱。 名稱和ref屬性不能同時出現。
maxOccurs 可選的。 指定可發生在父元素的組中的元素的最大次數。 該值可以是任何數字> = 0,或者如果你想設置的最大數量沒有限制,使用值"unbounded" 。 默認值是1
minOccurs 可選的。 指定的最小次數,就可能出現在父元素的組中的元素。 的值可以是任何數> = 0。默認值為1
any attributes 可選的。 規定帶有non-schema命名空間的任何其他屬性。

例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 Schema參考手冊