~ubuntu-branches/ubuntu/precise/xom/precise

« back to all changes in this revision

Viewing changes to data/schematest.xsd

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2007-11-25 15:50:40 UTC
  • Revision ID: james.westby@ubuntu.com-20071125155040-r75ikcqf1vu0cei7
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
 
3
 
 
4
  <xsd:element name="test" type="xsd:string"/>
 
5
  <xsd:element name="SONG" type="SongType"/>
 
6
 
 
7
  <xsd:complexType name="SongType">
 
8
    <xsd:sequence>
 
9
      <xsd:element name="TITLE"     type="xsd:string"/>
 
10
      <xsd:element name="COMPOSER"  type="xsd:string"/>
 
11
      <xsd:element name="PRODUCER"  type="xsd:string"/>
 
12
      <xsd:element name="PUBLISHER" type="xsd:string"/>
 
13
 
 
14
      <xsd:element name="LENGTH"    type="xsd:string"/>
 
15
      <xsd:element name="YEAR"      type="xsd:string"/>
 
16
      <xsd:element name="ARTIST"    type="xsd:string"/>
 
17
      <xsd:element name="PRICE"     type="xsd:string"/>
 
18
    </xsd:sequence>
 
19
  </xsd:complexType>
 
20
 
 
21
</xsd:schema>
 
22