Coinbase · Schema
Profile
A trading profile
BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Profile identifier |
| user_id | string | User identifier |
| name | string | Profile name |
| active | boolean | Whether the profile is active |
| is_default | boolean | Whether this is the default profile |
| created_at | string | When the profile was created |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Profile",
"title": "Profile",
"type": "object",
"description": "A trading profile",
"properties": {
"id": {
"type": "string",
"description": "Profile identifier"
},
"user_id": {
"type": "string",
"description": "User identifier"
},
"name": {
"type": "string",
"description": "Profile name"
},
"active": {
"type": "boolean",
"description": "Whether the profile is active"
},
"is_default": {
"type": "boolean",
"description": "Whether this is the default profile"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the profile was created"
}
}
}