{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/charts-stats-ticker-entry-schema.json", "title": "TickerEntry", "description": "Current BTC pricing in a single fiat currency.", "type": "object", "properties": { "15m": { "type": "number", "description": "15-minute delayed market price.", "example": 1.0 }, "last": { "type": "number", "description": "Most recent market price.", "example": 1.0 }, "buy": { "type": "number", "description": "Current buy price.", "example": 1.0 }, "sell": { "type": "number", "description": "Current sell price.", "example": 1.0 }, "symbol": { "type": "string", "description": "Currency symbol (e.g. `$`, `\u20ac`, `\u00a3`).", "example": "BTC-USD" } } }