-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegacy-manifest.example.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathlegacy-manifest.example.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"manifest_version": "1.0",
"source": {
"system": "legacy_los",
"dialect": "postgresql",
"connection_env": "LEGACY_DATABASE_URL",
"read_only": true
},
"entities": [
{
"entity": "loan_applications",
"source_table": "public.loan_master",
"target_table": "loan_applications",
"key_column": "loan_id",
"incremental_column": "updated_at",
"batch_size": 1000,
"field_map": {
"id": "loan_id",
"borrower_name": "applicant_name",
"product": "product_code",
"amount_inr": "sanction_amount",
"stage": "loan_status",
"legacy_id": "loan_id"
},
"required_source_columns": [
"loan_id",
"applicant_name",
"product_code",
"sanction_amount",
"loan_status",
"updated_at"
]
}
],
"reconciliation": [
{
"entity": "loan_applications",
"amount_source_field": "sanction_amount",
"amount_target_field": "amount_inr",
"tolerance": 0
}
]
}