hotjar · Schema

Error

An error response returned by the API when a request fails.

Properties

Name Type Description
error string The error type or code.
message string A human-readable description of the error.
View JSON Schema on GitHub

JSON Schema

hotjar-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "An error response returned by the API when a request fails.",
  "properties": {
    "error": {
      "type": "string",
      "description": "The error type or code."
    },
    "message": {
      "type": "string",
      "description": "A human-readable description of the error."
    }
  }
}