<?xml version='1.0' standalone='yes'?>
<report ID='1'>
<!-- 
     The following is based largely on the XML Schema working group draft 
     http://www.w3.org/TR/xmlschema-1/ with our own datatypes (eg: ui2) defined below
     being compatible with Microsoft's data types XML-Data, except format of date, time etc.
     defined in http://msdn.microsoft.com/xml/schema/reference/datatypes.asp

     Our dbFields are <elementType>s nested within the <elementType> of the table, rather than the
     MS approach of declaring an <elementType> then using an IDRef in the <element> type attribute
     we use length attributes in the <datatype> to indicate string and base64 fixed length fields
     following the facets discussed in http://www.w3.org/TR/xmlschema-2/
-->
   <schema
      xmlns:dt='http://www.w3.org/xmlschemas/datatypes'>
      <datatype name='ui2'><basetype name='dt:integer'/><minInclusive>0</minInclusive><maxInclusive>65,535</maxInclusive></datatype>
      <datatype name='i2'><basetype name='dt:integer'/><minInclusive>-32,768</minInclusive><maxInclusive>32,767</maxInclusive></datatype>
      <datatype name='ui4'><basetype name='dt:integer'/><minInclusive>0</minInclusive><maxInclusive>4,294,967,295</maxInclusive></datatype>
      <datatype name='i4'><basetype name='dt:integer'/><minInclusive>-2,147,483,648</minInclusive><maxInclusive>2,147,483,647</maxInclusive></datatype>
      <datatype name='double'><basetype name='dt:real'/><minInclusive>1.7E-308</minInclusive><maxInclusive>1.7E308</maxInclusive></datatype>
      <datatype name='date'><basetype name='dt:integer'/><minInclusive>0</minInclusive><maxInclusive>4,294,967,295</maxInclusive></datatype>
      <datatype name='dateTime'><basetype name='dt:integer'/><minInclusive>0</minInclusive><maxInclusive>4,294,967,295</maxInclusive></datatype>
      <datatype name='time'><basetype name='dt:integer'/><minInclusive>0</minInclusive><maxInclusive>65,535</maxInclusive></datatype>

      <elementType name='dbStudents'>
         <elementType name='Last_Name'> <datatypeRef name='string' length='25'/> </elementType>
         <elementType name='First_Name'> <datatypeRef name='string' length='15'/> </elementType>
         <elementType name='field2'> <datatypeRef name='string' length='10'/> </elementType>
      </elementType>
   </schema>
   <style>
      #1{rpLineThickness: 2; rpPageHeight: 792 ; rpPageWidth: 576 ; rpBorderType: 0 ; rpBandIndenting : 0 ; rpLeftMargin: 72 ; rpRightMargin: 72 ; rpTopMargin: 36 ; rpBottomMargin: 36 ; rpColSepWidth: 20 ; rpBlockVertSep: 20 ; rpDefaultTextStyle: 1-1; rpDrawHeadingsDownToLevel: 1 ; rpPrintGraphsInMono: true ; rpModalPreviewWindow: false ; rpGraphBandMinSizePercent: 50 ;  }
      #1-1{font-family: Helvetica; line-height: 1.000 ; font-size:  10 ; color: rgb(0, 0, 0); text-align:  left}
      #1-2-1-2-1{font-family: Helvetica; line-height: 1.000 ; font-size:  16 ; font-weight: bold; color: rgb(0, 0, 0); text-align:  left}
      #1-2-1-2-2{font-family: Helvetica; line-height: 1.000 ; font-size:  16 ; color: rgb(0, 0, 0); text-align:  left}
      #1-2-1-2{font-family: Helvetica; line-height: 1.000 ; font-size:  14 ; font-weight: bold; color: rgb(0, 0, 0); text-align:  left}
      #1-2-1-6-5{font-family: Helvetica; line-height: 1.000 ; font-size:  14 ; font-weight: bold; color: rgb(0, 0, 0); text-align:  left}
   </style>
   <layout>
      <header where='first'>
         <space height='3'/>
         <box ID='1-2-1-2'>
            <inline ID='1-2-1-2-1'  fixedWidth='120'>School Title:</inline>
            <inline ID='1-2-1-2-2'>Some Spaced String</inline>
            <BR/>
            <inline align='centre'>Student List</inline>
            <BR/>
            <inline align='right'>Date: 15/1/2002</inline>
            <BR/>
         </box>
         <space height='7'/>
         <HR height='2'/>
         <space height='5'/>
      </header>
      <header>
         <box>
            <inline ID='1-2-1-6-5' align='centre'>OOFILE Sample Report</inline>
         </box>
         <HR height='2'/>
         <space height='10'/>
      </header>
      <footer>
         <space height='10'/>
         <box>
            <inline>OOFILE Sample Report Footer</inline>
            <inline align='right'>Page ^P</inline>
         </box>
      </footer>
      <table ID='1-2-1' source='dbStudents'>
      </table>
   </layout>
   <dbStudents>
      <Last_Name>Carey</Last_Name>
      <First_Name>Marion</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Dobson</Last_Name>
      <First_Name>Sharon</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Donaldson</Last_Name>
      <First_Name>Mark</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Fosters</Last_Name>
      <First_Name>Lara</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Harrison</Last_Name>
      <First_Name>Peter</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Henderson</Last_Name>
      <First_Name>Julia</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Marson</Last_Name>
      <First_Name>Jason</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>McKenzie</Last_Name>
      <First_Name>Robert</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Speares</Last_Name>
      <First_Name>Andrew</First_Name>
      <field2>Fixed Text</field2>

      <Last_Name>Watson</Last_Name>
      <First_Name>Sara</First_Name>
      <field2>Fixed Text</field2>

   </dbStudents>
</report>
