Pendle · Schema

IntegrationEventResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
events array List of events
View JSON Schema on GitHub

JSON Schema

IntegrationEventResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IntegrationEventResponse",
  "type": "object",
  "properties": {
    "events": {
      "description": "List of events",
      "type": "array",
      "items": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/SwapEvent"
          },
          {
            "$ref": "#/components/schemas/JoinExitEvent"
          }
        ]
      }
    }
  },
  "required": [
    "events"
  ]
}