Apache Atlas · Schema

AtlasErrorResponse

Error response from the Apache Atlas REST API.

ApacheBig DataComplianceData GovernanceData LineageHadoopMetadataOpen Source

Properties

Name Type Description
requestId string Unique request identifier for tracing.
errorCode string Atlas error code.
errorMessage string Human-readable error message.
View JSON Schema on GitHub

JSON Schema

atlas-atlas-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-atlas/refs/heads/main/json-schema/atlas-atlas-error-response-schema.json",
  "title": "AtlasErrorResponse",
  "description": "Error response from the Apache Atlas REST API.",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Unique request identifier for tracing.",
      "example": "req-123456"
    },
    "errorCode": {
      "type": "string",
      "description": "Atlas error code.",
      "example": "ATLAS-400-00-004"
    },
    "errorMessage": {
      "type": "string",
      "description": "Human-readable error message.",
      "example": "Entity not found for GUID"
    }
  }
}