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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/LoanFilter.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/Contact.xsd (at Contact.xsd)
    • http://cufxstandards.com/v5/Party.xsd (at Party.xsd)
    • http://cufxstandards.com/v5/Relationship.xsd (at Relationship.xsd)
    • http://cufxstandards.com/v5/Loan.xsd (at Loan.xsd)
    • http://cufxstandards.com/v5/Account.xsd (at Account.xsd)
    • http://cufxstandards.com/v5/AccountFilter.xsd (at AccountFilter.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/LoanFilter.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
party http://cufxstandards.com/v5/Party.xsd
relationship http://cufxstandards.com/v5/Relationship.xsd
loan http://cufxstandards.com/v5/Loan.xsd
account http://cufxstandards.com/v5/Account.xsd
accountFilter http://cufxstandards.com/v5/AccountFilter.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/LoanFilter.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v5/Contact.xsd" schemaLocation="Contact.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Party.xsd" schemaLocation="Party.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Relationship.xsd" schemaLocation="Relationship.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Loan.xsd" schemaLocation="Loan.xsd"/>
<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:schema>
top

Global Declarations

Element: loanFilter

Name loanFilter
Type LoanFilter
Nillable no
Abstract no
Documentation The list of filter options for services requesting loans.
JSON Instance Representation
{loanFilter
<!-- 'accountFilter:AccountFilter' super type was not found in this schema. Some elements and attributes may be missing. -->
"loanCategoryList" : loan:LoanAccountCategoryList , [0..1] ?
loanFilter}
Schema Component Representation
<xs:element name="loanFilter" type="LoanFilter"/>
top

Global Definitions

Complex Type: LoanFilter

Name LoanFilter
Abstract no
Documentation The list of filter options for services requesting loan 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. -->
"loanCategoryList" : loan:LoanAccountCategoryList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="LoanFilter">
<xs:complexContent>
<xs:extension base="accountFilter:AccountFilter">
<xs:sequence>
<xs:element name="loanCategoryList" type="loan:LoanAccountCategoryList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top