OpenSea · Schema

OwnersPaginatedResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
owners array
next string
View JSON Schema on GitHub

JSON Schema

OwnersPaginatedResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/OwnersPaginatedResponse",
  "title": "OwnersPaginatedResponse",
  "type": "object",
  "properties": {
    "owners": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Owner"
      }
    },
    "next": {
      "type": "string"
    }
  },
  "required": [
    "owners"
  ]
}