| id | Product |
|---|---|
| sidebar_label | Product |
| title | Product |
| hide_title | true |
@experimental context type representing a tradable product. To be used with OMS and EMS systems.\n\nThis type is currently only loosely defined as an extensible context object, with an optional instrument field.
Notes:
- The Product 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.
fdc3.product
https://fdc3.finos.org/schemas/next/product.schema.json
| Property | Type | Required | Example Value |
|---|---|---|---|
type |
string | Yes | 'fdc3.product' |
id |
object | Yes | One or more identifiers that refer to the product. Specific key names for systems are expected to be standardized in future. |
name |
string | No | A human-readable summary of the product. |
instrument |
Product[] | No | A financial instrument that relates to the definition of this product. |
const product = {
"type": "fdc3.product",
"instrument": {
"type": "fdc3.instrument",
"id": {
"ticker": "MSFT"
}
}
};Other Types