﻿<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="InstallmentBill"
    targetNamespace="http://tempuri.org/Coupon.xsd"
    elementFormDefault="qualified"
    xmlns="http://tempuri.org/Coupon.xsd"
    xmlns:mstns="http://tempuri.org/Coupon.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
  <xs:complexType name="CouponData">
    <xs:sequence>
      <xs:element name="LoanNumber" type="xs:string"></xs:element>
      <xs:element name="OnTimeDate" type="xs:date"></xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="ReportData">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="CouponData" type="CouponData" minOccurs="0" maxOccurs="unbounded"></xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>
