Advertisement
wiert

XSD for Delphi myFavorites.xml

Jul 11th, 2013
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  2.   <xs:element name="xml">
  3.     <xs:complexType>
  4.       <xs:choice maxOccurs="unbounded" minOccurs="0">
  5.         <xs:element name="group">
  6.           <xs:complexType mixed="true">
  7.             <xs:sequence>
  8.               <xs:element name="project" maxOccurs="unbounded" minOccurs="0">
  9.                 <xs:complexType>
  10.                   <xs:simpleContent>
  11.                     <xs:extension base="xs:string">
  12.                       <xs:attribute type="xs:string" name="location" use="optional"/>
  13.                     </xs:extension>
  14.                   </xs:simpleContent>
  15.                 </xs:complexType>
  16.               </xs:element>
  17.             </xs:sequence>
  18.             <xs:attribute type="xs:byte" name="default" use="optional"/>
  19.             <xs:attribute type="xs:string" name="title" use="optional"/>
  20.           </xs:complexType>
  21.         </xs:element>
  22.       </xs:choice>
  23.     </xs:complexType>
  24.   </xs:element>
  25. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement