Rarible · Schema

CollectionsSearchFilter

Filter for collections search query

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
blockchains array
text string
View JSON Schema on GitHub

JSON Schema

CollectionsSearchFilter.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CollectionsSearchFilter",
  "type": "object",
  "description": "Filter for collections search query",
  "properties": {
    "blockchains": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Blockchain"
      }
    },
    "text": {
      "type": "string",
      "example": "Apes"
    }
  },
  "required": [
    "text"
  ]
}