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

Table of Contents

top

Schema Document Properties

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

Declared Namespaces

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

Global Declarations

Element: creditReportRequest

Name creditReportRequest
Type CreditReportRequest
Nillable no
Abstract no
Documentation Top level element for credit report requests. Note: more than one applicant can be submitted to get multiple credit bureau reports returned.
JSON Instance Representation
{creditReportRequest
"applicantList" : application:ApplicantList , [1] ?
"maxReportAgeInDays" : xs:integer , [0..1] ?
"reportTypeList" : ReportTypeList , [1] ?
creditReportRequest}
Schema Component Representation
<xs:element name="creditReportRequest" type="CreditReportRequest"/>
top

Global Definitions

Complex Type: CreditReportRequest

Name CreditReportRequest
Abstract no
Documentation Fields requested to make credit report requests.
JSON Instance Representation
{
"applicantList" : application:ApplicantList , [1] ?
"maxReportAgeInDays" : xs:integer , [0..1] ?
"reportTypeList" : ReportTypeList , [1] ?
}
Schema Component Representation
<xs:complexType name="CreditReportRequest">
<xs:sequence>
<xs:element name="applicantList" type="application:ApplicantList" minOccurs="1" maxOccurs="1"/>
<xs:element name="maxReportAgeInDays" type="xs:integer" minOccurs="0" maxOccurs="1"/>
<xs:element name="reportTypeList" type="ReportTypeList" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: ReportTypeList

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