Blockchain.com · Schema

ExchangeAuthRejectedPayload

ExchangeAuthRejectedPayload schema from Blockchain.com WebSocket APIs

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
seqnum integer
event string
channel string
text string
View JSON Schema on GitHub

JSON Schema

com-exchange-auth-rejected-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-auth-rejected-payload-schema.json",
  "title": "ExchangeAuthRejectedPayload",
  "description": "ExchangeAuthRejectedPayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "seqnum": {
      "type": "integer"
    },
    "event": {
      "type": "string",
      "const": "rejected"
    },
    "channel": {
      "type": "string",
      "const": "auth"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "seqnum",
    "event",
    "channel",
    "text"
  ]
}