Bloomberg L.P. · Schema
FIGI Record
A single Financial Instrument Global Identifier (FIGI) record as returned by the OpenFIGI /v3/mapping, /v3/search, and /v3/filter endpoints.
Financial ServicesMarket DataNewsReference DataSymbologyTerminal
Properties
| Name | Type | Description |
|---|---|---|
| figi | string | The 12-character alphanumeric Financial Instrument Global Identifier. |
| name | string | Long name of the instrument. |
| ticker | string | Exchange ticker symbol. |
| exchCode | string | Bloomberg exchange composite code (e.g. US, LN, GR). |
| compositeFIGI | stringnull | Country-level composite FIGI for this instrument. |
| uniqueID | stringnull | Bloomberg unique ID (Bloomberg internal). |
| securityType | string | Bloomberg security type (e.g. Common Stock, Future, Option). |
| marketSector | string | Bloomberg market sector. |
| shareClassFIGI | stringnull | Share-class FIGI that groups composite FIGIs across markets. |
| uniqueIDFutOpt | stringnull | Bloomberg unique ID for futures and options. |
| securityType2 | string | Secondary, more specific security classification. |
| securityDescription | string | Short security description as Bloomberg prints it. |
| metadata | stringnull | Free-form metadata, when provided. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/bloomberg-lp/main/json-schema/openfigi-figi-record-schema.json",
"title": "FIGI Record",
"description": "A single Financial Instrument Global Identifier (FIGI) record as returned by the OpenFIGI /v3/mapping, /v3/search, and /v3/filter endpoints.",
"type": "object",
"required": ["figi"],
"properties": {
"figi": {
"type": "string",
"description": "The 12-character alphanumeric Financial Instrument Global Identifier.",
"pattern": "^BBG[A-Z0-9]{9}$",
"example": "BBG000BLNNH6"
},
"name": {
"type": "string",
"description": "Long name of the instrument."
},
"ticker": {
"type": "string",
"description": "Exchange ticker symbol."
},
"exchCode": {
"type": "string",
"description": "Bloomberg exchange composite code (e.g. US, LN, GR)."
},
"compositeFIGI": {
"type": ["string", "null"],
"description": "Country-level composite FIGI for this instrument."
},
"uniqueID": {
"type": ["string", "null"],
"description": "Bloomberg unique ID (Bloomberg internal).",
"deprecated": true
},
"securityType": {
"type": "string",
"description": "Bloomberg security type (e.g. Common Stock, Future, Option)."
},
"marketSector": {
"type": "string",
"description": "Bloomberg market sector.",
"enum": ["Comdty", "Corp", "Curncy", "Equity", "Govt", "Index", "M-Mkt", "Muni", "Pfd"]
},
"shareClassFIGI": {
"type": ["string", "null"],
"description": "Share-class FIGI that groups composite FIGIs across markets."
},
"uniqueIDFutOpt": {
"type": ["string", "null"],
"description": "Bloomberg unique ID for futures and options."
},
"securityType2": {
"type": "string",
"description": "Secondary, more specific security classification."
},
"securityDescription": {
"type": "string",
"description": "Short security description as Bloomberg prints it."
},
"metadata": {
"type": ["string", "null"],
"description": "Free-form metadata, when provided."
}
},
"additionalProperties": false
}