Azure Databricks · Schema

Error

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
error_code string Databricks error code (e.g., RESOURCE_DOES_NOT_EXIST, INVALID_PARAMETER_VALUE)
message string Human-readable error message
View JSON Schema on GitHub

JSON Schema

microsoft-azure-databricks-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "properties": {
    "error_code": {
      "type": "string",
      "description": "Databricks error code (e.g., RESOURCE_DOES_NOT_EXIST, INVALID_PARAMETER_VALUE)",
      "example": "example_value"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message",
      "example": "example_value"
    }
  },
  "required": [
    "error_code",
    "message"
  ]
}