Rarible · Schema

ItemsWithOwnership

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
total integer Number of items were found by request
continuation string Continuation token to paginate items search result
items array List of found items
View JSON Schema on GitHub

JSON Schema

ItemsWithOwnership.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemsWithOwnership",
  "type": "object",
  "properties": {
    "total": {
      "deprecated": true,
      "type": "integer",
      "format": "int64",
      "description": "Number of items were found by request"
    },
    "continuation": {
      "type": "string",
      "description": "Continuation token to paginate items search result"
    },
    "items": {
      "type": "array",
      "description": "List of found items",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/ItemWithOwnership"
      }
    }
  },
  "required": [
    "items"
  ]
}