mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-17 15:20:36 +00:00
18 lines
329 B
Text
18 lines
329 B
Text
namespace ResearchStack.Finance;
|
|
|
|
table FinancialClaimPacket {
|
|
id:string;
|
|
claimant:string;
|
|
counterparty:string;
|
|
principal:string;
|
|
currency:string;
|
|
rate:string;
|
|
maturity:string;
|
|
collateral:string;
|
|
jurisdiction:string;
|
|
risk:string;
|
|
settlement_path:string;
|
|
receipt:string;
|
|
}
|
|
|
|
root_type FinancialClaimPacket;
|