Blockchain.com · Schema

WhitelistCapability

Per-currency capability flags for the whitelist.

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
currency string
address boolean
xpub boolean
existingBeneficiaryOnly boolean
fiat boolean
View JSON Schema on GitHub

JSON Schema

exchange-whitelist-capability-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/exchange-whitelist-capability-schema.json",
  "title": "WhitelistCapability",
  "description": "Per-currency capability flags for the whitelist.",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "example": "BTC"
    },
    "address": {
      "type": "boolean",
      "example": true
    },
    "xpub": {
      "type": "boolean",
      "example": true
    },
    "existingBeneficiaryOnly": {
      "type": "boolean",
      "example": true
    },
    "fiat": {
      "type": "boolean",
      "example": true
    }
  }
}