OpenSea · Schema

AgentBindingResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
agent_id string
binding_contract string
agent object
registered_by string
View JSON Schema on GitHub

JSON Schema

AgentBindingResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/AgentBindingResponse",
  "title": "AgentBindingResponse",
  "type": "object",
  "properties": {
    "agent_id": {
      "type": "string"
    },
    "binding_contract": {
      "type": "string"
    },
    "agent": {
      "$ref": "#/components/schemas/AgentNftResponse"
    },
    "registered_by": {
      "type": "string"
    }
  },
  "required": [
    "agent",
    "agent_id",
    "binding_contract"
  ]
}