OpenSea · Schema

Criteria

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
collection object
contract object
traits array
numeric_traits array
encoded_token_ids string
View JSON Schema on GitHub

JSON Schema

Criteria.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/Criteria",
  "title": "Criteria",
  "type": "object",
  "properties": {
    "collection": {
      "$ref": "#/components/schemas/CollectionInner"
    },
    "contract": {
      "$ref": "#/components/schemas/ContractInner"
    },
    "traits": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TraitData"
      }
    },
    "numeric_traits": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NumericTraitData"
      }
    },
    "encoded_token_ids": {
      "type": "string"
    }
  }
}