Keboola · Schema

httperrors.ErrorResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
code string String representation of the status code
context object Optional context information
error integer HTTP status code
exception string Error message
exceptionId string Unique error ID for tracking
status string Always "error"
trace array Stack trace information if debug mode
View JSON Schema on GitHub

JSON Schema

keboola-httperrors.errorresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "httperrors.ErrorResponse",
  "properties": {
    "code": {
      "description": "String representation of the status code",
      "type": "string"
    },
    "context": {
      "additionalProperties": {},
      "description": "Optional context information",
      "type": "object"
    },
    "error": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "exception": {
      "description": "Error message",
      "type": "string"
    },
    "exceptionId": {
      "description": "Unique error ID for tracking",
      "type": "string"
    },
    "status": {
      "description": "Always \"error\"",
      "type": "string"
    },
    "trace": {
      "description": "Stack trace information if debug mode",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}