OpenSea · Schema

ToolCollectionResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
slug string
name string
image_url string
opensea_url string
contracts array
View JSON Schema on GitHub

JSON Schema

ToolCollectionResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ToolCollectionResponse",
  "title": "ToolCollectionResponse",
  "type": "object",
  "properties": {
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "image_url": {
      "type": "string"
    },
    "opensea_url": {
      "type": "string"
    },
    "contracts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Contract"
      }
    }
  },
  "required": [
    "contracts",
    "name",
    "opensea_url",
    "slug"
  ]
}