Tezos · Schema

SrStaker

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
View JSON Schema on GitHub

JSON Schema

srstaker.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SrStaker",
  "allOf": [
    {
      "$ref": "#/components/schemas/Alias"
    },
    {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "integer",
          "description": "Internal TzKT id.  \n**[sortable]**",
          "format": "int32"
        },
        "bondStatus": {
          "type": "string",
          "description": "Bond status (`active`, `returned`, or `lost`)."
        },
        "bondLevel": {
          "type": "integer",
          "description": "Level of the block where the staker published his first commitment.  \n**[sortable]**",
          "format": "int32"
        },
        "bondTime": {
          "type": "string",
          "description": "Timestamp of the block where the staker published his first commitment.",
          "format": "date-time"
        }
      }
    }
  ]
}