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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/LoanMessage.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/MessageContext.xsd (at MessageContext.xsd)
    • http://cufxstandards.com/v4/Loan.xsd (at Loan.xsd)
    • http://cufxstandards.com/v4/LoanFilter.xsd (at LoanFilter.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v4/LoanMessage.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
messageContext http://cufxstandards.com/v4/MessageContext.xsd
loan http://cufxstandards.com/v4/Loan.xsd
loanFilter http://cufxstandards.com/v4/LoanFilter.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v4/LoanMessage.xsd" version="4.5.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v4/MessageContext.xsd" schemaLocation="MessageContext.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Loan.xsd" schemaLocation="Loan.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/LoanFilter.xsd" schemaLocation="LoanFilter.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: loanMessage

Name loanMessage
Type LoanMessage
Nillable no
Abstract no
Documentation All values that can be sent in a loan message. Contains message context, loan filter and a loan 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
{loanMessage
"messageContext" : messageContext:MessageContext , [0..1] ?
"loanFilter" : loanFilter:LoanFilter , [0..1] ?
"loanList" : loan:LoanList , [0..1] ?
loanMessage}
Schema Component Representation
<xs:element name="loanMessage" type="LoanMessage"/>
top

Global Definitions

Complex Type: LoanMessage

Name LoanMessage
Abstract no
Documentation All values that can be sent in a loan message. Contains message context, loan filter and a loan 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] ?
"loanFilter" : loanFilter:LoanFilter , [0..1] ?
"loanList" : loan:LoanList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="LoanMessage">
<xs:sequence>
<xs:element name="messageContext" type="messageContext:MessageContext" minOccurs="0" maxOccurs="1"/>
<xs:element name="loanFilter" type="loanFilter:LoanFilter" minOccurs="0" maxOccurs="1"/>
<xs:element name="loanList" type="loan:LoanList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top