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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/InvestmentFilter.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/Account.xsd (at Account.xsd)
    • http://cufxstandards.com/v5/AccountFilter.xsd (at AccountFilter.xsd)
    • http://cufxstandards.com/v5/Common.xsd (at Common.xsd)
    • http://cufxstandards.com/v5/Investment.xsd (at Investment.xsd)
    • http://cufxstandards.com/v5/InvestmentHolding.xsd (at InvestmentHolding.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/InvestmentFilter.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
account http://cufxstandards.com/v5/Account.xsd
accountFilter http://cufxstandards.com/v5/AccountFilter.xsd
common http://cufxstandards.com/v5/Common.xsd
investment http://cufxstandards.com/v5/Investment.xsd
investmentHolding http://cufxstandards.com/v5/InvestmentHolding.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/InvestmentFilter.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v5/Account.xsd" schemaLocation="Account.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/AccountFilter.xsd" schemaLocation="AccountFilter.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Common.xsd" schemaLocation="Common.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Investment.xsd" schemaLocation="Investment.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/InvestmentHolding.xsd" schemaLocation="InvestmentHolding.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: investmentFilter

Name investmentFilter
Type InvestmentFilter
Nillable no
Abstract no
Documentation The collection/array list contains all the investment accounts to be read, updated or deleted with this request.
JSON Instance Representation
{investmentFilter
<!-- 'accountFilter:AccountFilter' super type was not found in this schema. Some elements and attributes may be missing. -->
"holdingIdList" : investmentHolding:HoldingIdList , [0..1] ?
"holdingAsOfDateRange" : common:DateRange , [0..1] ?
investmentFilter}
Schema Component Representation
<xs:element name="investmentFilter" type="InvestmentFilter"/>
top

Global Definitions

Complex Type: InvestmentFilter

Name InvestmentFilter
Abstract no
Documentation The collection/array contains all the Investment accounts to be read, updated or deleted with this request.
JSON Instance Representation
{
<!-- 'accountFilter:AccountFilter' super type was not found in this schema. Some elements and attributes may be missing. -->
"holdingIdList" : investmentHolding:HoldingIdList , [0..1] ?
"holdingAsOfDateRange" : common:DateRange , [0..1] ?
}
Schema Component Representation
<xs:complexType name="InvestmentFilter">
<xs:complexContent>
<xs:extension base="accountFilter:AccountFilter">
<xs:sequence>
<xs:element name="holdingIdList" type="investmentHolding:HoldingIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="holdingAsOfDateRange" type="common:DateRange" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top