{ "$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 } } }