OpenSea · Schema

Price

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
currency string
decimals integer
value string
View JSON Schema on GitHub

JSON Schema

Price.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/Price",
  "title": "Price",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string"
    },
    "decimals": {
      "type": "integer",
      "format": "int32"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "currency",
    "decimals",
    "value"
  ]
}