OpenSea · Schema

ToolAccessResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
open_access boolean
logic string
requirements array
View JSON Schema on GitHub

JSON Schema

ToolAccessResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ToolAccessResponse",
  "title": "ToolAccessResponse",
  "type": "object",
  "properties": {
    "open_access": {
      "type": "boolean"
    },
    "logic": {
      "type": "string"
    },
    "requirements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ToolRequirementResponse"
      }
    }
  },
  "required": [
    "logic",
    "open_access",
    "requirements"
  ]
}