OpenSea · Schema

CollectionPaginatedResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

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

JSON Schema

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