DataHub · Schema

ChangeEvent

An individual change event describing a modification to a specific aspect of an entity.

Data CatalogData DiscoveryData GovernanceData LineageMetadata

Properties

Name Type Description
changeType string The type of change that occurred.
semVerChange string The semantic versioning category of this change.
description string A human-readable description of the change.
target string The target element that was changed, such as a field name.
View JSON Schema on GitHub

JSON Schema

datahub-changeevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangeEvent",
  "title": "ChangeEvent",
  "type": "object",
  "description": "An individual change event describing a modification to a specific aspect of an entity.",
  "properties": {
    "changeType": {
      "type": "string",
      "description": "The type of change that occurred.",
      "enum": [
        "ADD",
        "MODIFY",
        "REMOVE"
      ]
    },
    "semVerChange": {
      "type": "string",
      "description": "The semantic versioning category of this change.",
      "enum": [
        "MAJOR",
        "MINOR",
        "PATCH"
      ]
    },
    "description": {
      "type": "string",
      "description": "A human-readable description of the change."
    },
    "target": {
      "type": "string",
      "description": "The target element that was changed, such as a field name."
    }
  }
}