SushiSwap · Schema

OffChainPoolResponse

DeFiDecentralized ExchangeDEXCryptocurrencyWeb3BlockchainMulti-ChainLiquiditySwapToken Pricing

Properties

Name Type Description
pool_type string Indicates this is off-chain pool data
pools array
View JSON Schema on GitHub

JSON Schema

offchainpoolresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OffChainPoolResponse",
  "type": "object",
  "properties": {
    "pool_type": {
      "type": "string",
      "enum": [
        "offchain"
      ],
      "description": "Indicates this is off-chain pool data"
    },
    "pools": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OffChainPoolData"
      }
    }
  },
  "required": [
    "pool_type",
    "pools"
  ]
}