Acceldata · Schema

LineageNode

A node in the data lineage graph

AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

Properties

Name Type Description
id string Dataset or table identifier
name string Dataset or table name
source string Source platform
View JSON Schema on GitHub

JSON Schema

adoc-api-lineage-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://acceldata.io/schemas/lineage-node.json",
  "title": "LineageNode",
  "type": "object",
  "description": "A node in the data lineage graph",
  "properties": {
    "id": {
      "type": "string",
      "description": "Dataset or table identifier"
    },
    "name": {
      "type": "string",
      "description": "Dataset or table name"
    },
    "source": {
      "type": "string",
      "description": "Source platform"
    }
  }
}