OpenSea · Schema

NumericTraitCriteria

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

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

JSON Schema

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