Rarible · Schema

OwnershipSearchQuery

Ownerships complex search query

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
size integer Number of entities returned
continuation string Continuation token to paginate ownerships search result
filter object
sort object
View JSON Schema on GitHub

JSON Schema

OwnershipSearchRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OwnershipSearchQuery",
  "type": "object",
  "description": "Ownerships complex search query",
  "required": [
    "size",
    "filter"
  ],
  "properties": {
    "size": {
      "minimum": 1,
      "maximum": 1000,
      "default": 50,
      "type": "integer",
      "format": "int32",
      "description": "Number of entities returned"
    },
    "continuation": {
      "type": "string",
      "description": "Continuation token to paginate ownerships search result"
    },
    "filter": {
      "$ref": "#/components/schemas/OwnershipSearchFilter"
    },
    "sort": {
      "$ref": "#/components/schemas/OwnershipSearchSort"
    }
  }
}