Rarible · Schema

CurrencyUsdRate

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
currencyId string Currency Id
symbol string Currency Symbol
abbreviation string
rate object
date string Date and time of currency USD rate
View JSON Schema on GitHub

JSON Schema

CurrencyUsdRate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CurrencyUsdRate",
  "type": "object",
  "required": [
    "symbol",
    "rate",
    "date"
  ],
  "properties": {
    "currencyId": {
      "deprecated": true,
      "type": "string",
      "description": "Currency Id",
      "example": "usdc"
    },
    "symbol": {
      "type": "string",
      "description": "Currency Symbol",
      "example": "usdc"
    },
    "abbreviation": {
      "type": "string"
    },
    "rate": {
      "$ref": "#/components/schemas/BigDecimal"
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time of currency USD rate"
    }
  }
}