Apache Atlas · JSON Structure

Atlas Atlas Error Response Structure

Error response from the Apache Atlas REST API.

Type: object Properties: 3
ApacheBig DataComplianceData GovernanceData LineageHadoopMetadataOpen Source

AtlasErrorResponse is a JSON Structure definition published by Apache Atlas, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

requestId errorCode errorMessage

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-atlas/refs/heads/main/json-structure/atlas-atlas-error-response-structure.json",
  "name": "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"
    }
  }
}