Rarible · Schema

ActivitySubscriptionRequest

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
itemId object
collectionId object
wallet object
type object
View JSON Schema on GitHub

JSON Schema

ActivitySubscriptionRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ActivitySubscriptionRequest",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ACTIVITY"
      ]
    },
    "itemId": {
      "$ref": "#/components/schemas/ItemId"
    },
    "collectionId": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "wallet": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "type": {
      "$ref": "#/components/schemas/ActivityType"
    }
  },
  "required": [
    "@type"
  ]
}