Rarible · Schema

OlapCollectionLeaderboardEntry

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id string Identifier of collection
volumeUsd object
volumeNative object
itemsBought integer
floorPrice object
listed integer
totalItemSupply integer
ownersCount integer
View JSON Schema on GitHub

JSON Schema

OlapCollectionLeaderboardEntry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapCollectionLeaderboardEntry",
  "required": [
    "id",
    "itemsBought",
    "listed",
    "ownersCount",
    "totalItemSupply",
    "volumeNative",
    "volumeUsd"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Identifier of collection"
    },
    "volumeUsd": {
      "$ref": "#/components/schemas/OlapCurrencyAmountWithChange"
    },
    "volumeNative": {
      "$ref": "#/components/schemas/OlapCurrencyAmount"
    },
    "itemsBought": {
      "type": "integer",
      "format": "int32"
    },
    "floorPrice": {
      "$ref": "#/components/schemas/OlapCurrencyAmountWithChange"
    },
    "listed": {
      "type": "integer",
      "format": "int32"
    },
    "totalItemSupply": {
      "type": "integer",
      "format": "int32"
    },
    "ownersCount": {
      "type": "integer",
      "format": "int32"
    }
  }
}