Coinbase · Schema

Currency

A currency supported on the exchange

BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3

Properties

Name Type Description
id string Currency identifier
name string Full name of the currency
min_size string Minimum size for this currency
status string Currency status
details object Additional currency details
View JSON Schema on GitHub

JSON Schema

coinbase-currency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Currency",
  "title": "Currency",
  "type": "object",
  "description": "A currency supported on the exchange",
  "properties": {
    "id": {
      "type": "string",
      "description": "Currency identifier"
    },
    "name": {
      "type": "string",
      "description": "Full name of the currency"
    },
    "min_size": {
      "type": "string",
      "description": "Minimum size for this currency"
    },
    "status": {
      "type": "string",
      "description": "Currency status"
    },
    "details": {
      "type": "object",
      "description": "Additional currency details"
    }
  }
}