Rarible · Schema

ExtendedTraitProperty

Trait property parameters with additional features

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
key string
value string
rarity number Rarity percent
View JSON Schema on GitHub

JSON Schema

ExtendedTraitProperty.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ExtendedTraitProperty",
  "type": "object",
  "description": "Trait property parameters with additional features",
  "required": [
    "key",
    "value",
    "rarity"
  ],
  "properties": {
    "key": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "rarity": {
      "type": "number",
      "format": "bigdecimal",
      "description": "Rarity percent"
    }
  }
}