Blockchain.com · Schema

ExchangeAdminEventPayload

ExchangeAdminEventPayload schema from Blockchain.com WebSocket APIs

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
seqnum integer
event string
channel string
symbol string
text string Reason text (provided when `event: rejected`).
View JSON Schema on GitHub

JSON Schema

com-exchange-admin-event-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-admin-event-payload-schema.json",
  "title": "ExchangeAdminEventPayload",
  "description": "ExchangeAdminEventPayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "seqnum": {
      "type": "integer"
    },
    "event": {
      "type": "string",
      "enum": [
        "subscribed",
        "unsubscribed",
        "rejected"
      ]
    },
    "channel": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "text": {
      "type": "string",
      "description": "Reason text (provided when `event: rejected`)."
    }
  },
  "required": [
    "seqnum",
    "event",
    "channel"
  ]
}