Rarible · Schema

ItemSearchFullText

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

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

JSON Schema

ItemSearchFullText.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemSearchFullText",
  "type": "object",
  "properties": {
    "text": {
      "type": "string"
    },
    "fields": {
      "type": "array",
      "default": [
        "NAME"
      ],
      "items": {
        "type": "string",
        "enum": [
          "NAME",
          "DESCRIPTION",
          "TRAIT_VALUE"
        ]
      }
    }
  },
  "required": [
    "text"
  ]
}