Rarible · Schema

Balance

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
currencyId object
owner object
balance object
decimal object
View JSON Schema on GitHub

JSON Schema

Balance.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Balance",
  "type": "object",
  "required": [
    "currencyId",
    "owner",
    "balance",
    "decimal"
  ],
  "properties": {
    "currencyId": {
      "$ref": "#/components/schemas/CurrencyId"
    },
    "owner": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "balance": {
      "$ref": "#/components/schemas/BigInteger"
    },
    "decimal": {
      "$ref": "#/components/schemas/BigDecimal"
    }
  }
}