Pendle · Schema

SolanaTokenResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
name string
symbol string
description string
image string
attributes array
properties object
View JSON Schema on GitHub

JSON Schema

SolanaTokenResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SolanaTokenResponse",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "image": {
      "type": "string"
    },
    "attributes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "properties": {
      "$ref": "#/components/schemas/SolanaTokenPropertiesResponse"
    }
  },
  "required": [
    "name",
    "symbol",
    "description",
    "image",
    "attributes",
    "properties"
  ]
}