Rarible · Schema

OlapBidsByPrice

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
price number
bidsCount integer
volumeNative number
buyersCount integer
buyer object
View JSON Schema on GitHub

JSON Schema

OlapBidsByPrice.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapBidsByPrice",
  "type": "object",
  "properties": {
    "price": {
      "type": "number",
      "format": "bigdecimal"
    },
    "bidsCount": {
      "type": "integer",
      "format": "int64"
    },
    "volumeNative": {
      "type": "number",
      "format": "bigdecimal"
    },
    "buyersCount": {
      "type": "integer",
      "format": "int64"
    },
    "buyer": {
      "$ref": "#/components/schemas/UnionAddress"
    }
  },
  "required": [
    "price",
    "bidsCount",
    "volumeNative",
    "volumeRatio",
    "buyersCount"
  ]
}