Rarible · Schema

EventTimeMarks

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
source string Describes what was the trigger of the event
marks array
View JSON Schema on GitHub

JSON Schema

EventTimeMarks.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EventTimeMarks",
  "type": "object",
  "required": [
    "source",
    "marks"
  ],
  "properties": {
    "source": {
      "type": "string",
      "description": "Describes what was the trigger of the event"
    },
    "marks": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/EventTimeMark"
      }
    }
  }
}