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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/CardFilter.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/Party.xsd (at Party.xsd)
    • http://cufxstandards.com/v4/Card.xsd (at Card.xsd)
    • http://cufxstandards.com/v4/Common.xsd (at Common.xsd)

Declared Namespaces

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

Global Declarations

Element: cardFilter

Name cardFilter
Type CardFilter
Nillable no
Abstract no
Documentation The list of filter options for services requesting card data.
JSON Instance Representation
{cardFilter
"cardIdList" : card:CardIdList , [0..1] ?
"partyIdList" : party:PartyIdList , [0..1] ?
"accountIdList" : account:AccountIdList , [0..1] ?
"accountStatusList" : account:AccountStatusList , [0..1] ?
"cardTypeList" : card:CardTypeList , [0..1] ?
"cardStatusList" : card:CardStatusList , [0..1] ?
"activationDateRange" : common:DateRange , [0..1] ?
"expirationDateRange" : common:DateRange , [0..1] ?
"blockedDateRange" : common:DateRange , [0..1] ?
"customData" : common:CustomData , [0..1] ?
"accountIdentificationList" : account:AccountIdentificationList , [0..1] ?
cardFilter}
Schema Component Representation
<xs:element name="cardFilter" type="CardFilter"/>
top

Global Definitions

Complex Type: CardFilter

Name CardFilter
Abstract no
Documentation The list of filter options for services requesting card data. The options can be used in combination or by themselves. It is up to the data source to either return or affect the data requested or return a standard error identifying why the request was rejected.
JSON Instance Representation
{
"cardIdList" : card:CardIdList , [0..1] ?
"partyIdList" : party:PartyIdList , [0..1] ?
"accountIdList" : account:AccountIdList , [0..1] ?
"accountStatusList" : account:AccountStatusList , [0..1] ?
"cardTypeList" : card:CardTypeList , [0..1] ?
"cardStatusList" : card:CardStatusList , [0..1] ?
"activationDateRange" : common:DateRange , [0..1] ?
"expirationDateRange" : common:DateRange , [0..1] ?
"blockedDateRange" : common:DateRange , [0..1] ?
"customData" : common:CustomData , [0..1] ?
"accountIdentificationList" : account:AccountIdentificationList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="CardFilter">
<xs:sequence>
<xs:element name="cardIdList" type="card:CardIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="partyIdList" type="party:PartyIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="accountIdList" type="account:AccountIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="accountStatusList" type="account:AccountStatusList" minOccurs="0" maxOccurs="1"/>
<xs:element name="cardTypeList" type="card:CardTypeList" minOccurs="0" maxOccurs="1"/>
<xs:element name="cardStatusList" type="card:CardStatusList" minOccurs="0" maxOccurs="1"/>
<xs:element name="activationDateRange" type="common:DateRange" minOccurs="0" maxOccurs="1"/>
<xs:element name="expirationDateRange" type="common:DateRange" minOccurs="0" maxOccurs="1"/>
<xs:element name="blockedDateRange" type="common:DateRange" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
<xs:element name="accountIdentificationList" type="account:AccountIdentificationList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top