Rarible · Schema

OlapStatsGraphResponse

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
historicalDates array Dates of historical statistics
historicalValues array Values of historical statistics
currentValue number Current value
View JSON Schema on GitHub

JSON Schema

OlapStatsGraphResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapStatsGraphResponse",
  "required": [
    "historicalDates",
    "historicalValues"
  ],
  "type": "object",
  "properties": {
    "historicalDates": {
      "type": "array",
      "description": "Dates of historical statistics",
      "items": {
        "type": "string",
        "description": "Dates of historical statistics"
      }
    },
    "historicalValues": {
      "type": "array",
      "description": "Values of historical statistics",
      "items": {
        "type": "number",
        "description": "Values of historical statistics",
        "format": "bigdecimal"
      }
    },
    "currentValue": {
      "type": "number",
      "description": "Current value",
      "format": "bigdecimal"
    }
  }
}