Pendle · Schema

GetOngoingVotesResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

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

JSON Schema

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