Rarible · Schema

EthErc721LazyAssetType

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
contract object
collection object
tokenId object
uri string
creators array Creators of the target item
royalties array
signatures array
View JSON Schema on GitHub

JSON Schema

EthErc721LazyAssetType.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EthErc721LazyAssetType",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ERC721_Lazy"
      ]
    },
    "contract": {
      "$ref": "#/components/schemas/ContractAddress"
    },
    "collection": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "tokenId": {
      "$ref": "#/components/schemas/BigInteger"
    },
    "uri": {
      "type": "string"
    },
    "creators": {
      "type": "array",
      "description": "Creators of the target item",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Creator"
      }
    },
    "royalties": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Royalty"
      }
    },
    "signatures": {
      "type": "array",
      "default": [],
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "@type",
    "contract",
    "tokenId",
    "uri",
    "creators",
    "royalties",
    "signatures"
  ]
}