Rarible · Schema

EthErc721AssetType

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
contract object
collection object
tokenId object
View JSON Schema on GitHub

JSON Schema

EthErc721AssetType.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EthErc721AssetType",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ERC721"
      ]
    },
    "contract": {
      "$ref": "#/components/schemas/ContractAddress"
    },
    "collection": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "tokenId": {
      "$ref": "#/components/schemas/BigInteger"
    }
  },
  "required": [
    "@type",
    "contract",
    "tokenId"
  ]
}