{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-structure/com-exchange-ticker-snapshot-payload-structure.json", "name": "ExchangeTickerSnapshotPayload", "description": "ExchangeTickerSnapshotPayload schema from Blockchain.com WebSocket APIs", "type": "object", "properties": { "seqnum": { "type": "int32" }, "event": { "type": "string", "const": "snapshot" }, "channel": { "type": "string", "const": "ticker" }, "symbol": { "type": "string" }, "price_24h": { "type": "double" }, "volume_24h": { "type": "double" }, "last_trade_price": { "type": "double" } }, "required": [ "seqnum", "event", "channel", "symbol" ] }