InvestmentMessage - Schema Documentation - V5.0.Revision
Documents generated: 6/7/2021

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/InvestmentMessage.xsd
Version 5.0.Revision
Element and Attribute Namespaces
  • Global element and attribute declarations belong to this schema's target namespace.
  • By default, local element declarations belong to this schema's target namespace.
  • By default, local attribute declarations have no namespace.
Schema Composition
  • This schema imports schema(s) from the following namespace(s):
    • http://cufxstandards.com/v5/MessageContext.xsd (at MessageContext.xsd)
    • http://cufxstandards.com/v5/Investment.xsd (at Investment.xsd)
    • http://cufxstandards.com/v5/InvestmentFilter.xsd (at InvestmentFilter.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/InvestmentMessage.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
messageContext http://cufxstandards.com/v5/MessageContext.xsd
investment http://cufxstandards.com/v5/Investment.xsd
investmentFilter http://cufxstandards.com/v5/InvestmentFilter.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/InvestmentMessage.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v5/MessageContext.xsd" schemaLocation="MessageContext.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Investment.xsd" schemaLocation="Investment.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/InvestmentFilter.xsd" schemaLocation="InvestmentFilter.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: investmentMessage

Name investmentMessage
Type InvestmentMessage
Nillable no
Abstract no
Documentation All values that can be sent in a investment message. Contains message context, investment filter and a investment list. This is a wrapper used to more easily serialize the complete message. All values are optional. See example specifications for usage.
JSON Instance Representation
{investmentMessage
"messageContext" : messageContext:MessageContext , [0..1] ?
"investmentFilter" : investmentFilter:InvestmentFilter , [0..1] ?
"investmentList" : investment:InvestmentList , [0..1] ?
investmentMessage}
Schema Component Representation
<xs:element name="investmentMessage" type="InvestmentMessage"/>
top

Global Definitions

Complex Type: InvestmentMessage

Name InvestmentMessage
Abstract no
Documentation All values that can be sent in a investment message. Contains message context, investment filter and a investment list. This is a wrapper used to more easily serialize the complete message. All values are optional. See example specifications for usage.
JSON Instance Representation
{
"messageContext" : messageContext:MessageContext , [0..1] ?
"investmentFilter" : investmentFilter:InvestmentFilter , [0..1] ?
"investmentList" : investment:InvestmentList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="InvestmentMessage">
<xs:sequence>
<xs:element name="messageContext" type="messageContext:MessageContext" minOccurs="0" maxOccurs="1"/>
<xs:element name="investmentFilter" type="investmentFilter:InvestmentFilter" minOccurs="0" maxOccurs="1"/>
<xs:element name="investmentList" type="investment:InvestmentList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top