OpenSea · Schema

NumericTraitData

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
type string
min number
max number
View JSON Schema on GitHub

JSON Schema

NumericTraitData.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/NumericTraitData",
  "title": "NumericTraitData",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "min": {
      "type": "number",
      "format": "float"
    },
    "max": {
      "type": "number",
      "format": "float"
    }
  },
  "required": [
    "type"
  ]
}