Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions l/lpq/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/
4,308 changes: 4,308 additions & 0 deletions l/lpq/CLF_20190618_pc/BaseTypes.xsd

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions l/lpq/CLF_20190618_pc/InternalUse.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
As the name implies, this schema is to specify what are the internal id's supported by LPQ.

WARNING: These content (within the InternalUse namespace) are to ONLY be used by LoansPQ internally. Vendors should not attempt to set these
as they can be changed without notice or be backward compatibility.
-->
<xs:schema xmlns="http://www.meridianlink.com/InternalUse" elementFormDefault="qualified" targetNamespace="http://www.meridianlink.com/InternalUse" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:attribute name="loan_id" type="xs:string" />
<xs:attribute name="approved_account_type_id" type="xs:string" />
<xs:attribute name="approved_account_type_relation_id" type="xs:string" />
<xs:attribute name="selected_guidelines" type="xs:string" />
<xs:attribute name ="internal_borrower_id" type="xs:string" />
<xs:attribute name ="xa_internal_applicant_type" type="xs:string" />
<xs:attribute name ="he_internal_disclosure_codes" type="xs:string" />
<xs:attribute name ="internal_account_type_id" type="xs:string" />
<xs:attribute name ="internal_id" type="xs:string" />
<xs:attribute name="cc_card_number_enc" type="xs:string" />
<xs:attribute name ="internal_card_holder_id" type="xs:string" />
<xs:attribute name ="internal_business_guarantor_id" type="xs:string" />
<xs:attribute name ="internal_business_account_type_id" type="xs:string" />
</xs:schema>
Loading