Rarible · Schema

UnionApiErrorBadRequest

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
code string
message string Error message
View JSON Schema on GitHub

JSON Schema

UnionApiErrorBadRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UnionApiErrorBadRequest",
  "required": [
    "code",
    "message"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "enum": [
        "BAD_REQUEST",
        "VALIDATION"
      ],
      "default": "BAD_REQUEST"
    },
    "message": {
      "type": "string",
      "description": "Error message"
    }
  }
}