Rarible · Schema

OlapPeriodCollectionStatisticsResponse

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id object
period object
volume object Period (e.g., 1-day) worth of all transactions with items in this collection
floorChangePercent number Change in floor price in percent during the period.
View JSON Schema on GitHub

JSON Schema

OlapPeriodCollectionStatisticsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapPeriodCollectionStatisticsResponse",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "period": {
      "$ref": "#/components/schemas/OlapPeriod"
    },
    "volume": {
      "description": "Period (e.g., 1-day) worth of all transactions with items in this collection",
      "$ref": "#/components/schemas/OlapPriceWithUsd"
    },
    "floorChangePercent": {
      "description": "Change in floor price in percent during the period.",
      "type": "number",
      "format": "bigdecimal"
    }
  },
  "required": [
    "period",
    "volume"
  ]
}