Rarible · Schema

EthOrderDataRaribleV2DataV2

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
payouts array
originFees array
isMakeFill boolean If true, the 'fill' part of the order applies to the 'make' side, otherwise to the 'take' side
View JSON Schema on GitHub

JSON Schema

EthOrderDataRaribleV2DataV2.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EthOrderDataRaribleV2DataV2",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ETH_RARIBLE_V2_2"
      ]
    },
    "payouts": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Payout"
      }
    },
    "originFees": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Payout"
      }
    },
    "isMakeFill": {
      "type": "boolean",
      "description": "If true, the 'fill' part of the order applies to the 'make' side, otherwise to the 'take' side"
    }
  },
  "required": [
    "@type",
    "payouts",
    "originFees",
    "isMakeFill"
  ]
}