Rarible · Schema

ItemRoyalty

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

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

JSON Schema

ItemRoyalty.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ItemRoyalty",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ROYALTY"
      ]
    },
    "royalties": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/components/schemas/Royalty"
      }
    }
  },
  "required": [
    "@type",
    "royalties"
  ]
}