Rarible · Schema

NftAssetType

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

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

JSON Schema

NftAssetType.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NftAssetType",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "NFT"
      ]
    },
    "collectionId": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "itemId": {
      "$ref": "#/components/schemas/ItemId"
    },
    "standard": {
      "type": "string",
      "enum": [
        "SINGLE",
        "MULTIPLE"
      ]
    }
  },
  "required": [
    "@type",
    "itemId",
    "collectionId"
  ]
}