{ "$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" } } }