• Stars
    star
    176
  • Rank 209,246 (Top 5 %)
  • Language
    HTML
  • License
    Other
  • Created about 6 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An open standard for the financial desktop.

FDC3 Logo

Latest Standard npm FINOS - Released GitHub Stack Overflow npm-build Slack CII Best Practices

FDC3 aims to provide an open standard for interoperability on the financial desktop. This includes standardized verbs to invoke actions between applications (called "intents"), a standardized data format, an OpenAPI app directory standard, and standardized API operations.

The standard currently consists of four specifications:

  1. API Specification
  2. Intents Specification
  3. Context Data Specification
  4. App Directory Specification

The specifications are informed by agreed business use cases, and implemented and used by leading financial industry participants.

See https://fdc3.finos.org for more information, including on compliance and the FDC3 charter, as well as a comprehensive API Reference. You can also take the free FDC3 Training for an introduction to FDC3's core concepts and usage.

Supported Platforms

As an open standard, FDC3 can be implemented on any platform and in any language.

All that is required is a "desktop agent" that supports the FDC3 standard, which is responsible for co-ordinating application interactions.

Web

For web applications to be FDC3-enabled, they need to run in the context of an agent that makes the FDC3 API available to the application. This desktop agent is also responsible for launching and co-ordinating applications. It could be a browser extension, web app, or full-fledged desktop container framework.

Example

// declare FDC3-compliant data
const instrument = {
    type: 'fdc3.instrument',
    id: {
        ticker: 'AAPL',
        ISIN: 'US0378331005',
        FIGI : 'BBG000B9XRY4'
    }
}

// invoke an action in another application, with the required data
const result = await fdc3.raiseIntent('ViewAnalysis', instrument)

// join the red channel and broadcast data to subscribers
await fdc3.joinChannel('red')
fdc3.broadcast(instrument)

// set up a listener for incoming data
const listener = fdc3.addContextListener('fdc3.contact', contact => { })

Installation

To access the APIs in your application, simply install the FDC3 npm package:

# npm
npm install @finos/fdc3

# yarn
yarn add @finos/fdc3

# pnpm
pnpm install @finos/fdc3

Note that the web application still needs to run in the context of an FDC3 desktop agent to work. For more details, please see the relevant documentation.

Usage

FDC3 can be accessed either via the global window object:

if (window.fdc3) {
  const channel = await window.fdc3.getOrCreateChannel('myChannel')
  channel.broadcast({ ... })
}

Or by importing relevant FDC3 functions with ES6 module syntax:

import { getOrCreateChannel } from '@finos/fdc3'

// will throw if window.fdc3 is not available
const channel = await getOrCreateChannel('myChannel')
channel.broadcast({ ... })

Native

The FDC3 standard does not define wire formats for communication. Hence, for native applications to be FDC3-enabled, they need to make use of a library (e.g. a DLL in .Net or Jar file in Java) that provides them with an implementation of the FDC3 API. FDC3-enabled native applications are therefore specific to particular desktop container frameworks (or other suitable environments) that provide the necessary libraries.

Despite this limitation, implementing support for FDC3 in a native application can allow it to interact with a wide variety of FDC3-enabled web applications.

Roadmap

  • Publish versioned NPM packages to ease adoption and implementation of FDC3 APIs.
  • Release version 1.2 of the standard with expanded API capabilities.
  • Establish a process to accelerate community-contributed context data definitions.
  • Improve the app directory specification, with support for container-agnostic app manifests, and more type metadata around channels and launching apps.
  • Release version 2.0 of the standard with API support for app instances, two-way data flow and requesting channels with context.
  • Introduce a hosted app directory example with sample application definitions.
  • Continue building out business use cases to inform future versions of the FDC3 Standard.

Using the standard? Let us know!

If you are an existing individual or corporate user of the FDC3 standard, we would love to hear from you: just email [email protected] with details about how you are using the standard.

If you'd like to be listed as a user of the standard, you can directly send a pull request to update the FDC3 website: upload your logo to this folder and update this file with your company's details. If listing your logo publicly requires legal evaluation, you can reach out privately to FDC3 Maintainers.

Getting Involved

Interact with the FDC3 community

GitHub

FDC3 activity primarily happens in this FDC3 GitHub repository. Watch the repository in order to be notified of new Pull Requests and issues.

