Rarible · Schema

Collections

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
total integer Number of ownerships were found by request
continuation string Continuation token to paginate collections search result
collections array
View JSON Schema on GitHub

JSON Schema

Collections.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Collections",
  "type": "object",
  "properties": {
    "total": {
      "deprecated": true,
      "type": "integer",
      "format": "int64",
      "description": "Number of ownerships were found by request"
    },
    "continuation": {
      "type": "string",
      "description": "Continuation token to paginate collections search result"
    },
    "collections": {
      "default": [],
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Collection"
      }
    }
  },
  "required": [
    "collections"
  ]
}