Apache Atlas · Schema

EntityMutationResponse

Response from entity create, update, or delete operations.

ApacheBig DataComplianceData GovernanceData LineageHadoopMetadataOpen Source

Properties

Name Type Description
guidAssignments object Map of client-side temporary GUIDs to server-assigned GUIDs.
mutatedEntities object Map of mutation type (CREATE, UPDATE, DELETE) to list of mutated entity headers.
View JSON Schema on GitHub

JSON Schema

atlas-entity-mutation-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-entity-mutation-response-schema.json",
  "title": "EntityMutationResponse",
  "description": "Response from entity create, update, or delete operations.",
  "type": "object",
  "properties": {
    "guidAssignments": {
      "type": "object",
      "description": "Map of client-side temporary GUIDs to server-assigned GUIDs.",
      "example": {
        "-1": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
      }
    },
    "mutatedEntities": {
      "type": "object",
      "description": "Map of mutation type (CREATE, UPDATE, DELETE) to list of mutated entity headers."
    }
  }
}