Rarible · Schema

SalesChart

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
cursor string Combined continuation token to paginate search result
dates array
pricesNative array
itemIds array
View JSON Schema on GitHub

JSON Schema

SalesChart.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SalesChart",
  "type": "object",
  "properties": {
    "cursor": {
      "type": "string",
      "description": "Combined continuation token to paginate search result"
    },
    "dates": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "date-time"
      }
    },
    "pricesNative": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BigDecimal"
      }
    },
    "itemIds": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ItemId"
      }
    }
  },
  "required": [
    "dates",
    "pricesNative",
    "itemIds"
  ]
}