Coinbase · Schema
Transfer
A deposit or withdrawal transfer
BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Transfer identifier |
| type | string | Transfer type |
| created_at | string | When the transfer was created |
| completed_at | string | When the transfer completed |
| amount | string | Transfer amount |
| details | object | Additional transfer details |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Transfer",
"title": "Transfer",
"type": "object",
"description": "A deposit or withdrawal transfer",
"properties": {
"id": {
"type": "string",
"description": "Transfer identifier"
},
"type": {
"type": "string",
"description": "Transfer type",
"enum": [
"deposit",
"withdraw"
]
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the transfer was created"
},
"completed_at": {
"type": "string",
"format": "date-time",
"description": "When the transfer completed"
},
"amount": {
"type": "string",
"description": "Transfer amount"
},
"details": {
"type": "object",
"description": "Additional transfer details"
}
}
}