DepositFilter - Schema Documentation - V4.5.Revision
Documents generated: 4/9/2021

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/DepositFilter.xsd
Version 4.5.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/v4/Common.xsd (at Common.xsd)
    • http://cufxstandards.com/v4/Contact.xsd (at Contact.xsd)
    • http://cufxstandards.com/v4/Party.xsd (at Party.xsd)
    • http://cufxstandards.com/v4/Relationship.xsd (at Relationship.xsd)
    • http://cufxstandards.com/v4/Account.xsd (at Account.xsd)
    • http://cufxstandards.com/v4/AccountFilter.xsd (at AccountFilter.xsd)
    • http://cufxstandards.com/v4/Deposit.xsd (at Deposit.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v4/DepositFilter.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
common http://cufxstandards.com/v4/Common.xsd
contact http://cufxstandards.com/v4/Contact.xsd
party http://cufxstandards.com/v4/Party.xsd
relationship http://cufxstandards.com/v4/Relationship.xsd
account http://cufxstandards.com/v4/Account.xsd
accountfilter http://cufxstandards.com/v4/AccountFilter.xsd
deposit http://cufxstandards.com/v4/Deposit.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v4/DepositFilter.xsd" version="4.5.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v4/Common.xsd" schemaLocation="Common.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Contact.xsd" schemaLocation="Contact.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Party.xsd" schemaLocation="Party.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Relationship.xsd" schemaLocation="Relationship.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Account.xsd" schemaLocation="Account.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/AccountFilter.xsd" schemaLocation="AccountFilter.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Deposit.xsd" schemaLocation="Deposit.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: depositFilter

Name depositFilter
Type DepositFilter
Nillable no
Abstract no
Documentation The list of filter options for services using deposit account data.
JSON Instance Representation
{depositFilter
<!-- 'accountfilter:AccountFilter' super type was not found in this schema. Some elements and attributes may be missing. -->
"maturityDateRange" : common:DateRange , [0..*] ?
depositFilter}
Schema Component Representation
<xs:element name="depositFilter" type="DepositFilter"/>
top

Global Definitions

Complex Type: DepositFilter

Name DepositFilter
Abstract no
Documentation The list of filter options for services requesting deposit account or deposit account detail data. The options can be used in combination or by themselves. It is up to the data source to either return or affect the data requested or return a standard error identifying why the request was rejected.
JSON Instance Representation
{
<!-- 'accountfilter:AccountFilter' super type was not found in this schema. Some elements and attributes may be missing. -->
"maturityDateRange" : common:DateRange , [0..*] ?
}
Schema Component Representation
<xs:complexType name="DepositFilter">
<xs:complexContent>
<xs:extension base="accountfilter:AccountFilter">
<xs:sequence>
<xs:element name="maturityDateRange" type="common:DateRange" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top