Rarible · Schema

OlapHistoryValuesByTimestamps

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
timestamps array Timestamps of historical statistics
values array Values of historical statistics
View JSON Schema on GitHub

JSON Schema

OlapHistoryValuesByTimestamps.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapHistoryValuesByTimestamps",
  "required": [
    "timestamps",
    "values"
  ],
  "type": "object",
  "properties": {
    "timestamps": {
      "type": "array",
      "description": "Timestamps of historical statistics",
      "items": {
        "type": "integer",
        "format": "int64",
        "description": "Unix epoch of historical statistics"
      }
    },
    "values": {
      "type": "array",
      "description": "Values of historical statistics",
      "items": {
        "type": "number",
        "description": "Value of historical statistics",
        "format": "bigdecimal"
      }
    }
  }
}