Pendle · Schema

VoteResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
pool object
votes number
percentage number
View JSON Schema on GitHub

JSON Schema

VoteResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VoteResponse",
  "type": "object",
  "properties": {
    "pool": {
      "$ref": "#/components/schemas/PoolResponse"
    },
    "votes": {
      "type": "number"
    },
    "percentage": {
      "type": "number"
    }
  },
  "required": [
    "pool",
    "votes",
    "percentage"
  ]
}