Rarible · Schema

OrderCancelBidActivity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
orderId object
hash string
maker object
make object
take object
source object
transactionHash string
blockchainInfo object
View JSON Schema on GitHub

JSON Schema

OrderCancelBidActivity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OrderCancelBidActivity",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "CANCEL_BID"
      ]
    },
    "orderId": {
      "$ref": "#/components/schemas/OrderId"
    },
    "hash": {
      "type": "string"
    },
    "maker": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "make": {
      "$ref": "#/components/schemas/AssetType"
    },
    "take": {
      "$ref": "#/components/schemas/AssetType"
    },
    "source": {
      "$ref": "#/components/schemas/OrderActivitySource"
    },
    "transactionHash": {
      "type": "string"
    },
    "blockchainInfo": {
      "$ref": "#/components/schemas/ActivityBlockchainInfo"
    }
  },
  "required": [
    "@type",
    "hash",
    "maker",
    "make",
    "take",
    "transactionHash"
  ]
}