OpenSea · Schema

PricingCurrencies

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
listing_currency object
offer_currency object
View JSON Schema on GitHub

JSON Schema

PricingCurrencies.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/PricingCurrencies",
  "title": "PricingCurrencies",
  "type": "object",
  "properties": {
    "listing_currency": {
      "$ref": "#/components/schemas/PaymentToken"
    },
    "offer_currency": {
      "$ref": "#/components/schemas/PaymentToken"
    }
  },
  "required": [
    "listing_currency",
    "offer_currency"
  ]
}