<xsd:complexType name="LcTerminationNotice">
<xsd:annotation>
<xsd:documentation xml:lang="en">Letter of Credit termination notice. L/C's can either expire or be cancelled; both of these scenarios would be captured by this notice.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="FacilityNotice">
<xsd:sequence>
<xsd:element name="lcSummary" type="LcSummary" />
<xsd:element name="effectiveDate" type="xsd:date" />
<xsd:element name="lcExpiryFlag" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation xml:lang="en">Determines whether this event was created due to a natural expiration of the LC or an unscheduled cancellation.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="currentAmount" type="ParticipationAmount" minOccurs="0" />
<xsd:element name="party" type="Party" minOccurs="2" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">The parties involved with the associated transaction.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
|