Rarible · Schema

TraitsRarityRequest

Request rarity of the properties in the collection

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
collectionId string
properties array
View JSON Schema on GitHub

JSON Schema

TraitsRarityRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TraitsRarityRequest",
  "type": "object",
  "description": "Request rarity of the properties in the collection",
  "required": [
    "collectionId",
    "properties"
  ],
  "properties": {
    "collectionId": {
      "type": "string",
      "example": "ETHEREUM:0x60e4d786628fea6478f785a6d7e704777c86a7c6"
    },
    "properties": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TraitProperty"
      }
    }
  }
}