Coinbase · Schema

PaymentCurrency

A fiat currency available for payments

BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3

Properties

Name Type Description
id string Currency identifier
name string Currency name
symbol string Currency symbol
min_amount string Minimum transaction amount
max_amount string Maximum transaction amount
View JSON Schema on GitHub

JSON Schema

coinbase-paymentcurrency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentCurrency",
  "title": "PaymentCurrency",
  "type": "object",
  "description": "A fiat currency available for payments",
  "properties": {
    "id": {
      "type": "string",
      "description": "Currency identifier"
    },
    "name": {
      "type": "string",
      "description": "Currency name"
    },
    "symbol": {
      "type": "string",
      "description": "Currency symbol"
    },
    "min_amount": {
      "type": "string",
      "description": "Minimum transaction amount"
    },
    "max_amount": {
      "type": "string",
      "description": "Maximum transaction amount"
    }
  }
}