Slack

The fastest and more interactive way to connect and ask questions to the FDC3 community is to join the #fdc3 channel on the FINOS slack.

Email

If you'd like to receive official updates, and/or you don't have access to Slack, please send an email to [email protected]. You can join the list by sending an email to [email protected].

Meetings

Finally, another great way to interact with the community, is to attend the monthly FDC3 Standard Working Group Meeting and/or the quarterly FDC3 General Meeting: email [email protected] to be added to the meeting invite directly, or find the meeting in the FINOS Community Calendar.

Need help?

Email [email protected] if you need help getting started in the FDC3 Community. If you encounter technical difficulties accessing repositories, joining Slack, mailing lists or meetings, please email [email protected].

Why should you get involved in FDC3?

If you or your firm intends to make use of the FDC3 Standard (by implementing a Desktop Agent or App Directory, by adding support to apps to interoperate with others via FDC3, or even by using apps, Desktop Agents or App Directories written by others) then participating in the governance, maintenance and onward development of the FDC3 Standard will help to protect and strengthen the ecosystem developing around FDC3. Doing so will also empower you to help guide the Standard in directions that are relevant to your use or that of your firm. If you or your firm are new to contributing to open source projects, please see the variety of resources available from FINOS, (such as the Open Source readiness project), Linux Foundation (Participating in Open Source communities) and others (e.g. opensource.guide).

What it means to be an FDC3 Participant, Editor or Maintainer

According to Governance document document:

  • "Participants" are those that have made contributions to the FDC3 Standard Working Group (subject to the FINOS IP Policy). The FDC3 Standard Working Group has the specific purpose of defining and releasing subsequent updates to the Standard. In practice, that means people that attend and contribute to meetings, raise issues, pull requests (to submit patches to the Standard) and reviews.

  • "Editors" are responsible for ensuring that the contents of the Standard's documents accurately reflect the decisions that have been made by the group, and that the specification adheres to formatting and content guidelines.

  • "Maintainers" are responsible for organizing activities around developing, maintaining, and updating the specification(s) developed by the Working Group. Maintainers are also responsible for determining consensus and coordinating appeals.

Whilst all 3 roles require some amount of attention, being an Editor or Maintainer will obviously require a greater and more regular investment of time from anyone taking on that role.

How do you become a Participant, Editor or Maintainer?

Becoming an FDC3 participant is as easy as attending meetings and/or raising issues for changes you'd like see in the Standard, commenting on issues others have raised or even asking questions (which can often result in the clarification of the Standard's documentation to help others with the same questions in future).

If you are going to use, implement or benefit from the FDC3 Standard, we also recommend that you sign up as a voting participant. To do so, please use this link: [email protected] to send a templated email email to join the enrolled voting participants group. Please note that standard participants are bound to the provisions in the FINOS IP Policy as described in the FINOS Standards governance document.

Upon enrollment as an FDC3 voting participant, you will be invited to join the FINOS GitHub organization and the fdc3-participants GitHub team.

Become an FDC3 Editor or Maintainer

Once you are an enrolled participant in FDC3, you can apply to become an editor or maintainer by contacting the existing FDC3 maintainers at [email protected] and then seeking the approval of the FDC3 Standards Working Group. Generally, the maintainers will look for both a history of contribution to FDC3 and a commitment to investing sufficient time in the role from any prospective candidates before proposing them to the Standards Working Group for approval. If you are new to FDC3, but willing to make the investment of time, the maintainers can work with you to build up a history of contribution.

Mailing list

You can contact the FDC3 maintainers by sending an email to [email protected].

FDC3 Archive

An archive of FDC3 documentation and meeting notes is available at https://finosfoundation.atlassian.net/wiki/spaces/FDC3/overview. The mailing list archive for [email protected] is available at https://groups.google.com/a/finos.org/g/fdc3

Contributing

If you'd like to contribute to the FDC3 standard, or have noticed something that needs correcting, the first step is to raise an issue on the FDC3 Github Repo and describe what you'd like to see changed. There are a number of issue templates that you can choose from here.

