具有数据类型的XML模式

具有数据类型的XML模式,xml,Xml,我有一个包含数据的XML文档 <?xml version="1.0" encoding="ISO-8859-1"?> <!-- Edited by XMLSpy® --> <bookstore> <book category="COOKING"> <title lang="en">Everyday Italian</title> &

我有一个包含数据的XML文档

  <?xml version="1.0" encoding="ISO-8859-1"?>

    <!-- Edited by XMLSpy® -->

    <bookstore>

        <book category="COOKING">

            <title lang="en">Everyday Italian</title>

            <author>Giada De Laurentiis</author>

            <year>2005</year>

            <price>30.00</price>

        </book>

        <book category="CHILDREN">

            <title lang="en">Harry Potter</title>

            <author>J K. Rowling</author>

            <year>2005</year>

            <price>29.99</price>

        </book>

        <book category="WEB">

            <title lang="en">XQuery Kick Start</title>

            <author>James McGovern</author>

            <author>Per Bothner</author>

            <author>Kurt Cagle</author>

            <author>James Linn</author>

            <author>Vaidyanathan Nagarajan</author>

            <year>2005</year>

            <price>49.99</price>

        </book>

        <book category="WEB">

            <title lang="en">Learning XML</title>

            <author>Erik T. Ray</author>

            <year>2005</year>

            <price>39.95</price>

        </book>

 </bookstore>

日常意大利语
吉娅达·德·劳伦蒂斯
2005
30
哈利·波特
J K.罗琳
2005
29.99
XQuery启动
詹姆斯·麦戈文
伯特纳
库尔特·卡格尔
詹姆斯·林恩
瓦迪亚纳坦·纳加拉扬
2005
49.99
学习XML
埃里克·T·雷
2005
39.95
我想将
数据类型设置为整数。
请帮助我找到解决方案。

您可以使用联机工具生成架构


由XMLSpy®编辑

为什么价格为整数?不应该是float吗?@DavorMlinaric:是的,它也可以是float。只是想知道如何设置数据类型
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="bookstore">
    <xs:annotation>
      <xs:documentation>Edited by XMLSpy®</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:sequence>
        <xs:element name="book" maxOccurs="unbounded" minOccurs="0">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="title">
                <xs:complexType>
                  <xs:simpleContent>
                    <xs:extension base="xs:string">
                      <xs:attribute type="xs:string" name="lang" use="optional"/>
                    </xs:extension>
                  </xs:simpleContent>
                </xs:complexType>
              </xs:element>
              <xs:element type="xs:string" name="author" maxOccurs="unbounded" minOccurs="0"/>
              <xs:element type="xs:short" name="year"/>
              <xs:element type="xs:float" name="price"/>
            </xs:sequence>
            <xs:attribute type="xs:string" name="category" use="optional"/>
          </xs:complexType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>