Skip to main content
Version: Next

InstrumentList

A collection of instruments. Use this type for use cases that require not just a single instrument, but multiple (e.g. to populate a watchlist). However, when holding information for each instrument is required, it is recommended to use the Portfolio type.

The instrument list schema does not explicitly include identifiers in the id section, as there is not a common standard for such identifiers. Applications can, however, populate this part of the contract with custom identifiers if so desired.

Schema

https://fdc3.finos.org/schemas/next/context/instrumentList.schema.json (github)

Type

fdc3.instrumentList

Properties

id

type: object

Additional Properties

type: string

One or more identifiers that refer to the instrument list in an OMS, EMS or related system. Specific key names for systems are expected to be standardized in future.

name

type: string

An optional human-readable summary of the instrument list

instruments (required)

type: array

Items

An array of instrument contexts that forms the list.

Example

{
"type": "fdc3.instrumentList",
"instruments": [
{
"type": "fdc3.instrument",
"id": {
"ticker": "AAPL"
},
"market": {
"MIC": "XNAS"
}
},
{
"type": "fdc3.instrument",
"id": {
"ISIN": "US5949181045"
}
}
]
}