Rarible · Schema

OlapCollectionEvent

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
collectionId object
eventId string
eventTimeMarks object
View JSON Schema on GitHub

JSON Schema

OlapCollectionEvent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapCollectionEvent",
  "type": "object",
  "required": [
    "collectionId",
    "eventId",
    "data"
  ],
  "properties": {
    "collectionId": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "eventId": {
      "type": "string"
    },
    "eventTimeMarks": {
      "$ref": "#/components/schemas/EventTimeMarks"
    }
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/OlapCollectionVolumeChangeEvent"
    },
    {
      "$ref": "#/components/schemas/OlapCollectionFloorPriceByCurrencyChangeEvent"
    },
    {
      "$ref": "#/components/schemas/OlapCollectionTopPriceByCurrencyChangeEvent"
    }
  ]
}