Rarible · Schema

ItemLastSale

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
date string
seller object
buyer object
value object
currency object
price object
View JSON Schema on GitHub

JSON Schema

ItemLastSale.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemLastSale",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "format": "date-time"
    },
    "seller": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "buyer": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "value": {
      "$ref": "#/components/schemas/BigDecimal"
    },
    "currency": {
      "$ref": "#/components/schemas/AssetType"
    },
    "price": {
      "$ref": "#/components/schemas/BigDecimal"
    }
  },
  "required": [
    "date",
    "from",
    "to",
    "value",
    "currency",
    "price"
  ]
}