Pendle · Schema

VoteSnapshotResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
votes array
totalPools number
totalVotes number
epoch string
View JSON Schema on GitHub

JSON Schema

VoteSnapshotResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VoteSnapshotResponse",
  "type": "object",
  "properties": {
    "votes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VoteResponse"
      }
    },
    "totalPools": {
      "type": "number"
    },
    "totalVotes": {
      "type": "number"
    },
    "epoch": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "votes",
    "totalPools",
    "totalVotes",
    "epoch"
  ]
}