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. Content for simpleType:
  7. (annotation?,(simpleType?,(minExclusive|minInclusive|
  8. maxExclusive|maxInclusive|totalDigits|fractionDigits|
  9. length|minLength|maxLength|enumeration|whiteSpace|pattern)*))
  10. Content for simpleContent:
  11. (annotation?,(simpleType?,(minExclusive |minInclusive|
  12. maxExclusive|maxInclusive|totalDigits|fractionDigits|
  13. length|minLength|maxLength|enumeration|whiteSpace|pattern)*)?,
  14. ((attribute|attributeGroup)*,anyAttribute?))
  15. Content for complexContent:
  16. (annotation?,(group|all|choice|sequence)?,
  17. ((attribute|attributeGroup)*,anyAttribute?))
  18. </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. <xs:complexType name="Chinese_customer">
  9. <xs:complexContent>
  10. <xs:restriction base="customer">
  11. <xs:sequence>
  12. <xs:element name="firstname" type="xs:string"/>
  13. <xs:element name="lastname" type="xs:string"/>
  14. <xs:element name="country" type="xs:string" fixed="China"/>
  15. </xs:sequence>
  16. </xs:restriction>
  17. </xs:complexContent>
  18. </xs:complexType>

分类导航