OpenSea · Schema

Owner

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
address string
quantity integer
quantity_string string
View JSON Schema on GitHub

JSON Schema

Owner.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/Owner",
  "title": "Owner",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "quantity": {
      "type": "integer",
      "format": "int32"
    },
    "quantity_string": {
      "type": "string"
    }
  },
  "required": [
    "address",
    "quantity",
    "quantity_string"
  ]
}