XML Schema restriction 元素

定义和用法

restriction 元素定义对 simpleType、simpleContent 或 complexContent 定义的约束。

元素信息

出现次数 一次
父元素 complexContent
内容 group、all、choice、sequence、attribute、attributeGroup、anyAttribute

语法

  1. <restriction
  2. id=ID
  3. base=QName
  4. any attributes
  5. >
  6.  
  7. Content for simpleType:
  8. (annotation?,(simpleType?,(minExclusive|minInclusive|
  9. maxExclusive|maxInclusive|totalDigits|fractionDigits|
  10. length|minLength|maxLength|enumeration|whiteSpace|pattern)*))
  11.  
  12. Content for simpleContent:
  13. (annotation?,(simpleType?,(minExclusive |minInclusive|
  14. maxExclusive|maxInclusive|totalDigits|fractionDigits|
  15. length|minLength|maxLength|enumeration|whiteSpace|pattern)*)?,
  16. ((attribute|attributeGroup)*,anyAttribute?))
  17.  
  18. Content for complexContent:
  19. (annotation?,(group|all|choice|sequence)?,
  20. ((attribute|attributeGroup)*,anyAttribute?))
  21.  
  22. </restriction>

(? 符号声明在 restriction 元素中该元素可出现零次或一次。)

属性 描述
id 可选。规定该元素的唯一的 ID。
base 必需。规定在该 schema(或由指定的命名空间指示的其他 schema)中定义的内建数据类型、simpleType 或 complexType 元素的名称。
any attributes 可选。规定带有 non-schema 命名空间的任何其他属性。

实例

例子 1

下面的例子定义了一个带有约束且名为 "age" 的元素。age 的值不能小于 0 或大于 100:

  1. <xs:element name="age">
  2. <xs:simpleType>
  3. <xs:restriction base="xs:integer">
  4. <xs:minInclusive value="0"/>
  5. <xs:maxInclusive value="100"/>
  6. </xs:restriction>
  7. </xs:simpleType>
  8. </xs:element>

例子 2

本例定义了一个名为 "initials" 的元素。"initials" 元素是带有约束的简单类型。可接受的值是三个从 a 到 z 的大写或小写字母:

  1. <xs:element name="initials">
  2. <xs:simpleType>
  3. <xs:restriction base="xs:string">
  4. <xs:pattern value="[a-zA-Z][a-zA-Z][a-zA-Z]"/>
  5. </xs:restriction>
  6. </xs:simpleType>
  7. </xs:element>

例子 3

本例定义了一个名为 "password" 元素。"password" 元素是带有约束的简单类型。值必须为最少 5 个字符且最多 8 个字符:

  1. <xs:element name="password">
  2. <xs:simpleType>
  3. <xs:restriction base="xs:string">
  4. <xs:minLength value="5"/>
  5. <xs:maxLength value="8"/>
  6. </xs:restriction>
  7. </xs:simpleType>
  8. </xs:element>

例子 4

本例展示了一个使用约束的复杂类型定义。复杂类型 "Chinese_customer" 从一个普通的 customer 复杂类型派生而来,其 country 元素的固定值是 "China":

  1. <xs:complexType name="customer">
  2. <xs:sequence>
  3. <xs:element name="firstname" type="xs:string"/>
  4. <xs:element name="lastname" type="xs:string"/>
  5. <xs:element name="country" type="xs:string"/>
  6. </xs:sequence>
  7. </xs:complexType>
  8.  
  9. <xs:complexType name="Chinese_customer">
  10. <xs:complexContent>
  11. <xs:restriction base="customer">
  12. <xs:sequence>
  13. <xs:element name="firstname" type="xs:string"/>
  14. <xs:element name="lastname" type="xs:string"/>
  15. <xs:element name="country" type="xs:string" fixed="China"/>
  16. </xs:sequence>
  17. </xs:restriction>
  18. </xs:complexContent>
  19. </xs:complexType>