Rarible · Schema

ItemCollection

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id object
name string
bestBidOrder object
bestSellOrder object
View JSON Schema on GitHub

JSON Schema

ItemCollection.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemCollection",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "name": {
      "type": "string"
    },
    "bestBidOrder": {
      "$ref": "#/components/schemas/Order"
    },
    "bestSellOrder": {
      "$ref": "#/components/schemas/Order"
    }
  },
  "required": [
    "id",
    "name"
  ]
}