Rarible · Schema

OrderMatchSwap

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
left object
right object
View JSON Schema on GitHub

JSON Schema

OrderMatchSwap.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OrderMatchSwap",
  "type": "object",
  "required": [
    "left",
    "right"
  ],
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "SWAP"
      ]
    },
    "left": {
      "$ref": "#/components/schemas/OrderActivityMatchSide"
    },
    "right": {
      "$ref": "#/components/schemas/OrderActivityMatchSide"
    }
  }
}