Tezos · Schema

TokenBalanceShort

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
account object Owner account. Click on the field to expand more details.
token object Token info. Click on the field to expand more details.
balance string Balance (raw value, not divided by `decimals`). **[sortable]**
View JSON Schema on GitHub

JSON Schema

tokenbalanceshort.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TokenBalanceShort",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "account": {
      "description": "Owner account.  \nClick on the field to expand more details.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Alias"
        }
      ]
    },
    "token": {
      "description": "Token info.  \nClick on the field to expand more details.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/TokenInfoShort"
        }
      ]
    },
    "balance": {
      "type": "string",
      "description": "Balance (raw value, not divided by `decimals`).  \n**[sortable]**"
    }
  }
}