最新的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参考手册