Rarible · Schema

OlapCollectionLeaderboardItem

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id string Identifier of collection
sales integer
volume object
floorChangePercent number
floorHistory object
globalStats object
View JSON Schema on GitHub

JSON Schema

OlapCollectionLeaderboardItem.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapCollectionLeaderboardItem",
  "required": [
    "id",
    "sales",
    "volume",
    "floorHistory",
    "globalStats"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Identifier of collection"
    },
    "sales": {
      "type": "integer",
      "format": "int64"
    },
    "volume": {
      "$ref": "#/components/schemas/OlapPriceWithUsd"
    },
    "floorChangePercent": {
      "type": "number",
      "format": "bigdecimal"
    },
    "floorHistory": {
      "$ref": "#/components/schemas/OlapHistoryValuesByTimestamps"
    },
    "globalStats": {
      "$ref": "#/components/schemas/OlapCollectionLeaderboardStatistics"
    }
  }
}