Rarible · Schema

FeesValue

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
value object Fee amount in payment currency
valueUsd object Fee amount in USD
View JSON Schema on GitHub

JSON Schema

FeesValue.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FeesValue",
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "$ref": "#/components/schemas/BigDecimal",
      "description": "Fee amount in payment currency"
    },
    "valueUsd": {
      "$ref": "#/components/schemas/BigDecimal",
      "description": "Fee amount in USD"
    }
  }
}