Skip to main content
Version: 2.1

Instrument

A financial instrument from any asset class.

Any combination of instrument identifiers can be used together to resolve ambiguity, or for a better match.

Notes:

  • Not all applications will use the same instrument identifiers, which is why FDC3 allows for multiple to be specified. In general, the more identifiers an application can provide, the easier it will be to achieve interoperability.

  • The market map can be used to further specify the instrument and help achieve interoperability between disparate data sources. This is especially useful when using an id field that is not globally unique.

  • It is valid to include extra properties and metadata as part of the instrument payload, but the minimum requirement is for at least one instrument identifier to be provided.

  • Try to only use instrument identifiers as intended. E.g. the ticker property is meant for tickers as used by an exchange. If the identifier you want to share is not a ticker or one of the other standardized fields, define a property that makes it clear what value represents. Doing so will make interpretation easier for the developers of target applications.

Type

fdc3.instrument

Schema

https://fdc3.finos.org/schemas/2.1/context/instrument.schema.json

Details

PropertyTypeRequiredExample ValueMore Info
typestringYes"fdc3.instrument"
namestringNo"Microsoft"
id.tickerstringNo"MSFT"
id.BBGstringNo"MSFT:US"https://www.bloomberg.com/
id.CUSIPstringNo"594918104"https://www.cusip.com/
id.FDS_IDstringNo"P8R3C2-R"https://www.factset.com/
id.FIGIstringNo"BBG000BPH459"https://www.openfigi.com/
id.ISINstringNo"US5949181045"https://www.isin.org/
id.PERMIDstringNo"4295907168"https://permid.org/
id.RICstringNo"MSFT.OQ"https://www.refinitiv.com/
id.SEDOLstringNo"2588173"https://www.lseg.com/sedol
market.MICstringNo"XNAS"https://en.wikipedia.org/wiki/Market_Identifier_Code
market.namestringNo"NASDAQ - All Markets"
market.COUNTRY_ISOALPHA2stringNo"US"
market.BBGstringNo"US"https://www.bloomberg.com/

Example

const instrument = {
type: "fdc3.instrument",
name: "Microsoft",
id: {
ticker: "MSFT",
RIC: "MSFT.OQ",
ISIN: "US5949181045"
},
market: {
MIC: "XNAS"
}
}

fdc3.joinUserChannel('Channel 1')
fdc3.broadcast(instrument)

See Also

Other Types

Intents

FINOS Financial Objects