Tezos · Schema

TicketBalanceShort

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
id integer Internal TzKT id. **[sortable]**
ticket object Ticket info. Click on the field to expand more details.
account object Owner account. Click on the field to expand more details.
balance string Balance.
View JSON Schema on GitHub

JSON Schema

ticketbalanceshort.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TicketBalanceShort",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "integer",
      "description": "Internal TzKT id.  \n**[sortable]**",
      "format": "int64"
    },
    "ticket": {
      "description": "Ticket info.  \nClick on the field to expand more details.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/TicketInfoShort"
        }
      ]
    },
    "account": {
      "description": "Owner account.  \nClick on the field to expand more details.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Alias"
        }
      ]
    },
    "balance": {
      "type": "string",
      "description": "Balance.  "
    }
  }
}