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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/CreditReportMessage.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/MessageContext.xsd (at MessageContext.xsd)
    • http://cufxstandards.com/v5/CreditReport.xsd (at CreditReport.xsd)
    • http://cufxstandards.com/v5/CreditReportFilter.xsd (at CreditReportFilter.xsd)
    • http://cufxstandards.com/v5/CreditReportRequest.xsd (at CreditReportRequest.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/CreditReportMessage.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
messageContext http://cufxstandards.com/v5/MessageContext.xsd
creditReport http://cufxstandards.com/v5/CreditReport.xsd
creditReportFilter http://cufxstandards.com/v5/CreditReportFilter.xsd
creditReportRequest http://cufxstandards.com/v5/CreditReportRequest.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/CreditReportMessage.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v5/MessageContext.xsd" schemaLocation="MessageContext.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/CreditReport.xsd" schemaLocation="CreditReport.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/CreditReportFilter.xsd" schemaLocation="CreditReportFilter.xsd"/>
<xs:import namespace="http://cufxstandards.com/v5/CreditReportRequest.xsd" schemaLocation="CreditReportRequest.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: creditReportMessage

Name creditReportMessage
Type CreditReportMessage
Nillable no
Abstract no
Documentation All values that can be sent in a credit report message. Contains message context, credit report request, credit report filter and a credit report list. This is a wrapper used to more easily serialize the complete message. All values are optional. See example specifications for usage.
JSON Instance Representation
{creditReportMessage
"messageContext" : messageContext:MessageContext , [0..1] ?
"creditReportFilter" : creditReportFilter:CreditReportFilter , [0..1] ?
"creditReportList" : creditReport:CreditReportList , [0..1] ?
"creditReportRequest" : creditReportRequest:CreditReportRequest , [0..1] ?
creditReportMessage}
Schema Component Representation
<xs:element name="creditReportMessage" type="CreditReportMessage"/>
top

Global Definitions

Complex Type: CreditReportMessage

Name CreditReportMessage
Abstract no
Documentation All values that can be sent in a credit report message. Contains message context, credit report request, credit report filter and a credit report list. This is a wrapper used to more easily serialize the complete message. All values are optional. See example specifications for usage.
JSON Instance Representation
{
"messageContext" : messageContext:MessageContext , [0..1] ?
"creditReportFilter" : creditReportFilter:CreditReportFilter , [0..1] ?
"creditReportList" : creditReport:CreditReportList , [0..1] ?
"creditReportRequest" : creditReportRequest:CreditReportRequest , [0..1] ?
}
Schema Component Representation
<xs:complexType name="CreditReportMessage">
<xs:sequence>
<xs:element name="messageContext" type="messageContext:MessageContext" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditReportFilter" type="creditReportFilter:CreditReportFilter" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditReportList" type="creditReport:CreditReportList" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditReportRequest" type="creditReportRequest:CreditReportRequest" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top