Tensor · Schema

Tensor Mint

Metadata for an indexed NFT mint on Tensor.

NFTMarketplaceSolanaBlockchainWeb3CryptocurrencyTradingDAODeFiAMM

Properties

Name Type Description
mint string
name string
imageUri string
owner string
collectionSlug string
nftStandard string
royaltyBps integer
attributes array
rarityRankTT integer
lastSalePrice string
View JSON Schema on GitHub

JSON Schema

tensor-mint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tensor/main/json-schema/tensor-mint-schema.json",
  "title": "Tensor Mint",
  "description": "Metadata for an indexed NFT mint on Tensor.",
  "type": "object",
  "required": ["mint"],
  "properties": {
    "mint": { "type": "string" },
    "name": { "type": "string" },
    "imageUri": { "type": "string", "format": "uri" },
    "owner": { "type": "string" },
    "collectionSlug": { "type": "string" },
    "nftStandard": { "type": "string", "enum": ["NFT", "pNFT", "cNFT"] },
    "royaltyBps": { "type": "integer" },
    "attributes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "trait_type": { "type": "string" },
          "value": { "type": "string" }
        }
      }
    },
    "rarityRankTT": { "type": "integer" },
    "lastSalePrice": { "type": "string" }
  }
}