最新的Web開發教程
 

XML架構限制元素


<XML Schema參考手冊

定義和用法

限制元素的簡單類型,簡單或複雜內容定義規定的限制。

元素信息

  • Parent elements:簡單類型,簡單,複雜內容

句法

<restriction
id=ID
base=QName
any attributes
>

Content for simpleType:
(annotation?,(simpleType?,(minExclusive|minInclusive|
maxExclusive|maxInclusive|totalDigits|fractionDigits|
length|minLength|maxLength|enumeration|whiteSpace|pattern)*))

Content for simpleContent:
(annotation?,(simpleType?,(minExclusive |minInclusive|
maxExclusive|maxInclusive|totalDigits|fractionDigits|
length|minLength|maxLength|enumeration|whiteSpace|pattern)*)?,
((attribute|attributeGroup)*,anyAttribute?))

Content for complexContent:
(annotation?,(group|all|choice|sequence)?,
((attribute|attributeGroup)*,anyAttribute?))

</restriction>

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

屬性 描述
id 可選的。 指定一個唯一的ID為元素
base

需要。 指定在該模式或其他模式定義的內置數據類型,簡單類型元素或複雜類型元素的名稱

any attributes 可選的。 規定帶有non-schema命名空間的任何其他屬性。

例1

這個例子定義稱為元素"age"有限制。 年齡的值不能大於0小於100或更高版本:

<xs:element name="age">
  <xs:simpleType>
    <xs:restriction base="xs:integer">
      <xs:minInclusive value="0"/>
      <xs:maxInclusive value="100"/>
    </xs:restriction>
  </xs:simpleType>
</xs:element>

例2

這個例子也定義了稱為元素"initials" 。 的"initials"元件是簡單類型用限制性。 唯一可接受的值是從A大寫或小寫字母A到Z的三個:

<xs:element name="initials">
  <xs:simpleType>
    <xs:restriction base="xs:string">
      <xs:pattern value="[a-zA-Z][a-zA-Z][a-zA-Z]"/>
    </xs:restriction>
  </xs:simpleType>
</xs:element>

例3

這個例子定義稱為元素"password" 。 在"password"的元素是簡單類型與限制。 該值必須是最小的五個字符和最多8個字符:

<xs:element name="password">
  <xs:simpleType>
    <xs:restriction base="xs:string">
      <xs:minLength value="5"/>
      <xs:maxLength value="8"/>
    </xs:restriction>
  </xs:simpleType>
</xs:element>

例4

這個例子顯示了使用限制的複雜類型定義。 複雜類型"Norwegian_customer"是從廣大客戶的複雜類型派生而來,其國元被固定為"Norway"

<xs:complexType name="customer">
  <xs:sequence>
    <xs:element name="firstname" type="xs:string"/>
    <xs:element name="lastname" type="xs:string"/>
    <xs:element name="country" type="xs:string"/>
  </xs:sequence>
</xs:complexType>

<xs:complexType name="Norwegian_customer">
  <xs:complexContent>
    <xs:restriction base="customer">
      <xs:sequence>
        <xs:element name="firstname" type="xs:string"/>
        <xs:element name="lastname" type="xs:string"/>
        <xs:element name="country" type="xs:string" fixed="Norway"/>
      </xs:sequence>
    </xs:restriction>
  </xs:complexContent>
</xs:complexType>

<XML Schema參考手冊