Issues that change the Standard usually need discussion. You can post comments directly on the issue or can ask for it to be added to a Standards Working Group meeting agenda by emailing [email protected], sending a message to the #fdc3 channel on the FINOS slack or tag the FDC3 maintainers (@finos/fdc3-maintainers) in your issue.

To implement changes in the FDC3 repository resolving an issue please read our contribution guidelines.

Contributions merged into the master branch of the FDC3 repository will form part of the next pre-draft of the FDC3 Standard (as defined by the FDC3 Governance document), which must be approved by the Standard Working Group voting participants before it is accepted as a draft and subsequently released as the next version of the Standard.

NOTE: Commits and pull requests to FINOS repositories will only be accepted from those contributors with an active, executed Individual Contributor License Agreement (ICLA) with FINOS, OR who are covered under an existing and active Corporate Contribution License Agreement (CCLA) executed with FINOS. Commits from individuals not covered under an ICLA or CCLA will be flagged and blocked by the Linux Foundation EasyCLA tool. Please note that some CCLAs require individuals/employees to be explicitly named on the CCLA.

Need an ICLA? Unsure if you are covered under an existing CCLA? Email [email protected].

License

Copyright 2017-2022 FINOS and FDC3 Participants

Version 1.0 of the FDC3 specification is licensed under the FDC3 1.0 Final Specification License.

Subsequent FDC3 specifications and draft specifications are subject to the FINOS IP Policy, which authorizes implementation of FDC3 specifications without charge, on a RAND basis, subject to the terms of the policy. For details of the IP commitments made by contributors to FDC3, please refer to the policy.

Reference implementations and other software contained in FDC3 repositories is licensed under the Apache License, Version 2.0 unless otherwise noted. SPDX-License-Identifier: Apache-2.0.

Intellectual Property Claims

Users of the FDC3 standard are requested to submit, with their comments, notification of any relevant patent claims or other intellectual property rights of which they may be aware that might be infringed by any implementation of the standard set forth in this document, and to provide supporting documentation.

THIS STANDARD IS BEING OFFERED WITHOUT ANY WARRANTY WHATSOEVER, AND IN PARTICULAR, ANY WARRANTY OF NON-INFRINGEMENT IS EXPRESSLY DISCLAIMED. ANY USE OF THIS STANDARD SHALL BE MADE ENTIRELY AT THE IMPLEMENTER'S OWN RISK, AND NEITHER THE FOUNDATION, NOR ANY OF ITS MEMBERS OR SUBMITTERS, SHALL HAVE ANY LIABILITY WHATSOEVER TO ANY IMPLEMENTER OR THIRD PARTY FOR ANY DAMAGES OF ANY NATURE WHATSOEVER, DIRECTLY OR INDIRECTLY, ARISING FROM THE USE OF THIS STANDARD.

More Repositories

1

perspective

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
C++
7,372
star
2

legend

The Legend project
Shell
797
star
3

jupyterlab_templates

Support for jupyter notebook templates in jupyterlab
Python
367
star
4

regular-table

A regular <table> library, for async and virtual data models.
JavaScript
318
star
5

plexus-interop

Plexus Interop open source project hosted by the Fintech Open Source Foundation
C#
253
star
6

waltz

Enterprise Information Service
Java
164
star
7

datahelix

The DataHelix generator allows you to quickly create data, based on a JSON profile that defines fields and the relationships between them, for the purpose of testing and validation
Java
139
star
8

OpenMAMA

OpenMAMA is an open source project that provides a high performance middleware agnostic messaging API that interfaces with a variety of proprietary and open source message oriented middleware systems.
C++
135
star
9

morphir

A universal language for business and technology
JavaScript
131
star
10

OSLC-handbook

A data store and handbook of practical information about complying with the most common open source licenses.
HTML
124
star
11

compliant-financial-infrastructure

Compliant Financial Infrastructure accelerates the development, deployment and adoption of services provided for AWS, Azure and Google in a way that meets existing regulatory and internal security controls.
122
star
12

TimeBase-CE

High performance time series database
Java
107
star
13

ipyregulartable

High performance, editable, stylable datagrids in jupyter and jupyterlab
JavaScript
99
star
14

common-domain-model

The CDM is a model for financial products, trades in those products, and the lifecycle events of those trades. It is an open source standard that aligns data, systems and processes and is available as code in multiple languages for easy implementation across technologies.
Java
93
star
15

