Skip to content

Instantly share code, notes, and snippets.

@johnfelipe
Created June 17, 2024 23:35
Show Gist options
  • Save johnfelipe/39fcba73c4e0d890baa8800b93023be3 to your computer and use it in GitHub Desktop.
Save johnfelipe/39fcba73c4e0d890baa8800b93023be3 to your computer and use it in GitHub Desktop.
MortgageBase/
├── .gitignore
├── CHANGELOG.md
├── Jenkinsfile
├── pom.xml
├── README.md
├── src/
│   ├── main/
│   │   ├── resources/
│   │   │   ├── config/
│   │   │   │   └── mortgageBase.conf
│   │   │   └── dataproc/
│   │   │       └── mortgageBase.json
│   │   └── scala/
│   │       └── com/
│   │           └── bbva/
│   │               └── datio/
│   │                   └── transcendenceingestion/
│   │                       ├── data/
│   │                       │   ├── MortgageElevenVariableNames.scala
│   │                       │   ├── MortgageFourteenVariableNames.scala
│   │                       │   ├── MortgageOneRVariableNames.scala
│   │                       │   ├── MortgageSixTeenVariableNames.scala
│   │                       │   ├── MortgageTwelveVariableNames.scala
│   │                       │   └── OriginationMortgageVariableNames.scala
│   │                       ├── MortgageBase.scala
│   │                       └── process/
│   │                           ├── InputMortgageProcess.scala
│   │                           └── MortgageBaseProcess.scala
│   └── test/
│       ├── resources/
│       │   ├── config/
│       │   │   └── mortgageBaseLocal.conf
│       │   ├── files/
│       │   │   ├── hdape001_info_basica_clte/
│       │   │   ├── hdaug500_hipcol11/
│       │   │   ├── hdaug500_hipcol12/
│       │   │   ├── hdaug500_hipcol14/
│       │   │   ├── hdaug500_hipcol16/
│       │   │   └── hdaug500_hipcol1r/
│       │   ├── output/
│       │   │   └── pl_originacion_hipoteca/
│       │   ├── schema/
│       │   │   └── plcctkorihipoteca.output.schema
│       │   └── TestFiles/
│       │       ├── mortgageJoinPeopleDataFrame/
│       │       ├── peopleSetHolderOneDataFrame/
│       │       └── peopleSetHolderTwoDataFrame/
│       └── scala/
│           └── com/
│               └── bbva/
│                   └── datio/
│                       └── transcendenceingestion/
│                           ├── MortgageBaseTest.scala
│                           ├── SupportUnitTest.scala
│                           └── TestConfig.scala
└── spark-warehouse/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment