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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/MicroDepositFunding.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/Relationship.xsd (at Relationship.xsd)
    • http://cufxstandards.com/v5/Common.xsd (at Common.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/MicroDepositFunding.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
account http://cufxstandards.com/v5/Account.xsd
relationship http://cufxstandards.com/v5/Relationship.xsd
common http://cufxstandards.com/v5/Common.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/MicroDepositFunding.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/Relationship.xsd" schemaLocation="Relationship.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Common.xsd" schemaLocation="Common.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: microDepositFundingList

Name microDepositFundingList
Type MicroDepositFundingList
Nillable no
Abstract no
Documentation Top level microdeposit list collection element.
JSON Instance Representation
{microDepositFundingList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"microDepositFunding" : MicroDepositFunding , [0..*] ?
microDepositFundingList}
Schema Component Representation
<xs:element name="microDepositFundingList" type="MicroDepositFundingList"/>
top

Global Definitions

Complex Type: MicroDeposit

Name MicroDeposit
Abstract no
Documentation Standard definition for money values to include both the value and the currency. Currency defaults to USD (United States $) if not specified.
JSON Instance Representation
{
"microDepositId" : MicroDepositId , [0..1] ?
"microDepositAmount" : common:Money , [1] ?
"microDepositConfirmationCode" : xs:string , [0..1] ?
}
Schema Component Representation
<xs:complexType name="MicroDeposit">
<xs:sequence>
<xs:element name="microDepositId" type="MicroDepositId" minOccurs="0" maxOccurs="1"/>
<xs:element name="microDepositAmount" type="common:Money" minOccurs="1" maxOccurs="1"/>
<xs:element name="microDepositConfirmationCode" type="xs:string" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: MicroDepositFunding

Name MicroDepositFunding
Abstract no
JSON Instance Representation
{
"microDepositFundingId" : MicroDepositFundingId , [0..1] ?
"relationshipId" : relationship:RelationshipId , [0..1] ?
"partyId" : common:PartyId , [0..1] ?
"sourceAccount" : account:AccountId , [0..1] ?
"sourceAccountType" : account:AccountType , [0..1] ?
"sourceAccountSubType" : account:AccountSubType , [0..1] ?
"externalAccountID" : xs:string , [0..1] ?
"externalRoutingNumber" : xs:string , [0..1] ?
"microDepositList" : MicroDepositList , [0..1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="MicroDepositFunding">
<xs:sequence>
<xs:element name="microDepositFundingId" type="MicroDepositFundingId" minOccurs="0" maxOccurs="1"/>
<xs:element name="relationshipId" type="relationship:RelationshipId" minOccurs="0" maxOccurs="1"/>
<xs:element name="partyId" type="common:PartyId" minOccurs="0" maxOccurs="1"/>
<xs:element name="sourceAccount" type="account:AccountId" minOccurs="0" maxOccurs="1"/>
<xs:element name="sourceAccountType" type="account:AccountType" minOccurs="0" maxOccurs="1"/>
<xs:element name="sourceAccountSubType" type="account:AccountSubType" minOccurs="0" maxOccurs="1"/>
<xs:element name="externalAccountID" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="externalRoutingNumber" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="microDepositList" type="MicroDepositList" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: MicroDepositFundingIdList

Name MicroDepositFundingIdList
Abstract no
Documentation The list of micro funding deposit ids to be returned or affected by a read, update or delete request.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"microDepositFundingId" : MicroDepositFundingId , [0..*] ?
}
Schema Component Representation
<xs:complexType name="MicroDepositFundingIdList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="microDepositFundingId" type="MicroDepositFundingId" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: MicroDepositFundingList

Name MicroDepositFundingList
Abstract no
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"microDepositFunding" : MicroDepositFunding , [0..*] ?
}
Schema Component Representation
<xs:complexType name="MicroDepositFundingList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="microDepositFunding" type="MicroDepositFunding" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: MicroDepositIdList

Name MicroDepositIdList
Abstract no
Documentation The list of micro deposit ids to be returned or affected by a read, update or delete request.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"microDepositId" : MicroDepositId , [0..*] ?
}
Schema Component Representation
<xs:complexType name="MicroDepositIdList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="microDepositId" type="MicroDepositId" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: MicroDepositList

Name MicroDepositList
Abstract no
Documentation A list of micro deposit.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"microDeposit" : MicroDeposit , [0..*]
}
Schema Component Representation
<xs:complexType name="MicroDepositList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="microDeposit" type="MicroDeposit" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Simple Type: MicroDepositFundingId

Name MicroDepositFundingId
Content
  • Base XSD Type: string
Schema Component Representation
<xs:simpleType name="MicroDepositFundingId">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top

Simple Type: MicroDepositId

Name MicroDepositId
Content
  • Base XSD Type: string
Schema Component Representation
<xs:simpleType name="MicroDepositId">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top