datahub

DataHub - Synthetic data library
Python
80
star
16

legend-studio

Legend Studio
TypeScript
78
star
17

SymphonyElectron

A desktop client for the Symphony Collaboration Platform built using Electron
TypeScript
77
star
18

legend-engine

Legend Engine module
Java
69
star
19

git-proxy

Deploy custom push protections and policies on top of Git
JavaScript
67
star
20

legend-pure

Legend Pure module
Java
63
star
21

community

FINOS Community, Project and SIG wide collaboration space
JavaScript
58
star
22

spring-bot

Spring Boot + Java Integration for Symphony/Teams Chat Platform Bots and Apps
Java
54
star
23

SymphonyMediaBridge

The Symphony Media Bridge (SMB) is a media server application that handles audio, video and screen sharing media streams in an RTC conference system.
C++
51
star
24

CatchIT

Source code secret scanner
Python
50
star
25

devops-automation

Provide a continuous compliance and assurance approach to DevOps that mutually benefits banks, auditors and regulators whilst accelerating DevOps adoption in engineering and fintech IT departments.
JavaScript
50
star
26

open-developer-platform

Delivering open source software development best practices while enforcing security and legal compliance for the financial services industry .
Shell
49
star
27

cla-bot

cla-bot is a GitHub bot for automation of Contributor Licence Agreements (CLAs).
JavaScript
45
star
28

kdb

kdb+ Working Group from FINOS Data Technologies program
q
41
star
29

morphir-elm

Tools to work with the Morphir IR in Elm.
Elm
40
star
30

financial-objects

FINOS Financial Objects Program Documentation
JavaScript
38
star
31

legend-sdlc

Legend SDLC module
Java
34
star
32

tracdap

A next-generation data and analytics platform for use in highly regulated environments
Java
33
star
33

symphony-bdk-python

Symphony Python Bot Development Kit (BDK)
Python
31
star
34

greenkey-asrtoolkit

A collection of useful tools for handling speech recognition data
Python
30
star
35

FDC3-Sail

Open implementation of the FDC3 standard using Electron and an integrated App Directory.
TypeScript
29
star
36

open-regtech-sig

The FINOS Regulation Innovation Special Interest Group (SIG) is a community of people interested in creating open source solutions for regulatory and compliance issues in financial services.
28
star
37

open-source-readiness

Accelerate financial services firms’ journeys toward open source readiness, by advancing the readiness of participants’ firms and informing guidance for the broader industry in the form of white papers, presentations, and blog posts.
JavaScript
28
star
38

vuu

Vuu - an open source view server and html 5 based UI system
TypeScript
27
star
39

morphir-examples

Elm
26
star
40

traderX

TypeScript
26
star
41

software-project-blueprint

Project blueprint for Fintech Open Source Foundation hosted projects.
JavaScript
26
star
42

InnerSource

The FINOS InnerSource SIG is a community of people implementing, or interested in implementing, InnerSource within their financial services organization.
JavaScript
26
star
43

finos-landscape

FINOS Project Landscape
Shell
25
star
44

voice-metadata-standard

This is a project from FINOS Voice program to define a standard for call metadata.
25
star
45

JCurl

JSON-aware curl (1) in Java
Java
24
star
46

secref-data

Security Reference Data project
JavaScript
24
star
47

fdc3-desktop-agent

Chrome Extension implementation of an FDC3 Desktop Agent
TypeScript
22
star
48

zenith

Create a space where expertise can be identified and implemented to help the fintech ecosystem understand and adopt new technologies through the exploration and creation of common understanding.
HTML
22
star
49

morphir-jvm

Tools to work with the Morphir IR on/using the JVM.
Scala
21
star
50

symphony-bdk-java

The Symphony BDK (Bot Developer Kit) for Java helps you to create production-grade Chat Bots and Extension Applications on top of the Symphony REST APIs.
Java
21
star
51

legend-shared

Legend Shared module
Java
21
star
52

a11y-theme-builder

DesignOps toolchain theme builder for accessibility inclusion using Atomic Design.
TypeScript
21
star
53

glue

Glue is an enterprise data model for the buy side, tailored for Wealth and Asset Managers and covering key entities such as Party, Business Relationship, Investment Strategy, Instruments, Portfolios and more.
JavaScript
21
star
54

