Keboola · Schema

Error

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
error string
code integer
exceptionId string
status object
context object
View JSON Schema on GitHub

JSON Schema

keboola-error.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Error",
  "type": "object",
  "required": [
    "error",
    "code",
    "exceptionId",
    "status"
  ],
  "properties": {
    "error": {
      "type": "string"
    },
    "code": {
      "type": "integer"
    },
    "exceptionId": {
      "type": "string"
    },
    "status": {
      "enum": [
        "error"
      ]
    },
    "context": {
      "type": "object"
    }
  }
}