flowchart LR
s1[("core_banking.accounts<br/><i>source</i>")]
s2[("payments.transactions<br/><i>source</i>")]
s3[("crm.customer<br/><i>source</i>")]
j1{{"job: cdc_ingest<br/><i>hourly</i>"}}
j2{{"job: conform_party<br/><i>daily 02:00</i>"}}
j3{{"job: build_balances<br/><i>daily 03:15</i>"}}
j4{{"job: reg_extract<br/><i>monthly</i>"}}
r1[("raw.accounts")]
r2[("raw.transactions")]
c1[("clean.party")]
c2[("clean.balance_daily")]
o1[("report.capital_adequacy")]
o2["Dashboard:<br/>Treasury Daily"]
s1 --> j1 --> r1
s2 --> j1 --> r2
s3 --> j2
r1 --> j2 --> c1
r1 --> j3
r2 --> j3 --> c2
c1 --> j3
c2 --> j4 --> o1
c2 --> o2
Data View
Data Lineage Graph
Which dataset was derived from which, through what job — the artifact you produce when someone asks where a number came from.