Rarible · Schema

OwnershipEvent

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

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

JSON Schema

OwnershipEvent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OwnershipEvent",
  "type": "object",
  "properties": {
    "ownershipId": {
      "$ref": "#/components/schemas/OwnershipId"
    },
    "eventId": {
      "type": "string"
    },
    "eventTimeMarks": {
      "$ref": "#/components/schemas/EventTimeMarks"
    }
  },
  "required": [
    "ownershipId",
    "eventId"
  ],
  "oneOf": [
    {
      "$ref": "#/components/schemas/OwnershipUpdateEvent"
    },
    {
      "$ref": "#/components/schemas/OwnershipDeleteEvent"
    }
  ]
}