Refinitiv Eikon · Schema

InstrumentList

Definition of an instrument list for extractions.

AnalyticsFinancial DataFinancial NewsMarket DataReal-Time DataTrading

Properties

Name Type Description
ListId string Unique identifier for the instrument list.
Name string Human-readable name for the list.
InstrumentIdentifiers array Array of instrument identifiers in the list.
View JSON Schema on GitHub

JSON Schema

refinitiv-eikon-instrumentlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InstrumentList",
  "title": "InstrumentList",
  "type": "object",
  "description": "Definition of an instrument list for extractions.",
  "properties": {
    "ListId": {
      "type": "string",
      "description": "Unique identifier for the instrument list."
    },
    "Name": {
      "type": "string",
      "description": "Human-readable name for the list."
    },
    "InstrumentIdentifiers": {
      "type": "array",
      "description": "Array of instrument identifiers in the list.",
      "items": {
        "type": "object",
        "properties": {
          "Identifier": {
            "type": "string",
            "description": "Instrument identifier value."
          },
          "IdentifierType": {
            "type": "string",
            "description": "Type of identifier."
          }
        }
      }
    }
  }
}