Blockchain.com · Schema

ExchangeSymbolUpdatePayload

ExchangeSymbolUpdatePayload schema from Blockchain.com WebSocket APIs

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
seqnum integer
event string
channel string
symbol string
auction-price number
auction-size number
auction-time string Opening time in HHMM format when symbol is halted.
imbalance number
status string
View JSON Schema on GitHub

JSON Schema

com-exchange-symbol-update-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/com-exchange-symbol-update-payload-schema.json",
  "title": "ExchangeSymbolUpdatePayload",
  "description": "ExchangeSymbolUpdatePayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "seqnum": {
      "type": "integer"
    },
    "event": {
      "type": "string",
      "const": "updated"
    },
    "channel": {
      "type": "string",
      "const": "symbols"
    },
    "symbol": {
      "type": "string"
    },
    "auction-price": {
      "type": "number"
    },
    "auction-size": {
      "type": "number"
    },
    "auction-time": {
      "type": "string",
      "description": "Opening time in HHMM format when symbol is halted."
    },
    "imbalance": {
      "type": "number"
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "close",
        "closed",
        "suspend",
        "halt",
        "halt-freeze"
      ]
    }
  },
  "required": [
    "seqnum",
    "event",
    "channel",
    "symbol",
    "status"
  ]
}