Rarible · Schema

CollectionsWithOwnedItems

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
collections array
continuation string Continuation token to paginate result
View JSON Schema on GitHub

JSON Schema

CollectionsWithOwnedItems.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CollectionsWithOwnedItems",
  "type": "object",
  "properties": {
    "collections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CollectionWithOwnedItems"
      }
    },
    "continuation": {
      "type": "string",
      "description": "Continuation token to paginate result"
    }
  },
  "required": [
    "collections"
  ]
}