Rarible · Schema

CollectionEvent

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

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

JSON Schema

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