{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cardano.blockfrost.io/schema/nutlink_address_ticker", "title": "Nutlink Address Ticker", "type": "array", "items": { "type": "object", "properties": { "tx_hash": { "type": "string", "description": "Hash of the transaction" }, "block_height": { "type": "integer", "description": "Block height of the record" }, "tx_index": { "type": "integer", "description": "Transaction index within the block" }, "payload": { "anyOf": [ { "type": "string" }, { "type": "object" }, { "type": "array", "items": {} }, { "type": "integer" }, { "type": "number" }, { "type": "boolean" } ], "additionalProperties": true, "description": "Content of the ticker" } }, "required": [ "tx_hash", "tx_index", "block_height", "payload" ] }, "example": [ { "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b", "block_height": 2657092, "tx_index": 8, "payload": [ { "source": "coinGecko", "value": "1.29" }, { "source": "cryptoCompare", "value": "1.283" } ] } ] }