XML 架构 restriction 元素
❮ 完整的 XML 架构参考
定义和用法
restriction 元素定义了对 simpleType、simpleContent 或 complexContent 定义的限制。
元素信息
- 父元素: simpleType, simpleContent, complexContent
语法
<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 | 必需。 指定在此架构或其他架构中定义的内置数据类型、simpleType 元素或 complexType 元素的名称 |
any attributes | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 1
这个例子定义了一个名为 "age" 的元素,它有一个限制。 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 到 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" 元素是一个有限制的简单类型。 该值必须最少五个字符,最多八个字符:
<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
这个例子展示了一个使用限制的复杂类型定义。 复杂类型 quot;Norwegian_customer" 派生自一般客户复杂类型,其 country 元素固定为 "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 架构参考