Rarible · Schema

BurnActivity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
owner object
contract object
collection object
tokenId object
itemId object
value object
transactionHash string
blockchainInfo object
View JSON Schema on GitHub

JSON Schema

BurnActivity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BurnActivity",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "BURN"
      ]
    },
    "owner": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "contract": {
      "$ref": "#/components/schemas/ContractAddress"
    },
    "collection": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "tokenId": {
      "$ref": "#/components/schemas/BigInteger"
    },
    "itemId": {
      "$ref": "#/components/schemas/ItemId"
    },
    "value": {
      "$ref": "#/components/schemas/BigInteger"
    },
    "transactionHash": {
      "type": "string"
    },
    "blockchainInfo": {
      "$ref": "#/components/schemas/ActivityBlockchainInfo"
    }
  },
  "required": [
    "@type",
    "owner",
    "value",
    "transactionHash"
  ]
}