Pendle · Schema
UniswapTokenListResponse
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| timestamp | string | |
| version | object | |
| tokens | array | |
| tokenMap | object | |
| keywords | array | |
| logoURI | string | |
| tags | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "UniswapTokenListResponse",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"version": {
"$ref": "#/components/schemas/VersionResponse"
},
"tokens": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TokenInfoResponse"
}
},
"tokenMap": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/TokenInfoResponse"
}
},
"keywords": {
"type": "array",
"items": {
"type": "string"
}
},
"logoURI": {
"type": "string"
},
"tags": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/TagDefinitionResponse"
}
}
},
"required": [
"name",
"timestamp",
"version",
"tokens",
"tokenMap",
"keywords",
"logoURI",
"tags"
]
}