Rarible · Schema

ItemTransfer

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
from object
View JSON Schema on GitHub

JSON Schema

ItemTransfer.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemTransfer",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "TRANSFER"
      ]
    },
    "from": {
      "$ref": "#/components/schemas/UnionAddress"
    }
  },
  "required": [
    "@type",
    "owner",
    "value",
    "from"
  ]
}