OpenSea · Schema

Item

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
itemType integer
token string
identifierOrCriteria string
startAmount string
endAmount string
View JSON Schema on GitHub

JSON Schema

Item.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/Item",
  "title": "Item",
  "type": "object",
  "properties": {
    "itemType": {
      "type": "integer",
      "format": "int32"
    },
    "token": {
      "type": "string"
    },
    "identifierOrCriteria": {
      "type": "string"
    },
    "startAmount": {
      "type": "string"
    },
    "endAmount": {
      "type": "string"
    }
  },
  "required": [
    "endAmount",
    "identifierOrCriteria",
    "itemType",
    "startAmount",
    "token"
  ]
}