OpenSea · Schema

CollectionHolderResponse

A collection holder

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
address string Wallet address of the holder
quantity integer Number of items held
percentage number Ownership percentage of the collection
View JSON Schema on GitHub

JSON Schema

CollectionHolderResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/CollectionHolderResponse",
  "title": "CollectionHolderResponse",
  "type": "object",
  "description": "A collection holder",
  "properties": {
    "address": {
      "type": "string",
      "description": "Wallet address of the holder"
    },
    "quantity": {
      "type": "integer",
      "format": "int32",
      "description": "Number of items held"
    },
    "percentage": {
      "type": "number",
      "format": "float",
      "description": "Ownership percentage of the collection"
    }
  },
  "required": [
    "address",
    "percentage",
    "quantity"
  ]
}