Rarible · Schema

OlapCollectionFloorPriceByCurrencyChangeEvent

Sent when there is a new cheapest order for the given currency

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
orderId string ID of the floor order or null if there is no order
price number price of the floor order or null if there is no order
currencyId object
updatedAt string when the value was updated in the olap database
@type string
View JSON Schema on GitHub

JSON Schema

OlapCollectionFloorPriceByCurrencyChangeEvent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapCollectionFloorPriceByCurrencyChangeEvent",
  "type": "object",
  "description": "Sent when there is a new cheapest order for the given currency",
  "required": [
    "@type",
    "currencyId",
    "updatedAt"
  ],
  "properties": {
    "orderId": {
      "type": "string",
      "description": "ID of the floor order or null if there is no order"
    },
    "price": {
      "type": "number",
      "format": "bigdecimal",
      "description": "price of the floor order or null if there is no order"
    },
    "currencyId": {
      "$ref": "#/components/schemas/CurrencyId"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "when the value was updated in the olap database"
    },
    "@type": {
      "type": "string",
      "enum": [
        "FLOOR_PRICE_BY_CURRENCY_CHANGE"
      ]
    }
  }
}