Databricks · Schema

ErrorResponse

AIAnalyticsApache SparkBig DataClean RoomsCloud ComputingDataData AnalyticsData EngineeringData GovernanceDelta LakeDelta SharingETLIdentity ManagementLakehouseMachine LearningMLflowModel ServingSecuritySQLUnity CatalogVector SearchVisualize

Properties

Name Type Description
error_code string A machine-readable error code.
message string A human-readable error message.
View JSON Schema on GitHub

JSON Schema

databricks-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "error_code": {
      "type": "string",
      "description": "A machine-readable error code.",
      "examples": [
        "RESOURCE_DOES_NOT_EXIST"
      ]
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message.",
      "examples": [
        "Cluster 1234-567890-abcde123 does not exist"
      ]
    }
  }
}