Rarible · Schema

L2WithdrawalActivity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
user object
status string
itemId object
collection object
value object
View JSON Schema on GitHub

JSON Schema

L2WithdrawalActivity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "L2WithdrawalActivity",
  "type": "object",
  "required": [
    "@type",
    "user",
    "status",
    "itemId"
  ],
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "L2_WITHDRAWAL"
      ]
    },
    "user": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "status": {
      "type": "string"
    },
    "itemId": {
      "$ref": "#/components/schemas/ItemId"
    },
    "collection": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "value": {
      "$ref": "#/components/schemas/BigInteger"
    }
  }
}