<xsd:complexType name="InterestAccrualsMethod">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type describing the method for accruing interests on dividends. Can be either a fixed rate reference or a floating rate reference.</xsd:documentation>
</xsd:annotation>
<xsd:choice>
<xsd:element name="floatingRateCalculation" type="FloatingRateCalculation">
<xsd:annotation>
<xsd:documentation xml:lang="en">The floating rate calculation definitions</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="fixedRate" type="xsd:decimal">
<xsd:annotation>
<xsd:documentation xml:lang="en">The calculation period fixed rate. A per annum rate, expressed as a decimal. A fixed rate of 5% would be represented as 0.05.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
</xsd:complexType>
|