Advertisement
Guest User

POCProducts

a guest
Feb 11th, 2015
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.76 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-16"?>
  2. <xs:schema xmlns="http://TEST.Schema.FlatFile.POCProducts" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://TEST.Schema.FlatFile.POCProducts" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3.   <xs:element name="PRODUCTS">
  4.     <xs:complexType>
  5.       <xs:sequence>
  6.         <xs:element name="PRODUCT">
  7.           <xs:complexType>
  8.             <xs:sequence>
  9.               <xs:element name="ITEMS">
  10.                 <xs:complexType>
  11.                   <xs:sequence>
  12.                     <xs:element minOccurs="1" maxOccurs="unbounded" name="ITEMS">
  13.                       <xs:complexType>
  14.                         <xs:sequence>
  15.                           <xs:element name="ID" type="xs:string" />
  16.                           <xs:element name="CODE" type="xs:string" />
  17.                           <xs:element name="UNIT" type="xs:string" />
  18.                           <xs:element name="DESC" type="xs:string" />
  19.                           <xs:element name="BankCode" type="xs:string" />
  20.                           <xs:element name="BankDesc" type="xs:string" />
  21.                         </xs:sequence>
  22.                       </xs:complexType>
  23.                     </xs:element>
  24.                   </xs:sequence>
  25.                 </xs:complexType>
  26.               </xs:element>
  27.               <xs:element name="VAT" type="xs:string" />
  28.               <xs:element name="AMT" type="xs:string" />
  29.               <xs:element name="Comments" type="xs:string" />
  30.             </xs:sequence>
  31.             <xs:attribute name="ProdName" type="xs:string" />
  32.             <xs:attribute name="ProdDesc" type="xs:string" />
  33.           </xs:complexType>
  34.         </xs:element>
  35.       </xs:sequence>
  36.     </xs:complexType>
  37.   </xs:element>
  38. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement