Tezos · Schema

HistoricalBalance

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
level integer Height of the block at which the account balance was calculated
timestamp string Timestamp of the block at which the account balance was calculated
balance integer Historical balance
quote object Injected historical quote at the time of balance snapshot
View JSON Schema on GitHub

JSON Schema

historicalbalance.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "HistoricalBalance",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "level": {
      "type": "integer",
      "description": "Height of the block at which the account balance was calculated",
      "format": "int32"
    },
    "timestamp": {
      "type": "string",
      "description": "Timestamp of the block at which the account balance was calculated",
      "format": "date-time"
    },
    "balance": {
      "type": "integer",
      "description": "Historical balance",
      "format": "int64"
    },
    "quote": {
      "description": "Injected historical quote at the time of balance snapshot",
      "nullable": true,
      "oneOf": [
        {
          "$ref": "#/components/schemas/QuoteShort"
        }
      ]
    }
  }
}