<xsd:complexType name="TaxWithholding">
<xsd:annotation>
<xsd:documentation xml:lang="en">A structure that represents the withholding tax being applied to a particular cash flow.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="amount" type="NonNegativeMoney">
<xsd:annotation>
<xsd:documentation xml:lang="en">The amount of withholding tax being applied.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="taxRate" type="NonNegativeDecimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The tax rate being applied to the associated cash flow.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="reason" type="WithholdingTaxReason" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A scheme used to identify the reason for withholding tax being applied to a cash flow.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|