Rarible · Schema

OlapTrendingCollectionEntry

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id string Identifier of collection
numberOfSales object
volumeUsd object
volumeNative object
floorPrice object
View JSON Schema on GitHub

JSON Schema

OlapTrendingCollectionEntry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapTrendingCollectionEntry",
  "required": [
    "id",
    "numberOfSales",
    "volumeNative",
    "volumeUsd"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Identifier of collection"
    },
    "numberOfSales": {
      "$ref": "#/components/schemas/OlapIntegerNumberWithChange"
    },
    "volumeUsd": {
      "$ref": "#/components/schemas/OlapCurrencyAmountWithChange"
    },
    "volumeNative": {
      "$ref": "#/components/schemas/OlapCurrencyAmount"
    },
    "floorPrice": {
      "$ref": "#/components/schemas/OlapCurrencyAmount"
    }
  }
}