Rarible · Schema

OlapCurrencyAmount

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
currency object
value number Amount of currency
View JSON Schema on GitHub

JSON Schema

OlapCurrencyAmount.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapCurrencyAmount",
  "required": [
    "currency",
    "value"
  ],
  "type": "object",
  "properties": {
    "currency": {
      "$ref": "#/components/schemas/OlapCurrencyType"
    },
    "value": {
      "type": "number",
      "description": "Amount of currency",
      "format": "bigdecimal"
    }
  }
}