Coinbase · Schema

Wallet

A cryptocurrency wallet in a portfolio

BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3

Properties

Name Type Description
id string Wallet identifier
name string Wallet name
symbol string Currency symbol
type string Wallet type
created_at string When the wallet was created
View JSON Schema on GitHub

JSON Schema

coinbase-wallet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Wallet",
  "title": "Wallet",
  "type": "object",
  "description": "A cryptocurrency wallet in a portfolio",
  "properties": {
    "id": {
      "type": "string",
      "description": "Wallet identifier"
    },
    "name": {
      "type": "string",
      "description": "Wallet name"
    },
    "symbol": {
      "type": "string",
      "description": "Currency symbol"
    },
    "type": {
      "type": "string",
      "description": "Wallet type",
      "enum": [
        "VAULT",
        "TRADING",
        "OTHER"
      ]
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the wallet was created"
    }
  }
}