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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/Wire.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/Account.xsd (at Account.xsd)
    • http://cufxstandards.com/v4/FundsTransferOccurrenceBase.xsd (at FundsTransferOccurrenceBase.xsd)
    • http://cufxstandards.com/v4/Common.xsd (at Common.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v4/Wire.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
account http://cufxstandards.com/v4/Account.xsd
fundsTransferOccurrenceBase http://cufxstandards.com/v4/FundsTransferOccurrenceBase.xsd
common http://cufxstandards.com/v4/Common.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v4/Wire.xsd" version="4.5.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v4/Account.xsd" schemaLocation="Account.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/FundsTransferOccurrenceBase.xsd" schemaLocation="FundsTransferOccurrenceBase.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Common.xsd" schemaLocation="Common.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: wireList

Name wireList
Type WireList
Nillable no
Abstract no
Documentation List of wires.
JSON Instance Representation
{wireList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"wire" : Wire , [0..*]
wireList}
Schema Component Representation
<xs:element name="wireList" type="WireList"/>
top

Global Definitions

Complex Type: Wire

Name Wire
Abstract no
JSON Instance Representation
{
<!-- 'fundsTransferOccurrenceBase:FundsTransferOccurrenceBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"wireTransferType" : WireTransferType , [0..1] ?
"wireTransferSpecialInstructions" : xs:string , [0..1] ?
"escrowNumber" : xs:string , [0..1] ?
"escrowOfficerName" : xs:string , [0..1] ?
"disclosuresConsented" : xs:boolean , [0..1] ?
"beneficiaryName" : common:PersonName , [0..1] ?
"beneficiaryAddress" : common:Address , [0..1] ?
}
Schema Component Representation
<xs:complexType name="Wire">
<xs:complexContent>
<xs:extension base="fundsTransferOccurrenceBase:FundsTransferOccurrenceBase">
<xs:sequence>
<xs:element name="wireTransferType" type="WireTransferType" minOccurs="0" maxOccurs="1"/>
<xs:element name="wireTransferSpecialInstructions" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="escrowNumber" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="escrowOfficerName" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="disclosuresConsented" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
<xs:element name="beneficiaryName" type="common:PersonName" minOccurs="0" maxOccurs="1"/>
<xs:element name="beneficiaryAddress" type="common:Address" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: WireList

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

Complex Type: WireTransferTypeList

Name WireTransferTypeList
Abstract no
Documentation The list of Wire transfer types either 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. -->
"wireTransferType" : WireTransferType , [0..*] ?
}
Schema Component Representation
<xs:complexType name="WireTransferTypeList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="wireTransferType" type="WireTransferType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Simple Type: WireTransferType

Name WireTransferType
Content
  • Base XSD Type: string
  • value comes from list: {'Domestic'|'Foreign'|'Investment'|'Escrow'}
Schema Component Representation
<xs:simpleType name="WireTransferType">
<xs:restriction base="xs:string">
<xs:enumeration value="Domestic"/>
<xs:enumeration value="Foreign"/>
<xs:enumeration value="Investment"/>
<xs:enumeration value="Escrow"/>
</xs:restriction>
</xs:simpleType>
top