Rarible · Schema

OrdersSubscriptionRequest

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
platform object
orderType object
View JSON Schema on GitHub

JSON Schema

OrdersSubscriptionRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OrdersSubscriptionRequest",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ORDERS"
      ]
    },
    "platform": {
      "$ref": "#/components/schemas/Platform"
    },
    "orderType": {
      "$ref": "#/components/schemas/OrderType"
    }
  },
  "required": [
    "@type"
  ]
}