FDC3 2.0 Compliance
CreditNexus is fully compliant with the FDC3 2.0 (Financial Desktop Connectivity and Collaboration Consortium) standard, enabling seamless interoperability with other financial desktop applications. Code Reference:client/src/context/FDC3Context.tsx (lines 234-492), client/src/hooks/useFDC3.ts, openfin/fdc3-intents.json
FDC3 Implementation
Context Broadcasting
CreditNexus broadcasts FDC3 contexts for seamless data sharing:client/src/context/FDC3Context.tsx, createStockPredictionContext, createPredictionMarketContext, createAgentResultContext
Intent Handling
CreditNexus listens for and raises FDC3 intents: Supported Intents (listensFor):ViewLoanAgreement,ApproveLoanAgreement– credit workflowsViewESGAnalytics,ExtractCreditAgreement,ViewPortfolio,GenerateLMATemplateShareWorkflowLink,ProcessWorkflowLinkViewInstrument– focus on instrument/symbol (fdc3.instrument, finos.creditnexus.instrument)ViewStockPrediction– open stock prediction for symbol (Chronos/technical)ViewPredictionMarket– focus Polymarket-style SFP marketViewAgentResult– open LangAlpha/DeepResearch/PeopleHub result
ViewChart (fdc3.timeRange), ViewInstrument, ViewStockPrediction, ViewPredictionMarket, ViewAgentResult
Code Reference: openfin/fdc3-intents.json, client/src/context/FDC3Context.tsx
App Channels
CreditNexus uses custom app channels for workflow and data flow:creditnexus.workflow– Workflow events and approvalscreditnexus.extraction– Document extractioncreditnexus.portfolio– Portfolio and ESGcreditnexus.trading– Instrument, stock prediction (Alpaca, Chronos)creditnexus.predictionMarket– Polymarket-style SFP / prediction markets
client/src/context/FDC3Context.tsx, openfin/fdc3-intents.json
Context Types
CreditNexus defines custom context types in thefinos.creditnexus.* namespace:
Credit and Loan
finos.creditnexus.agreement– Agreement (id.agreementId, borrower, facilities, parties; CDM-aligned)finos.creditnexus.loan– Loan/credit (id.DealID, id.LIN, loan: CDM-aligned)
Trading and Analytics
fdc3.instrument– Standard FDC3 instrument (id.ticker, id.RIC, etc.); maps to CDM Instrumentfinos.creditnexus.instrument– Instrument with optional signal (bullish/bearish/neutral)finos.creditnexus.stockPrediction– Chronos/technical result (symbol, timeframe, forecast, signal)finos.creditnexus.predictionMarket– Polymarket-style SFP (market_id, question, outcomes)finos.creditnexus.agentResult– LangAlpha/DeepResearch/PeopleHub (analysis_id, agent_type, symbols, recommendations)
CDM and FDC3 Alignment
- fdc3.instrument and finos.creditnexus.instrument align with FINOS CDM
Instrument(ticker, identifiers). - finos.creditnexus.loan and finos.creditnexus.agreement carry CDM-compliant structures.
- Trade/order events from
/api/trades/executeand/api/trades/ordersare CDM-aligned; FDC3 context is used for prefill and focus, not as the system of record.
client/src/context/FDC3Context.tsx, app/models/cdm.py
System Interoperability Flow
The platform components work as a “Chain of Command” using FDC3:- Extract: Document Parser broadcasts
finos.creditnexus.loan/finos.creditnexus.agreement - Trade: Trade Blotter receives loan context and pre-fills LMA trade ticket; Order Form and Stock Prediction prefill symbol from
fdc3.instrument,finos.creditnexus.stockPrediction,finos.creditnexus.agentResult - Analyze: GreenLens consumes loan/ESG; LangAlphaResultView broadcasts
finos.creditnexus.agentResultso Trading can focus on symbols - Predict: StockPredictionTab broadcasts
finos.creditnexus.stockPredictionon run; Trading and Order Form prefill from it - Polymarket: MarketDashboard broadcasts
finos.creditnexus.predictionMarketon selection and listens to focus a market - Verify: Verification Demo broadcasts
finos.cdm.landUse/finos.cdm.greenFinanceAssessmentand breach alerts - Surveil: Risk War Room listens for alerts and highlights assets
README.md, client/src/context/FDC3Context.tsx, client/src/components/trading/*, client/src/components/polymarket/MarketDashboard.tsx, client/src/components/agent-results/LangAlphaResultView.tsx
OpenFin Integration
CreditNexus integrates with OpenFin Runtime for FDC3 2.0 support: Configuration:openfin/app.json
- FDC3 2.0 API:
fdc3InteropApi: "2.0" - Runtime Version:
"stable"(automatic latest stable)
openfin/app.json (line 14), openfin/README.md
FDC3 App Directory
CreditNexus is registered in the FDC3 app directory at/api/fdc3/apps:
App Metadata:
- App ID:
creditnexus - Version:
1.0.0 - Categories:
Analytics,Credit,Lending,AI,Document Processing,Trading,Prediction Markets - Intents: ViewLoanAgreement, ViewInstrument, ViewStockPrediction, ViewPredictionMarket, ViewAgentResult, plus ExtractCreditAgreement, ViewPortfolio, ViewESGAnalytics, ShareWorkflowLink, ProcessWorkflowLink, ApproveLoanAgreement, GenerateLMATemplate
openfin/fdc3-intents.json, app/api/fdc3_routes.py
Compliance Checklist
- ✅ FDC3 2.0 API implementation
- ✅ Context broadcasting (loan, agreement, document, portfolio, workflow, approvalResult, esgData, generatedDocument, instrument, stockPrediction, predictionMarket, agentResult; fdc3.instrument; finos.cdm.landUse, finos.cdm.greenFinanceAssessment)
- ✅ Intent handling (listen and raise): ViewInstrument, ViewStockPrediction, ViewPredictionMarket, ViewAgentResult plus credit/workflow intents
- ✅ App channels: workflow, extraction, portfolio, trading, predictionMarket
- ✅ Custom context types in
finos.creditnexus.*andfinos.cdm.* - ✅ CDM alignment for instrument, loan/agreement, and trade/order events
- ✅ OpenFin integration
- ✅ FDC3 app directory at /api/fdc3/apps
Testing FDC3 Integration
Test Context Broadcasting
- Open Document Parser
- Extract a document
- Click “Broadcast to Desktop”
- Verify context is received by other FDC3 apps
Test Intent Handling
- Open Trade Blotter and verify it receives
ViewLoanAgreementand loan context - In Trading: run a stock prediction, then open Order Form and confirm symbol prefills from
finos.creditnexus.stockPrediction - In Polymarket: select a market, then in another window receive
finos.creditnexus.predictionMarketto focus it - From another FDC3 app, raise
ViewInstrumentwithfdc3.instrument(id.ticker) and confirm Order Form / Stock Prediction prefill
Additional Resources
Last Updated: 2026-01-14
Standard: FDC3 2.0
Code Reference:
client/src/context/FDC3Context.tsx, openfin/fdc3-intents.json, openfin/app.json