DataHub · Schema

AuditStamp

An audit stamp recording who made a change and when.

Data CatalogData DiscoveryData GovernanceData LineageMetadata

Properties

Name Type Description
time integer The timestamp of the change in epoch milliseconds.
actor string The URN of the actor who made the change.
View JSON Schema on GitHub

JSON Schema

datahub-auditstamp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditStamp",
  "title": "AuditStamp",
  "type": "object",
  "description": "An audit stamp recording who made a change and when.",
  "properties": {
    "time": {
      "type": "integer",
      "format": "int64",
      "description": "The timestamp of the change in epoch milliseconds."
    },
    "actor": {
      "type": "string",
      "description": "The URN of the actor who made the change.",
      "example": "urn:li:corpuser:datahub"
    }
  }
}