Introduction

An xml documents consists of elements, attributes and text.

There are two structures in an xml document:

simple ( contains only text ) can ba either Built-in, or Derived

complex ( has attributes or child elements, and possibly texts as well)

Restriction on values:

<xs:element name="age">

<xs:simpleType>

<xs:restriction base="xs:integer">

<xs:minInclusive value="0"/>

<xs:maxInclusive value="120"/>

</xs:restriction>    </xs:simpleType>

</xs:element>

To limited the content of an XML element to a set of acceptable values, we can use the enumeration constraint:

<xs:element name="car" type="carType"/>

<xs:simpleType name="carType">

<xs:restriction base="xs:string">

<xs:enumeration value="Audi"/>

<xs:enumeration value="Golf"/>

<xs:enumeration value="BMW"/>

</xs:restriction>

</xs:simpleType>

Restrictions on a Series of Values

<xs:element name="initials">

<xs:simpleType>

<xs:restriction base="xs:string">

<xs:pattern value="[A-Z][A-Z][A-Z]"/>

<xs:pattern value="[a-zA-Z0-9]{8}"/>

<xs:length value="8"/>

</xs:restriction>

</xs:simpleType>

</xs:element>

xs:schema is the root element of the XSD document

<xs: schame

xmlns:xs="http://www.w3.org/2001/XMLSchema"  //must have the namespace declaration (Schema for schemas i.e. "http://www.w3.org/2001/XMLSchema")

version="1.1">

...

...

</xs:schema>  under xs:schema (global:can be referenced)/further down the schema hierarchy (local)

global elements also can be substituted by another element!

xs:schema cam contain the following child elements:

  • xs:include
  • xs:import
  • xs:override     new to XML Schema 1.1
  • xs:element
  • xs:attribute
  • xs:group    enables you to specidy constraints on a specific set of sub-elements
  • xs:attributeGroup
  • xs:annotation     can contain two child elements: xs:appinfo/xs:documentation
  • xs:defaultOpenContent     new to XML Schema 1.1
  • xs:simpleType or
  • xs:complexType   re-use previous definitions (base="complexTypeName", type="complexTypeName")

i.e.

<?xml version="1.0" encoding="UTF-8"?>

