<?xml version="1.0" encoding="UTF-8"?>

<!-- <!DOCTYPE sddlschema SYSTEM "sddlschema.xsd">-->

<sddl>

<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- -->
<!--  SDDL Name:    FASTRAK_TRANSFER.SDDL-->
<!-- -->
<!--  Purpose:      This SDDL file defines the FASTRAK_TRANSFER relation.-->
<!-- -->
<!--  Modification History:-->
<!-- -->
<!--    Date       OPR      Who                       Reason-->
<!--  - - - -    - - - -    - -   - - - - - - - - - - - - - - - - - - - - - -->
<!--  11/03/06   49671      FHam  Original implementation-->
<lm>  11/03/06   49671      FHam Converted to XML format </lm> <!-- last mod -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->

    <record name="FASTRAK_TRANSFER_TYPE">

        <description>This table contains the data needed to keep track
	             of fastrak transfers.</description>
                                     
            <field name="file_name">
                    <type>C*30</type>
                    <description>The name of the file to be transferred.  The 
                       file name is in uppercase and is up to 30 characters
                       in length.</description>
            </field>

            <field name="transfer_start_time">
                    <type>SYBASE_DATETIME</type>
                    <description>The UT start time for the transfer of file_name.</description>
            </field>

            <field name="transfer_end_time">
                    <type>SYBASE_DATETIME</type>
                    <description>The UT end time for the transfer of file_name.</description>
            </field>

            <field name="file_size">
                    <type>I4</type>
                    <description>The size in bytes of file_name.</description>
            </field>

            <field name="transfer_rate">
                    <type>R4</type>
                    <description>The average transfer rate of file_name in 
                       bytes/second.</description>
            </field>

            <field name="data_id">
                    <type>C3</type>
                    <description>A 3 alphanumeric character field containing the data ID 
                       as contained in the OSF.</description>
            </field>

            <field name="sms_id">
                    <type>C*9</type>
                    <description>The 9 character HST SMS ID for which file_name was 
                       a member.</description>
            </field>

            <field name="transfer_flag">
                    <type>C1</type>
                    <description>A status flag, Y or N. Y indicates that the 
                       transfer of file_name was successful. N indicates 
                       that the transfer failed or was not attempted.</description>
            </field>
 
    </record>


    <relation name="fastrak_transfer">

        <type>FASTRAK_TRANSFER_TYPE</type>

        <description>Fastrak Transfer Relation</description>

        <subsystem_using>OPUS</subsystem_using>

    </relation>
    
</sddl>
