OpenSea · Schema

IntervalStat

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
interval string
volume number
sales integer
View JSON Schema on GitHub

JSON Schema

IntervalStat.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/IntervalStat",
  "title": "IntervalStat",
  "type": "object",
  "properties": {
    "interval": {
      "type": "string"
    },
    "volume": {
      "type": "number",
      "format": "double"
    },
    "sales": {
      "type": "integer",
      "format": "int32"
    }
  },
  "required": [
    "interval",
    "sales",
    "volume"
  ]
}