XML Schema Documentation

Complex Type: DataDocument

[Table of contents]

Super-types: Document < DataDocument (by extension)
Sub-types: None
Name DataDocument
Abstract no
Documentation A type defining a content model that is backwards compatible with older FpML releases and which can be used to contain sets of data without expressing any processing intention.
XML Instance Representation
<...
version=" xsd:token (value comes from list: {'4-0'|'4-1'|'4-2'|'4-3'|'4-4'}) [1]

'Indicate which version of the FpML Schema an FpML message adheres to.'

"

expectedBuild=" xsd:positiveInteger [0..1]

'This optional attribute can be supplied by a message creator in an FpML instance to specify which build number of the schema was used to define the message when it was generated.'

"

actualBuild="12 [0..1]

'The specific build number of this schema version. This attribute is not included in an instance document. Instead, it is supplied by the XML parser when the document is validated against the FpML schema and indicates the build number of the schema file. Every time FpML publishes a change to the schema, validation rules, or examples within a version (e.g., version 4.2) the actual build number is incremented. If no changes have been made between releases within a version (i.e. from Trial Recommendation to Recommendation) the actual build number stays the same.'

"
>
<validation> Validation </validation> [0..*]
Start Choice [1]
<trade> Trade </trade> [0..*]

'The root element in an FpML trade document.'

<portfolio> Portfolio </portfolio> [0..*]

'An arbitary grouping of trade references (and possibly other portfolios).'

<event> ... </event> [1..*]

'A business event.'

End Choice
<party> Party </party> [0..*]

'A legal entity or a subdivision of a legal entity.','Parties can perform multiple roles in a trade lifecycle. For example, the principal parties obligated to make payments from time to time during the term of the trade, but may include other parties involved in, or incidental to, the trade, such as parties acting in the role of novation transferor/transferee, broker, calculation agent, etc. In FpML roles are defined in multiple places within a document.'

</...>
Diagram
Schema Component Representation
<xsd:complexType name="DataDocument">
<xsd:complexContent>
<xsd:extension base=" Document ">
<xsd:sequence>
<xsd:group ref=" Validation.model "/>
<xsd:choice>
<xsd:sequence>
<xsd:element name="trade" type=" Trade " minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="portfolio" type=" Portfolio " minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:sequence>
<xsd:element ref=" event " maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:choice>
<xsd:element name="party" type=" Party " minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>