Rarible · Schema

TraitEntry

Combination of Item attribute key/value with it's count

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
value string
count integer
View JSON Schema on GitHub

JSON Schema

TraitEntry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TraitEntry",
  "type": "object",
  "description": "Combination of Item attribute key/value with it's count",
  "required": [
    "value",
    "count"
  ],
  "properties": {
    "value": {
      "type": "string"
    },
    "count": {
      "type": "integer",
      "format": "int64"
    }
  }
}