OpenSea · Schema

BidderResponse

A bidder in an offer aggregate

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
address string Wallet address of the bidder
quantity integer Number of offers from this bidder
View JSON Schema on GitHub

JSON Schema

BidderResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/BidderResponse",
  "title": "BidderResponse",
  "type": "object",
  "description": "A bidder in an offer aggregate",
  "properties": {
    "address": {
      "type": "string",
      "description": "Wallet address of the bidder"
    },
    "quantity": {
      "type": "integer",
      "format": "int32",
      "description": "Number of offers from this bidder"
    }
  },
  "required": [
    "address",
    "quantity"
  ]
}