Apache Atlas · Schema

EntityWithExtInfo

An entity with its extended information (referred entities, classifications).

ApacheBig DataComplianceData GovernanceData LineageHadoopMetadataOpen-Source

Properties

Name Type Description
entity object
referredEntities object Map of GUID to related entity for entities referenced by this entity.
View JSON Schema on GitHub

JSON Schema

atlas-entity-with-ext-info-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-with-ext-info-schema.json",
  "title": "EntityWithExtInfo",
  "description": "An entity with its extended information (referred entities, classifications).",
  "type": "object",
  "properties": {
    "entity": {
      "$ref": "#/components/schemas/AtlasEntity"
    },
    "referredEntities": {
      "type": "object",
      "description": "Map of GUID to related entity for entities referenced by this entity."
    }
  }
}