<xsd:simpleType name="InterestPaidWithRepaymentEnum">
<xsd:annotation>
<xsd:documentation xml:lang="en">>Defines the options of paying interest with repayment.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="NoInterest">
<xsd:annotation>
<xsd:documentation xml:lang="en">Interest is not payed with repayment.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="PayedOnShareAmount">
<xsd:annotation>
<xsd:documentation xml:lang="en">Interest is payed with repayment. Interest accrual amount is based on lender loan contract share amount.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="PayedOnRepaymentAmount">
<xsd:annotation>
<xsd:documentation xml:lang="en">Interest is payed with repayment. Interest accrual amount is based on lender share repayment amount.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|