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

Table of Contents

top

Schema Document Properties

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

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/TransferOccurrence.xsd
xml http://www.w3.org/XML/1998/namespace
mstns http://cufxstandards.com/v5/TransferOccurrence.xsd
card http://cufxstandards.com/v5/Card.xsd
common http://cufxstandards.com/v5/Common.xsd
xs http://www.w3.org/2001/XMLSchema
fundsTransferOccurrenceBase http://cufxstandards.com/v5/FundsTransferOccurrenceBase.xsd
Schema Component Representation
<xs:schema id="TransferOccurrence" targetNamespace="http://cufxstandards.com/v5/TransferOccurrence.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v5/FundsTransferOccurrenceBase.xsd" schemaLocation="FundsTransferOccurrenceBase.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Card.xsd" schemaLocation="Card.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Common.xsd" schemaLocation="Common.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: transferOccurrenceList

Name transferOccurrenceList
Type TransferOccurrenceList
Nillable no
Abstract no
Documentation List of transfers returned from a data pull that was based on applied filters.
JSON Instance Representation
{transferOccurrenceList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"transferOccurrence" : TransferOccurrence , [0..*] ?
transferOccurrenceList}
Schema Component Representation
<xs:element name="transferOccurrenceList" type="TransferOccurrenceList"/>
top

Global Definitions

Complex Type: TransferOccurrence

Name TransferOccurrence
Abstract no
JSON Instance Representation
{
<!-- 'fundsTransferOccurrenceBase:FundsTransferOccurrenceBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"fromCard" : card:Card , [0..1] ?
"toCard" : card:Card , [0..1] ?
"noteList" : common:NoteList , [0..1] ?
"achPrenoteIndicator" : common:AchPrenoteIndicator , [0..1] ?
}
Schema Component Representation
<xs:complexType name="TransferOccurrence">
<xs:complexContent>
<xs:extension base="fundsTransferOccurrenceBase:FundsTransferOccurrenceBase">
<xs:sequence>
<xs:element name="fromCard" type="card:Card" minOccurs="0" maxOccurs="1"/>
<xs:element name="toCard" type="card:Card" minOccurs="0" maxOccurs="1"/>
<xs:element name="noteList" type="common:NoteList" minOccurs="0" maxOccurs="1"/>
<xs:element name="achPrenoteIndicator" type="common:AchPrenoteIndicator" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: TransferOccurrenceList

Name TransferOccurrenceList
Abstract no
Documentation List of transfers returned from a data pull that was based on applied filters.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"transferOccurrence" : TransferOccurrence , [0..*] ?
}
Schema Component Representation
<xs:complexType name="TransferOccurrenceList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="transferOccurrence" type="TransferOccurrence" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top