Adyen · Schema

StockData

PaymentsFinancial ServicesFintech

Properties

Name Type Description
marketIdentifier string The four-digit [Market Identifier Code](https://en.wikipedia.org/wiki/Market_Identifier_Code) of the stock market where the organization's stocks are traded.
stockNumber string The 12-digit International Securities Identification Number (ISIN) of the company, without dashes (-).
tickerSymbol string The stock ticker symbol.
View JSON Schema on GitHub

JSON Schema

adyen-stockdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StockData",
  "title": "StockData",
  "properties": {
    "marketIdentifier": {
      "description": "The four-digit [Market Identifier Code](https://en.wikipedia.org/wiki/Market_Identifier_Code) of the stock market where the organization's stocks are traded.",
      "type": "string"
    },
    "stockNumber": {
      "description": "The 12-digit International Securities Identification Number (ISIN) of the company, without dashes (-).",
      "type": "string"
    },
    "tickerSymbol": {
      "description": "The stock ticker symbol.",
      "type": "string"
    }
  },
  "type": "object"
}