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

Table of Contents

top

Schema Document Properties

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

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v4/CreditReport.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
common http://cufxstandards.com/v4/Common.xsd
party http://cufxstandards.com/v4/Party.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v4/CreditReport.xsd" version="4.5.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<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: creditReportList

Name creditReportList
Type CreditReportList
Nillable no
Abstract no
Documentation Top level collection of credit reports.
JSON Instance Representation
{creditReportList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"creditReport" : CreditReport , [0..*] ?
creditReportList}
Schema Component Representation
<xs:element name="creditReportList" type="CreditReportList"/>
top

Global Definitions

Complex Type: CreditReport

Name CreditReport
Abstract no
Documentation Details relating credit scores used in determining loan decisions, risk-based pricing, or membership eligibility.
JSON Instance Representation
{
"creditReportId" : CreditReportId , [0..1] ?
"creditReportDate" : xs:date , [0..1] ?
"creditSource" : xs:string , [0..1] ?
"reportType" : xs:string , [0..1] ?
"scoreType" : xs:string , [0..1] ?
"partyId" : party:PartyId , [0..1] ?
"taxId" : party:TaxId , [0..1] ?
"creditScore" : xs:integer , [0..1] ?
"creditTier" : xs:string , [0..1] ?
"reportData" : xs:string , [0..1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="CreditReport">
<xs:sequence>
<xs:element name="creditReportId" type="CreditReportId" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditReportDate" type="xs:date" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditSource" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="reportType" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="scoreType" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="partyId" type="party:PartyId" minOccurs="0" maxOccurs="1"/>
<xs:element name="taxId" type="party:TaxId" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditScore" type="xs:integer" minOccurs="0" maxOccurs="1"/>
<xs:element name="creditTier" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="reportData" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: CreditReportIdList

Name CreditReportIdList
Abstract no
Documentation List of unique identifiers typically used for pulling a list of credit reports from the data repository.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"creditReportId" : CreditReportId , [0..*] ?
}
Schema Component Representation
<xs:complexType name="CreditReportIdList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="creditReportId" type="CreditReportId" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: CreditReportList

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

Simple Type: CreditReportId

Name CreditReportId
Content
  • Base XSD Type: string
Documentation Unique identifier for the credit report in the data repository.
Schema Component Representation
<xs:simpleType name="CreditReportId">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top