OpenSea · Schema

ContractResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
address string
chain string
collection string
contract_standard string
name string
View JSON Schema on GitHub

JSON Schema

ContractResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ContractResponse",
  "title": "ContractResponse",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "chain": {
      "type": "string"
    },
    "collection": {
      "type": "string"
    },
    "contract_standard": {
      "type": "string"
    },
    "name": {
      "type": "string"
    }
  },
  "required": [
    "address",
    "chain",
    "collection",
    "contract_standard",
    "name"
  ]
}