Rarible · Schema

EthOrderDataRaribleV2DataV1

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
payouts array
originFees array
View JSON Schema on GitHub

JSON Schema

EthOrderDataRaribleV2DataV1.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EthOrderDataRaribleV2DataV1",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ETH_RARIBLE_V2"
      ]
    },
    "payouts": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Payout"
      }
    },
    "originFees": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Payout"
      }
    }
  },
  "required": [
    "@type",
    "payouts",
    "originFees"
  ]
}