OpenSea · Schema

Fee

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
fee number
recipient string
required boolean
View JSON Schema on GitHub

JSON Schema

Fee.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/Fee",
  "title": "Fee",
  "type": "object",
  "properties": {
    "fee": {
      "type": "number",
      "format": "double"
    },
    "recipient": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    }
  },
  "required": [
    "fee",
    "recipient",
    "required"
  ]
}