Rarible · Schema

MintActivity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

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

JSON Schema

MintActivity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MintActivity",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "MINT"
      ]
    },
    "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"
    },
    "mintPrice": {
      "$ref": "#/components/schemas/BigDecimal"
    },
    "mintPayment": {
      "$ref": "#/components/schemas/Asset"
    },
    "mintPriceUsd": {
      "$ref": "#/components/schemas/BigDecimal"
    },
    "transactionHash": {
      "type": "string"
    },
    "blockchainInfo": {
      "$ref": "#/components/schemas/ActivityBlockchainInfo"
    }
  },
  "required": [
    "@type",
    "owner",
    "value",
    "transactionHash"
  ]
}