Pendle · Schema

MarketApyHistoriesResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
total number
limit number
timestamp_start string
timestamp_end string
results array
View JSON Schema on GitHub

JSON Schema

MarketApyHistoriesResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarketApyHistoriesResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "number"
    },
    "limit": {
      "type": "number"
    },
    "timestamp_start": {
      "format": "date-time",
      "type": "string"
    },
    "timestamp_end": {
      "format": "date-time",
      "type": "string"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MarketApyHistoryResponse"
      }
    }
  },
  "required": [
    "total",
    "limit",
    "timestamp_start",
    "timestamp_end",
    "results"
  ]
}