Rarible · Schema

ItemTraitProperty

Item trait property

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
key string
value string
values array
View JSON Schema on GitHub

JSON Schema

ItemTraitProperty.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemTraitProperty",
  "type": "object",
  "description": "Item trait property",
  "required": [
    "key"
  ],
  "properties": {
    "key": {
      "type": "string",
      "example": "Hat"
    },
    "value": {
      "type": "string",
      "example": "Halo"
    },
    "values": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}