<schema>
  <!-- Relative path for file attr works here; absolute path can be used too -->
  <table name="curr_xchg_rates" file="curr_xchg_rate_data.xml" path="/rates/rate" >
    <!-- the wildcard '*' denotes any string of zero or more characters -->
    <!-- with reg exp: name = "regex:currency-exchange-rates-20[0-1][0-3].csv" -->
    <column name = "CD" path="CD" type = "String" size = "128"/>
    <column name = "Country" path="Country" type = "String" size = "128"/>
    <column name = "Currency" path="Currency" type = "String" size = "128"/>
    <column name = "ISO" path="ISO" type = "String" size="128"/>
    <column name = "YESTERDAY" path="YESTERDAY" type = "Decimal"/>
    <column name = "TODAY_" path="TODAY_" type = "Decimal"/>
    <column name = "PCTCHANGE" path="PCTCHANGE" type = "Decimal"/>
  </table>
</schema>
<!-- Copyright 2016 Real-Time Technology Solutions, Inc. All Rights Reserved. -->