DataHub · Schema

TimelineResponse

Response containing the versioned history of an entity's aspects.

Data CatalogData DiscoveryData GovernanceData LineageMetadata

Properties

Name Type Description
changeTransactions array A chronological list of change transactions for the entity.
View JSON Schema on GitHub

JSON Schema

datahub-timelineresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimelineResponse",
  "title": "TimelineResponse",
  "type": "object",
  "description": "Response containing the versioned history of an entity's aspects.",
  "properties": {
    "changeTransactions": {
      "type": "array",
      "description": "A chronological list of change transactions for the entity.",
      "items": {
        "$ref": "#/components/schemas/ChangeTransaction"
      }
    }
  }
}