{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.therealer.com/docs/api/schemas/http-error-response.schema.json",
  "title": "Realer HTTP device error response",
  "type": "object",
  "required": ["code", "error", "request_id"],
  "properties": {
    "code": { "type": "integer" },
    "error": {
      "type": "object",
      "required": ["type", "message", "details"],
      "properties": {
        "type": { "type": "string" },
        "message": { "type": "string" },
        "details": { "type": "object" }
      },
      "additionalProperties": true
    },
    "request_id": { "type": "string" }
  },
  "additionalProperties": true
}
