Deribit · Schema

Errorresponse

Generic error response for broken references

DerivativesCryptocurrencyBitcoinEthereumOptionsFuturesPerpetualsTradingMarket DataBlock TradingWebSocketFinancial

Properties

Name Type Description
jsonrpc string
error object
View JSON Schema on GitHub

JSON Schema

ErrorResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/deribit/json-schema/ErrorResponse.json",
  "title": "Errorresponse",
  "type": "object",
  "properties": {
    "jsonrpc": {
      "type": "string",
      "enum": [
        "2.0"
      ]
    },
    "error": {
      "type": "object",
      "properties": {
        "code": {
          "type": "integer",
          "description": "Error code"
        },
        "message": {
          "type": "string",
          "description": "Error message"
        }
      },
      "required": [
        "code",
        "message"
      ]
    }
  },
  "required": [
    "jsonrpc",
    "error"
  ],
  "description": "Generic error response for broken references"
}