Pendle · Schema

VoteV2Response

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
votes number Absolute number of votes
percentage number Percentage of total votes
View JSON Schema on GitHub

JSON Schema

VoteV2Response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VoteV2Response",
  "type": "object",
  "properties": {
    "votes": {
      "type": "number",
      "description": "Absolute number of votes"
    },
    "percentage": {
      "type": "number",
      "description": "Percentage of total votes"
    }
  },
  "required": [
    "votes",
    "percentage"
  ]
}