Coinbase · Schema

User

A user with portfolio access

BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3

Properties

Name Type Description
id string User identifier
name string User name
email string User email address
role string User role in the portfolio
View JSON Schema on GitHub

JSON Schema

coinbase-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "description": "A user with portfolio access",
  "properties": {
    "id": {
      "type": "string",
      "description": "User identifier"
    },
    "name": {
      "type": "string",
      "description": "User name"
    },
    "email": {
      "type": "string",
      "description": "User email address"
    },
    "role": {
      "type": "string",
      "description": "User role in the portfolio"
    }
  }
}