<!-- edited with XMLSpy v2014(x64) (http://www.altova.com) by Christian Luntzer (Altova GmbH) -->

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.1">

<xs:element name="city" type="xs:string" default="MainStreet"/>

//global element name is mandatory, type is optional

<xs:element name="shoesize">  //Complex Element type1:  simple contents

<xs:complexType>  //Only contains simple contents: text, attributes

<xs:simpleContent>

<xs:extension base="xs:integer">

<xs:attribute name="country" type="xs:string" />

</xs:extension>

</xs:simpleContent>

</xs:complexType>

</xs:element>

<xs:element name="address">

<xs:complexType>      //Complex element Type2: mixed contents

<xs:annotation>

<xs:documentation>type which contains driver....

</xs:documentation>

</xs:annotation>

<xs:sequence mixed="ture">    //contains mixed contents

<xs:element name="street" type="xs:string"/>    //local element declaration "street", mandatory

<xs:element ref="city"/>//local element reference"city", name and type attribute cannot be present   </xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="product">  //Complex element Type3: only attribute content

<xs:complexType>

<xs:complexContent>

<xs:restriction base="xs:integer“>

<xs:attribute name="prodid" type="xs:positiveInteger"/>

</xs:restriction>

</xs:complexContent>

</xs:complexType>

</xs:element>

</xs:schema>

Attributes only can be simple, not complex

<?xml version="1.0" encoding="UTF-8"?>

<!-- edited with XMLSpy v2014(x64) (http://www.altova.com) by Christian Luntzer (Altova GmbH) -->

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.1">

<xs:element name="gift_voucher">

<xs:complexType>

<xs:attribute ref="voucher_id"/> //local attribute reference to a global attribute declaration

<xs:attribute name="expiry_date" type="xs:date"/>  //(local attribute) name is mandatory, type is optional  </xs:complexType>

</xs:element>

<xs:attribute name="voucher_id" type="xs:positiveInteger"/> global attribute declaration

<xs:element name="person">  //MinOccurs and MaxOccurs can be used for both element and group

<xs:complexType>

<xs:sequence>

<xs:element name="full_name" type="xs:string"/>

<xs:element name="child_name" type="xs:string" maxOccurs="10" minOccurs="0"/>

</xs:sequence>

</xs:complexType>

</xs:element>

</xs:schema>

default/fixed: mutually exclusive

If an element appeas but is empty, the schema processor provides the default value. If the element is missing, the schema processor does not provide the default value.

Cannot appear on local element references.

Attribute's default value will provide a default value for an attribute if the attribute is missing from the xml document. It will not provide a default value for a missing element.

Group must be defined globally, though the local reference to a globally named group can exist.

unnamed groups (compositors): xs:sequence; xs:choice; xs:all also can be used foe complex element

<xs:group name="vehiclegroup" minOccurs="1" maxOccurs="1">

<xs:choice>  //only one sub-element can be used from a list of sub-elements

<xs:element name="car"/>

<xs:element name="motorbike"/>

</xs:choice>

</xs:group>

<xs:element name="car" type="carinfo"/>

<xs:complexType name="carinfo">

<xs:sequence>

<xs:group ref="vehiclegroup"/>    //re-using a group definition , the referenced element has to be a global one.

<xs:element name="country" type="xs:string"/>

</xs:sequence>

</xs:complexType>

attributeGroup situations arise where there are several different elements that will require the same set of attributes.

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.1">

<xs:element name="person">

<xs:complexType>

<xs:attributeGroup ref="dimensions"/>

</xs:complexType>

</xs:element>

<xs:attributeGroup name="dimensions">

<xs:attribute name="height" type="xs:positiveInteger"/>

<xs:attribute name="weight" type="xs:positiveInteger"/>

</xs:attributeGroup>

</xs:schema>

Built-in datatypes

only one complex datatype:

<xs: element name="para" type="xs:anyType"/> ==<xs:element name="pare"/>

User-defined Simple Types

simple types can only be derived via restriction. This mean that the derived simple type will only allow a base type it is being derived from. The base type is more general, the derived type is more specific.

Namespaces

Mixing Several Namespaces

<gs:dish xmlns: gs = “http://china.com“

xmlns: uom = “http://units.com“>

<gs:dm uom:unit = “cm“>20</gs:dm>

<gs:vol uom:unit = “1“>5</gs:vol>

<gs:decor>Meissner</gs:decor>

<comment>This is an unqualified element name</comment>

</gs:dish>

reference:

XML Schema and XMLspy notes的更多相关文章

  1. XML Schema使用技巧——unique

    XML Schema使用技巧——unique   XML Scheam允许指定某个元素或属性的值在一定得范围内是唯一的.为了指定元素或属性值的唯一性,可以使用<xs:unqiue>元素,使 ...

  2. XML&DTD&XML Schema学习

    XML(eXtensible Markup Language)可扩展的标记语言.xml在web service编程中尤为重要.在网络传输中可以作为传输数据的载体.xml作为元语言,它可以用来标记数据. ...

  3. XSD(XML Schema Definition)用法实例介绍以及C#使用xsd文件验证XML格式

    XML Schema 语言也称作 XML Schema 定义(XML Schema Definition,XSD),作用是定义 XML 文档的合法构建模块,类似 DTD,但更加强大. 作用有: ①定义 ...

  4. XML Schema命名空间解析

    URI Web中汇集了各种资源.资源可以是具有标识的任何事物, 如文档. 文件. 菜单项. 计算机. 服务等, 甚至可以包括人. 组织和概念[BernersLee 1998].在Web体系结构中, ...

  5. 【转】XSD (xml Schema Definition)

    来自:http://www.cnblogs.com/newsouls/archive/2011/10/28/2227765.html Xml Schema的用途 1.  定义一个Xml文档中都有什么元 ...

  6. C#与XML Schema的问题

    http://bbs.csdn.net/topics/50493564 weileily: 用XmlSchema.Read方法读取了一个xsd文件,请问如何遍历检索器中的ComplexType与Sim ...

  7. XML Schema的基本语法(转)

    XML Schema的基本语法(转) XSDL(XML Schema定义语言)由元素.属性.命名空间和XML文档种的其他节点构成的. 一.XSD中的元素 XSD文档至少要包含:schema根元素和XM ...

  8. Xml Schema:C#访问在complextype中插入新元素

    最近用c#写Xml Schema代码,找了很久也找不到如何在已有的complextype中插入新的element,最后我充分发挥自己的聪明才智,哈哈,终于从...中找到了灵感. XmlSchemaSe ...

  9. [BTS] System.Xml.Schema.XmlSchemaException: The complexType has already been declared when generate IDoc schema.

    I use wcf-sap adapter for generate the schema of IDoc that named "YHREMPMASTER". but throw ...

随机推荐

  1. 【2016-10-31】【坚持学习】【Day16】【MongoDB】【入门 -概念】

    MongoDB 概念解析 不管我们学习什么数据库都应该学习其中的基础概念,在mongodb中基本的概念是文档.集合.数据库,下面我们挨个介绍. 下表将帮助您更容易理解Mongo中的一些概念: SQL术 ...

  2. UVALive 4998 Simple Encryption --DFS

    题意: 给出K1,求一个12位数(不含前导0)K2,使得K1^K2 mod (10^12) = K2. 解法: 求不动点问题. 有一个性质: 如果12位数K2满足如上式子的话,那么K2%1,K2%10 ...

  3. NOIP2003pj栈[卡特兰数]

    题目背景 栈是计算机中经典的数据结构,简单的说,栈就是限制在一端进行插入删除操作的线性表. 栈有两种最重要的操作,即pop(从栈顶弹出一个元素)和push(将一个元素进栈). 栈的重要性不言自明,任何 ...

  4. 洛谷P1108 低价购买[DP | LIS方案数]

    题目描述 “低价购买”这条建议是在奶牛股票市场取得成功的一半规则.要想被认为是伟大的投资者,你必须遵循以下的问题建议:“低价购买:再低价购买”.每次你购买一支股票,你必须用低于你上次购买它的价格购买它 ...

  5. NOIP模拟赛20161007

    %hzwer http://hzwer.com/7602.html 题目名称 “与” 小象涂色 行动!行动! 输入文件 and.in elephant.in move.in 输出文件 and.out ...

  6. 嵌入式Linux驱动学习之路(十二)按键驱动-poll机制

    实现的功能是在读取按键信息的时候,如果没有产生按键,则程序休眠在read函数中,利用poll机制,可以在没有退出的情况下让程序自动退出. 下面的程序就是在读取按键信息的时候,如果5000ms内没有按键 ...

  7. Github 使用

    创建repository 可以在Github上无限制使用public repository进行源代码管理,创建一个repository很简单,不多说了. 获取代码到本地 首先要安装Git,然后使用命令 ...

  8. LeetCode:Max Points on a Line

    题目链接 Given n points on a 2D plane, find the maximum number of points that lie on the same straight l ...

  9. C#中根据变量获取变量名字符串

    /// <summary>         /// 获取当前变量的变量名 字符串         /// 调用:GetVarName(p=>test.str1); 返回 " ...

  10. vNext之旅(2):net451、dotnet5.4、dnx451、dnxcore50都是什么鬼

    继上次"vNext之旅(1):从概念和基础开始"之后再次学习vNext重新遇到了弄不懂的事情,花了一些时间学习,今天来分享一下,为后人节省些时间. 起因 在用vNext造轮子--框 ...