XML Schema类型声明语法
作者:互联网
文章目录
XML Schema类型声明语法
简单语法格式
< xsd:simpleType name=“simpleTypeName” >
…
< /xsd: simpleType >
以及:
< xsd:complexType name=“complexTypeName” >
…
< /xsd:complexType >
数据类型元素属性
simpleType 元素的属性
XML Schema规范中对simpleType语法的描述如下:
< simpleType
final = (#all | List of (list | union | restriction))
id = ID
name = NCName>
Content: (annotation?, (restriction | list | union))
< /simpleType >
complexType 元素的属性
< complexType
abstract = boolean : false
block = (#all | List of (extension | restriction))
final = (#all | List of (extension | restriction))
id = ID
mixed = boolean : false
name = NCName>
Content: (annotation?, (simpleContent | complexContent |
((group | all | choice | sequence)?,
((attribute | attributeGroup)*, anyAttribute?))))
< /complexType >
各属性作用总结
abstract 属性表示该复杂类型是一个抽象类,只能用作其他类型的父类型,但不能实例化。
多态:声明抽象父类的元素,XML文件中的实例可以是子类的元素
必须将元素的类型明确告诉解析器
final属性的值表示该数据类型不允许进行的操作列表,#all 表示不能对该类型进行任何操作
block属性表示该数据类型不允许进行的操作列表,#all禁止使用任何子类型的实例来代替声明为父类的元素
extension 和 restriction,分别表示禁止使用任何通过扩展/限制而派生的子类型的实例来代替声明为父类的元素,即使 block=“#all”,仍然可以派生新的子类型
元素和属性的声明
根元素xsd:schema的直接孩子称为全局的,若是元素声明,则称为全局元素;若是类型声明,则称为全局类型。
全局的对象只可能是元素声明或者是数据类型声明,换句话说,其他内容不能够直接出现在 xsd:schema 根元素下
元素的声明
- 先声明一个命名的类型,然后通过名称进行引用
- 直接在元素的声明中包含一个无名的类型声明
元素的属性
< element
abstract = boolean : false
block = (#all | List of (extension | restriction | substitution))
default = string
final = (#all | List of (extension | restriction))
fixed = string
form = (qualified | unqualified)
id = ID
maxOccurs = (nonNegativeInteger | unbounded) : 1
minOccurs = nonNegativeInteger : 1
name = NCName
nillable = boolean : false
ref = QName
substitutionGroup = QName
type = QName>
Content: (annotation?, ((simpleType | complexType)?, (unique | key | keyref)*))
< /element >
属性 | 作用 |
---|---|
maxOccurs 和 minOccurs 属性 | 限制元素的最大和最小出现次数 |
default 和 fixed 属性 | 指定元素缺省值和固定值 |
ref 属性 | 引用某个已经定义的全局元素 |
nillable 属性和 xsi:nil 属性 | nillable=false 不允许元素值为空 nillable=true 允许元素值为空 |
替换组(Substitution group) | 允许使用其他元素来替换原先定义的元素 |
abstract 属性 | 缺省false,若abstract=true,为纯虚的头元素 |
block 属性 | 不允许对该元素进行的操作,{extension, restriction, substitution} 的一个子集 |
unique约束 | 指定唯一值 |
key 和 keyref | 指定键和键引用 |
如果允许一个元素出现无数次则maxOccurs=“unbounded”
default 和 fixed 属性只能指定文本内容,所以使用这两个属性的 xsd:element 所声明的元素,必须是简单类型的元素,否则毫无意义
元素的文本内容为空,应该将元素的 xsi:nil 属性值设置为 “true”,否则解析器会识别成空字符串””
的 xsd:element 所声明的元素,必须是简单类型的元素,否则毫无意义
元素的文本内容为空,应该将元素的 xsi:nil 属性值设置为 “true”,否则解析器会识别成空字符串””
纯虚的头元素不能直接使用,必须用该替换组中的某个替换元素来替换它
标签:XML,restriction,simpleType,元素,语法,类型,Schema,声明,属性 来源: https://blog.csdn.net/m0_46434080/article/details/111485509