Coinbase · Schema
PriceBook
Order book price levels
BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3
Properties
| Name | Type | Description |
|---|---|---|
| product_id | string | Product identifier |
| bids | array | Bid price levels |
| asks | array | Ask price levels |
| time | string | Timestamp of the price book |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PriceBook",
"title": "PriceBook",
"type": "object",
"description": "Order book price levels",
"properties": {
"product_id": {
"type": "string",
"description": "Product identifier"
},
"bids": {
"type": "array",
"description": "Bid price levels",
"items": {
"type": "object",
"properties": {
"price": {
"type": "string",
"description": "Bid price"
},
"size": {
"type": "string",
"description": "Size at this price level"
}
}
}
},
"asks": {
"type": "array",
"description": "Ask price levels",
"items": {
"type": "object",
"properties": {
"price": {
"type": "string",
"description": "Ask price"
},
"size": {
"type": "string",
"description": "Size at this price level"
}
}
}
},
"time": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the price book"
}
}
}