exodus

Migration tools for Tabular Data to Oracle JSON/Tabular Data
Scheme
19
star
55

common-cloud-controls

FINOS Common Cloud Controls
Gherkin
17
star
56

symphony-api-spec

Swagger definitions for Symphony LLC public REST API
Shell
16
star
57

greenkey-discovery-sdk

Speed up business workflows through custom 'voice skills' and text (NLP) interpreters
Python
14
star
58

reference-foss-policy

Reference FOSS Policy for Financial Services Institutions
13
star
59

branding

FINOS (Fintech Open Source Foundation) official branding resources
12
star
60

morphir-dotnet

F#
12
star
61

morphir-scala

Scala
11
star
62

FDC3-conformance-framework

A framework for testing whether desktop containers implement the FDC3 standard
TypeScript
11
star
63

metadata-tool

A command line tool for performing various tasks with Fintech Open Source Foundation (FINOS) metadata.
Clojure
11
star
64

secure-electron-adapter

JavaScript
11
star
65

messageml-utils

MessageML is a markup language used by the Symphony Agent API for representing messages, including formatting (bold, italic, numbered and unnumbered lists etc.) and entity data representing structured objects.
Java
11
star
66

generator-symphony

Yeoman based generator for Symphony Bots and Applications
JavaScript
10
star
67

finos.github.io

The source for the FINOS Project catalog
JavaScript
10
star
68

open-reg-tech-us-lcr

Open Reg Tech: US LCR
Elm
10
star
69

DEI-SIG

JavaScript
10
star
70

bot-github-chatops

A Symphony bot that uses ChatOps techniques to allow a firm employee to interact in a compliant manner with GitHub issues and PRs
Clojure
10
star
71

fdc3-dotnet

.NET Standard FDC3 declarations to implement concrete FDC3 compatible .NET desktop agents
C#
9
star
72

legend-depot

Legend Depot component
Java
9
star
73

finos-parent-pom

A Maven Parent POM that provide common build and release features using the Symphony Software Foundation Infrastructure
9
star
74

code-scanning

How to protect FINOS hosted projects from security threats and license compliance issues
Python
8
star
75

legend-community-delta

Combining best of open data standards with open source technologies
Jupyter Notebook
8
star
76

openfin-python-adapter

Hadouken python language adapter.
Python
7
star
77

osr-checklists

Checklists for key components and processes of open source programs
6
star
78

backplane

FDC3 Desktop Agent Bridge
C#
5
star
79

morphir-service

HTML
5
star
80

SwiftSearch

SwiftSearch is a plugin for SymphonyElectron
TypeScript
5
star
81

ScreenSnippet

Screen snippet utility for Windows.
C#
4
star
82

pylegend

pylegend
Python
4
star
83

certificate-toolbox

A collection of command-line tools to generate PKI Signing Certificates and X.509 Identity Certificates
Shell
4
star
84

technical-oversight-committee

πŸ“‹ FINOS Technical Oversight Committee
4
star
85

cdm-object-builder

Object Builder
TypeScript
4
star
86

OpenMAMA-testdata

OpenMAMA Test Data
Batchfile
3
star
87

FDC3-Archive

3
star
88

curref-data

3
star
89

greenkey-intercom-sdk

Voice-enable your front-end apps with instant intercoms
JavaScript
3
star
90

calendar

FINOS Calendar
JavaScript
3
star
91

legend-engine-ide-lsp

Java
3
star
92

sea-quick-start

Quick start demo project for the Secure Electron Adapter
JavaScript
3
star
93

legend-juju-bundle

Juju bundle for all the FINOS Legend Charmed K8s Operators
Python
2
star
94

symphony-object

Structured Object Schemas
2
star
95

clabot-config

Organization-wide configuration for cla-bot
2
star
96

finos-deg

Repository for FINOS Decentralized Growth Program Documentation Site
JavaScript
2
star
97

morphir-bosque

2
star
98

symphony-wdk

Symphony Workflow Developer Kit (WDK), a bot capable of running workflows
Java
2
star
99

a11y-theme-builder-sdk

Collection of atomic design services for computing WCAG compliant code artifacts.
TypeScript
2
star
100

legend-integration-morphir

HTML
2
star