Blockchain.com · JSON Structure

Com Exchange Admin Event Payload Structure

ExchangeAdminEventPayload schema from Blockchain.com WebSocket APIs

Type: object Properties: 5 Required: 3
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

ExchangeAdminEventPayload is a JSON Structure definition published by Blockchain.com, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

seqnum event channel symbol text

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-structure/com-exchange-admin-event-payload-structure.json",
  "name": "ExchangeAdminEventPayload",
  "description": "ExchangeAdminEventPayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "seqnum": {
      "type": "int32"
    },
    "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"
  ]
}