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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/BillPaymentOccurrence.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/Common.xsd (at Common.xsd)
    • http://cufxstandards.com/v5/Party.xsd (at Party.xsd)
    • http://cufxstandards.com/v5/BillPayee.xsd (at BillPayee.xsd)
    • http://cufxstandards.com/v5/Account.xsd (at Account.xsd)
    • http://cufxstandards.com/v5/FundsTransferOccurrenceBase.xsd (at FundsTransferOccurrenceBase.xsd)
    • http://cufxstandards.com/v5/Bill.xsd (at Bill.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/BillPaymentOccurrence.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
common http://cufxstandards.com/v5/Common.xsd
party http://cufxstandards.com/v5/Party.xsd
billpayee http://cufxstandards.com/v5/BillPayee.xsd
account http://cufxstandards.com/v5/Account.xsd
fundsTransferOccurrenceBase http://cufxstandards.com/v5/FundsTransferOccurrenceBase.xsd
bill http://cufxstandards.com/v5/Bill.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/BillPaymentOccurrence.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v5/Common.xsd" schemaLocation="Common.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Party.xsd" schemaLocation="Party.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/BillPayee.xsd" schemaLocation="BillPayee.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Account.xsd" schemaLocation="Account.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/FundsTransferOccurrenceBase.xsd" schemaLocation="FundsTransferOccurrenceBase.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/Bill.xsd" schemaLocation="Bill.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: billPaymentOccurrenceList

Name billPaymentOccurrenceList
Type BillPaymentOccurrenceList
Nillable no
Abstract no
Documentation The bill payment collection/array contains all the bills, for instance, that the credential set is authorized to access at the Institution based on applied filters.
JSON Instance Representation
{billPaymentOccurrenceList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"billPaymentOccurrence" : BillPaymentOccurrence , [0..*]
billPaymentOccurrenceList}
Schema Component Representation
<xs:element name="billPaymentOccurrenceList" type="BillPaymentOccurrenceList"/>
top

Global Definitions

Complex Type: BillPaymentOccurrence

Name BillPaymentOccurrence
Abstract no
JSON Instance Representation
{
<!-- 'fundsTransferOccurrenceBase:FundsTransferOccurrenceBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"billPayeeId" : billpayee:BillPayeeId , [0..1] ?
"billId" : bill:BillId , [0..1] ?
"expectedDebitDateTime" : xs:dateTime , [0..1] ?
"paymentClearedDateTime" : xs:dateTime , [0..1] ?
"isStopRequested" : xs:boolean , [0..1] ?
"checkStoppedDate" : xs:dateTime , [0..1] ?
"nsfCount" : xs:integer , [0..1] ?
"checkNumber" : common:CheckNumber , [0..1] ?
}
Schema Component Representation
<xs:complexType name="BillPaymentOccurrence">
<xs:complexContent>
<xs:extension base="fundsTransferOccurrenceBase:FundsTransferOccurrenceBase">
<xs:sequence>
<xs:element name="billPayeeId" type="billpayee:BillPayeeId" minOccurs="0" maxOccurs="1"/>
<xs:element name="billId" type="bill:BillId" minOccurs="0" maxOccurs="1"/>
<xs:element name="expectedDebitDateTime" type="xs:dateTime" minOccurs="0" maxOccurs="1"/>
<xs:element name="paymentClearedDateTime" type="xs:dateTime" minOccurs="0" maxOccurs="1"/>
<xs:element name="isStopRequested" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
<xs:element name="checkStoppedDate" type="xs:dateTime" minOccurs="0" maxOccurs="1"/>
<xs:element name="nsfCount" type="xs:integer" minOccurs="0" maxOccurs="1"/>
<xs:element name="checkNumber" type="common:CheckNumber" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: BillPaymentOccurrenceList

Name BillPaymentOccurrenceList
Abstract no
Documentation The bill payment collection/array contains all the bills, for instance, that the credential set is authorized to access at the Institution based on applied filters
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"billPaymentOccurrence" : BillPaymentOccurrence , [0..*]
}
Schema Component Representation
<xs:complexType name="BillPaymentOccurrenceList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="billPaymentOccurrence" type="BillPaymentOccurrence" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top