<xsd:complexType name="PositionsAsserted">
<xsd:annotation>
<xsd:documentation xml:lang="en">Request that a portfolio be defined, either by replacing any pre-existing definition, or by updating or removing individual positions.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="RequestMessage">
<xsd:sequence>
<xsd:element name="portfolio" type="InitialPortfolioDefinition">
<xsd:annotation>
<xsd:documentation xml:lang="en">Contains the portfolio definition.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="submissionsComplete" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation xml:lang="en">Indicates whether all portfolio updates have been submitted for this as-of date</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:choice>
<xsd:annotation>
<xsd:documentation xml:lang="en">Either start from scratch and define new positions, or just update and remove positions</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="replaceAllPositions" type="Empty">
<xsd:annotation>
<xsd:documentation xml:lang="en">Indicates that this message replaces all previous positions for this portfolio.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="definePosition" type="DefinePosition" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">Used to specify a new position.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="definePosition" type="DefinePosition">
<xsd:annotation>
<xsd:documentation xml:lang="en">Used to specify a position, whether it is a new or updated position.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="removePosition" type="PositionReference">
<xsd:annotation>
<xsd:documentation xml:lang="en">Used to remove a position from the portfolio.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
</xsd:choice>
<xsd:element name="party" type="Party" minOccurs="2" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
|