Guest User

XML Skema bΓΈger

a guest
Oct 18th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.89 KB | None | 0 0
  1. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  2.   <xs:element name="catalog">
  3.     <xs:complexType>
  4.       <xs:sequence>
  5.         <xs:element name="book" maxOccurs="unbounded" minOccurs="0">
  6.           <xs:complexType>
  7.             <xs:sequence>
  8.               <xs:element type="xs:string" name="author"/>
  9.               <xs:element type="xs:string" name="title"/>
  10.               <xs:element type="xs:string" name="genre"/>
  11.               <xs:element type="xs:float" name="price"/>
  12.               <xs:element type="xs:date" name="publish_date"/>
  13.               <xs:element type="xs:string" name="description"/>
  14.             </xs:sequence>
  15.             <xs:attribute type="xs:string" name="id" use="optional"/>
  16.           </xs:complexType>
  17.         </xs:element>
  18.       </xs:sequence>
  19.     </xs:complexType>
  20.   </xs:element>
  21. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment