home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Freeware / Programare / paranoia / ParanoiaSetup.exe / Schemas / video.xsd < prev   
Extensible Markup Language  |  2002-05-26  |  3KB  |  60 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <schema targetNamespace="http://www.limewire.com/schemas/video.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
  4.  
  5.   <element name="videos">
  6.       <complexType>
  7.           <element name="video" type="videoType" minOccurs="1" maxOccurs="unbounded"/>
  8.       </complexType>
  9.   </element>
  10.   
  11.   <complexType name="videoType">
  12.     <attribute name="title" type="string" minOccurs="0" maxOccurs="1"/>
  13.     <attribute name="director" type="string" minOccurs="0" maxOccurs="1"/>
  14.     <attribute name="producer" type="string" minOccurs="0" maxOccurs="2"/>
  15.     <attribute name="studio" type="short" minOccurs="0" maxOccurs="1"/>
  16.     <attribute name="stars" type="string" minOccurs="0" maxOccurs="3"/>
  17.     <attribute name="type" minOccurs="0" maxOccurs="1">
  18.       <simpleType base="string">
  19.         <enumeration value="Music Video"/>
  20.         <enumeration value="Commercial"/>
  21.         <enumeration value="Trailer"/>
  22.         <enumeration value="Movie Clip"/>
  23.         <enumeration value="Video Clip"/>
  24.         <enumeration value="VHS Movie"/>
  25.         <enumeration value="DVD Movie"/>
  26.         <enumeration value="Adult"/>
  27.         <enumeration value="Other"/>
  28.       </simpleType>
  29.     </attribute>
  30.     <attribute name="minutes" type="decimal" minOccurs="0" maxOccurs="1"/>
  31.     <attribute name="width" type="int" minOccurs="0" maxOccurs="1"/>
  32.     <attribute name="height" type="int" minOccurs="0" maxOccurs="1"/>
  33.     <attribute name="year" type="year" minOccurs="0" maxOccurs="1"/>
  34.     <attribute name="language" type="string" minOccurs="0" maxOccurs="1"/>
  35.     <attribute name="subtitles" type="string" minOccurs="0" maxOccurs="3"/>
  36.     <attribute name="SHA1" type="string" minOccurs="0" maxOccurs="1"/>
  37.     <attribute name="rating" minOccurs="0" maxOccurs="1">
  38.       <simpleType base="string">
  39.         <enumeration value="G"/>
  40.         <enumeration value="PG"/>
  41.         <enumeration value="PG-13"/>
  42.         <enumeration value="R"/>
  43.         <enumeration value="NC-17"/>
  44.         <enumeration value="NR"/>
  45.       </simpleType>
  46.     </attribute>
  47.     <attribute name="availability" type="string" minOccurs="0" maxOccurs="1"/>
  48.     <attribute name="price" type="string" minOccurs="0" maxOccurs="1"/>
  49.     <attribute name="shipping" type="string" minOccurs="0" maxOccurs="1"/>
  50.     <attribute name="link" type="uriReference" minOccurs="0" maxOccurs="1"/>
  51.     <attribute name="comments" minOccurs="0" maxOccurs="1">
  52.       <simpleType base="string">
  53.         <maxInclusive value="100"/>
  54.       </simpleType>
  55.     </attribute>
  56.     <attribute name="action" type="string"/>
  57.   </complexType>
  58.  
  59. </schema>
  60.