SushiSwap · Schema

OffChainPoolData

DeFiDecentralized ExchangeDEXCryptocurrencyWeb3BlockchainMulti-ChainLiquiditySwapToken Pricing

Properties

Name Type Description
pool object
assets array
pairs array
View JSON Schema on GitHub

JSON Schema

offchainpooldata.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OffChainPoolData",
  "type": "object",
  "properties": {
    "pool": {
      "$ref": "#/components/schemas/OffChainPool"
    },
    "assets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OffChainAsset"
      }
    },
    "pairs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Pair"
      }
    }
  },
  "required": [
    "pool",
    "assets",
    "pairs"
  ]
}