home *** CD-ROM | disk | FTP | other *** search
/ XML Bible (2nd Edition) / XML_Bible_Second_Edition_Hungry_Minds_2001.iso / mac / source / 24 / namespace_song.xsd < prev    next >
Extensible Markup Language  |  2001-04-14  |  1KB  |  38 lines

  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3.   xmlns="http://ibiblio.org/xml/namespace/song"
  4.   targetNamespace="http://ibiblio.org/xml/namespace/song"
  5.   elementFormDefault="qualified"
  6.   attributeFormDefault="unqualified"
  7. >
  8.  
  9.   <xsd:element name="SONG" type="SongType"/>
  10.  
  11.   <xsd:complexType name="PhotoType">
  12.     <xsd:attribute name="WIDTH"  type="xsd:positiveInteger"
  13.                    use="required" />
  14.     <xsd:attribute name="HEIGHT" type="xsd:positiveInteger"
  15.                    use="required" />
  16.     <xsd:attribute name="ALT"    type="xsd:string"
  17.                    use="required" />
  18.   </xsd:complexType>
  19.  
  20.   <xsd:complexType name="SongType">
  21.     <xsd:sequence>
  22.       <xsd:element name="TITLE"     type="xsd:string"/>
  23.       <xsd:element name="PHOTO"     type="PhotoType"/>
  24.       <xsd:element name="COMPOSER"  type="xsd:string"
  25.                    maxOccurs="unbounded"/>
  26.       <xsd:element name="PRODUCER"  type="xsd:string"
  27.                    minOccurs="0" maxOccurs="unbounded"/>
  28.       <xsd:element name="PUBLISHER" type="xsd:string"
  29.                    minOccurs="0"/>
  30.       <xsd:element name="LENGTH"    type="xsd:duration"/>
  31.       <xsd:element name="YEAR"      type="xsd:gYear"/>
  32.       <xsd:element name="ARTIST"    type="xsd:string"
  33.                    maxOccurs="unbounded"/>
  34.     </xsd:sequence>
  35.   </xsd:complexType>
  36.  
  37. </xsd:schema>
  38.