<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE transfers  [
  <!ELEMENT  transfers  (fundsTransfer)+ >
  <!ELEMENT  fundsTransfer  (from, to)  >
  <!ATTLIST fundsTransfer
         date  CDATA  #REQUIRED>
  <!ELEMENT  from  (amount, transitID?, accountID, acknowledgeReceipt ) >
  <!ATTLIST from
         type  (intrabank|internal|other)  #REQUIRED>
  <!ELEMENT  amount  (#PCDATA)  >
  <!ATTLIST amount
         currency  (USD|CDN|FFR|EU)  #REQUIRED>
  <!ELEMENT  transitID  (#PCDATA)  >
  <!ELEMENT  accountID  (#PCDATA)  >
  <!ELEMENT acknowledgeReceipt (#PCDATA) >
  <!ELEMENT  to  EMPTY  >
  <!ATTLIST to
         account  CDATA  #REQUIRED>
]>
<transfers>
   <fundsTransfer date="20010923T12:34:34Z">
   <!-- comment goes here -->
     <from type="intrabank">
        <amount currency="USD"> 1332.32 </amount>
        <transitID> 3211 </transitID>
        <accountID> 4321332 </accountID>
        <acknowledgeReceipt> yes </acknowledgeReceipt>
     </from>
     <to account="132212412321" />
   </fundsTransfer>
   <fundsTransfer date="20010923T12:35:12Z">
     <from type="internal">
        <amount currency="CDN" >1432.12 </amount>
        <accountID> 543211 </accountID>
        <acknowledgeReceipt> yes </acknowledgeReceipt>
     </from>
     <to account="65123222" />
   </fundsTransfer>
</transfers>

