Upvest · Schema

Exchange

A securities exchange where instruments are traded.

Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

Properties

Name Type Description
id string The exchange identifier.
name string The exchange name.
mic string The Market Identifier Code (ISO 10383).
View JSON Schema on GitHub

JSON Schema

investment-api-exchange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-schema/investment-api-exchange-schema.json",
  "title": "Exchange",
  "description": "A securities exchange where instruments are traded.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The exchange identifier.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "name": {
      "type": "string",
      "description": "The exchange name.",
      "example": "Example Name"
    },
    "mic": {
      "type": "string",
      "description": "The Market Identifier Code (ISO 10383).",
      "example": "example-value"
    }
  }
}