Rarible · Schema

BestAtTimeOrdersResponse

K best orders at time

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
orders array List of best orders, ordered from best to K-best
View JSON Schema on GitHub

JSON Schema

BestAtTimeOrdersResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BestAtTimeOrdersResponse",
  "type": "object",
  "description": "K best orders at time",
  "properties": {
    "orders": {
      "type": "array",
      "description": "List of best orders, ordered from best to K-best",
      "items": {
        "$ref": "#/components/schemas/Order"
      }
    }
  },
  "required": [
    "orders"
  ]
}