Alation · Schema

Dataflow

A dataflow object representing a lineage path

Data CatalogData GovernanceData IntelligenceData LineageData QualityBusiness GlossaryMetadata ManagementAI

Properties

Name Type Description
id integer
external_id string
title string
description string
sources array
targets array
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

alation-alation-lineage-dataflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alation/refs/heads/main/json-schema/alation-alation-lineage-dataflow-schema.json",
  "title": "Dataflow",
  "description": "A dataflow object representing a lineage path",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "external_id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "sources": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "targets": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}