Tezos · Schema

VoterSnapshot

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
delegate object Voter identity
votingPower integer Baker's voting power
status string Voter's status: `none` - the voter did nothing `upvoted` - the voter upvoted at least one proposal `voted_yay` - the voter voted "yay" `voted_nay` - the voter voted "nay" `voted_pass` - the voter vote
View JSON Schema on GitHub

JSON Schema

votersnapshot.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VoterSnapshot",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "delegate": {
      "description": "Voter identity",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Alias"
        }
      ]
    },
    "votingPower": {
      "type": "integer",
      "description": "Baker's voting power",
      "format": "int64"
    },
    "status": {
      "type": "string",
      "description": "Voter's status:\n`none` - the voter did nothing\n`upvoted` - the voter upvoted at least one proposal\n`voted_yay` - the voter voted \"yay\"\n`voted_nay` - the voter voted \"nay\"\n`voted_pass` - the voter voted \"pass\""
    }
  }
}