Rarible · Schema

LazyItemBurnForm

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id object
creators array Address of the NFT item creators
signatures array Digital signatures
View JSON Schema on GitHub

JSON Schema

LazyItemBurnForm.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LazyItemBurnForm",
  "type": "object",
  "required": [
    "id",
    "creators",
    "signatures"
  ],
  "properties": {
    "id": {
      "$ref": "#/components/schemas/ItemId"
    },
    "creators": {
      "type": "array",
      "description": "Address of the NFT item creators",
      "items": {
        "$ref": "#/components/schemas/UnionAddress"
      }
    },
    "signatures": {
      "type": "array",
      "description": "Digital signatures",
      "items": {
        "type": "string"
      }
    }
  }
}