OpenSea · Schema

ToolSearchResultResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
tool_id string
registry_chain string
registry_addr string
name string
description string
tags array
creator string
creator_display_name string
endpoint_domain string
access_type string
payment_stats object
created_at string
pricing_recipients array
access object
View JSON Schema on GitHub

JSON Schema

ToolSearchResultResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ToolSearchResultResponse",
  "title": "ToolSearchResultResponse",
  "type": "object",
  "properties": {
    "tool_id": {
      "type": "string"
    },
    "registry_chain": {
      "type": "string"
    },
    "registry_addr": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "creator": {
      "type": "string"
    },
    "creator_display_name": {
      "type": "string"
    },
    "endpoint_domain": {
      "type": "string"
    },
    "access_type": {
      "type": "string"
    },
    "payment_stats": {
      "$ref": "#/components/schemas/ToolPaymentStatsResponse"
    },
    "created_at": {
      "type": "string"
    },
    "pricing_recipients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ToolPricingRecipientResponse"
      }
    },
    "access": {
      "$ref": "#/components/schemas/ToolAccessResponse"
    }
  },
  "required": [
    "access_type",
    "created_at",
    "creator",
    "creator_display_name",
    "description",
    "endpoint_domain",
    "name",
    "registry_addr",
    "registry_chain",
    "tags",
    "tool_id"
  ]
}