prorm API Reference
    Preparing search index...

    Interface LineageRecord

    A single lineage record tracking data origin

    interface LineageRecord {
        id: number;
        recordId: string | number;
        tableName: string;
        source: DataSource;
        sourceDetails?: string;
        originMetadata?: Record<string, any>;
        parentRecordId?: string | number;
        parentTableName?: string;
        createdAt: Date;
    }
    Index
    id: number

    Unique identifier

    recordId: string | number

    Record ID this lineage applies to

    tableName: string

    Table name

    source: DataSource

    Original data source

    sourceDetails?: string

    Source system or origin details

    originMetadata?: Record<string, any>

    Additional metadata about the origin

    parentRecordId?: string | number

    ID of parent record (for derived/computed data)

    parentTableName?: string

    Parent table name

    createdAt: Date

    When the record was created