OpenSea · Schema

SwapRouteErrorResponse

An error encountered for a specific swap route

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
type string The error type
View JSON Schema on GitHub

JSON Schema

SwapRouteErrorResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/SwapRouteErrorResponse",
  "title": "SwapRouteErrorResponse",
  "type": "object",
  "description": "An error encountered for a specific swap route",
  "properties": {
    "type": {
      "type": "string",
      "description": "The error type",
      "example": "INSUFFICIENT_FUNDS"
    }
  },
  "required": [
    "type"
  ]
}