Pendle · Schema

ConvertData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
aggregatorType string
priceImpact number
impliedApy object
priceImpactBreakDown object
effectiveApy number
paramsBreakdown object Parameter breakdown for transfer liquidity
fee object Fee in USD
View JSON Schema on GitHub

JSON Schema

ConvertData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ConvertData",
  "type": "object",
  "properties": {
    "aggregatorType": {
      "type": "string"
    },
    "priceImpact": {
      "type": "number"
    },
    "impliedApy": {
      "$ref": "#/components/schemas/ImpliedApy"
    },
    "priceImpactBreakDown": {
      "$ref": "#/components/schemas/PriceImpactBreakDownData"
    },
    "effectiveApy": {
      "type": "number"
    },
    "paramsBreakdown": {
      "description": "Parameter breakdown for transfer liquidity",
      "allOf": [
        {
          "$ref": "#/components/schemas/ParamsBreakdown"
        }
      ]
    },
    "fee": {
      "description": "Fee in USD",
      "allOf": [
        {
          "$ref": "#/components/schemas/FeeUsd"
        }
      ]
    }
  },
  "required": [
    "aggregatorType",
    "priceImpact",
    "priceImpactBreakDown"
  ]
}